/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    color: white;
    padding: 80px 0;
    position: relative;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-image {
    max-width: 100%;
    height: auto;
    position: relative;
    z-index: 2;
}

/* Buttons */
.btn-custom {
    position: relative;
    z-index: 3;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-custom:hover {
    transform: translateY(-2px);
}

/* Navigation */
.navbar {
    position: relative;
    z-index: 1000;
}

.navbar-toggler {
    z-index: 1001;
}

.navbar-collapse {
    z-index: 999;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .hero-section {
        padding: 40px 0;
        text-align: center;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .btn-group-lg > .btn, .btn-lg {
        padding: 0.5rem 1rem;
        font-size: 1rem;
    }

    .navbar-collapse {
        background: white;
        padding: 1rem;
        border-radius: 8px;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    }

    .navbar-nav .nav-link {
        color: #333 !important;
        padding: 0.5rem 1rem;
    }

    .d-flex.gap-3 {
        justify-content: center;
    }
}

/* Gallery Cards */
.gallery-card {
    position: relative;
    z-index: 2;
}

.gallery-overlay {
    z-index: 3;
}

/* Links and Interactive Elements */
a, button, .nav-link {
    cursor: pointer;
    position: relative;
    z-index: 5;
}

/* Ensure all interactive elements are clickable */
.navbar-brand,
.nav-link,
.dropdown-item,
.btn {
    position: relative;
    z-index: 1000;
    cursor: pointer;
}

/* Fix dropdown menus */
.dropdown-menu {
    z-index: 1001;
}

/* Ensure proper stacking for mobile menu */
.navbar-collapse.show {
    z-index: 1002;
}