/* ================= HEADER STYLES ================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

.top-header {
    background-color: transparent;
    padding: 10px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-left {
    display: flex;
    align-items: center;
    gap: 8px;
}

.top-left span {
    display: flex;
    align-items: center;
    color: white;
    font-size: 12px;
}

.top-left i {
    color: #4CAF50;
    margin-right: 5px;
    font-size: 11px;
}

.separator {
    color: rgba(255, 255, 255, 0.5);
    font-size: 11px;
}

.top-right {
    display: flex;
    gap: 10px;
}

.top-right a {
    color: white;
    transition: color 0.3s;
    font-size: 12px;
}

.top-right a:hover {
    color: #4CAF50;
}

.main-nav {
    background-color: transparent;
    padding: 20px 0;
    position: fixed;
    width: 100%;
    top: 38px;
    z-index: 999;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 22px;
    font-weight: 700;
    color: white;
    margin-left: 10px;
    transition: color 0.3s;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 20px;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    transition: color 0.3s;
}

.nav-links a:hover,
.nav-links a.active {
    color: #4CAF50;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.search-btn {
    background: transparent;
    color: white;
    border: none;
    font-size: 15px;
    cursor: pointer;
    transition: color 0.3s;
    padding: 5px;
}

.search-btn:hover {
    color: #4CAF50;
}

.visit-btn {
    background: #4CAF50;
    color: white;
    border: none;
    padding: 8px 15px;
    border-radius: 4px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 14px;
}

.visit-btn:hover {
    background: #3e8e41;
}

.mobile-menu-btn {
    display: none;
    background: transparent;
    border: none;
    color: white;
    font-size: 20px;
    cursor: pointer;
    padding: 5px;
}

/* ================= DROPDOWN MENU ================= */
.dropdown {
    position: relative;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 5px;
}

.dropdown-icon {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: -600px; 
    width: 1300px; 
    background: rgba(255, 255, 255, 0.95);
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    padding: 30px;
    display: none;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 1000;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.dropdown:hover .dropdown-menu {
    display: flex;
    opacity: 1;
    transform: translateY(0);
}

.dropdown:hover .dropdown-icon {
    transform: rotate(180deg);
}

.dropdown-column {
    flex: 1;
    padding: 0 15px;
}

.dropdown-column h4 {
    font-size: 16px;
    color: #333;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
}

.dropdown-column ul {
    list-style: none;
}

.dropdown-column li {
    margin-bottom: 10px;
}

.dropdown-column a {
    color: #666;
    font-size: 14px;
    transition: color 0.3s ease;
    display: block;
    padding: 5px 0;
}

.dropdown-column a:hover {
    color: #4CAF50;
}

/* ================= MOBILE MENU ================= */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: rgba(0,0,0,0.8);
    z-index: 1001;
    opacity: 0;
    transition: all 0.3s ease;
}

.mobile-menu-drawer {
    position: fixed;
    top: 0;
    left: -100%;
    width: 80%;
    height: 100%;
    background: white;
    z-index: 1002;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.drawer-content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.drawer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.drawer-logo {
    font-size: 20px;
    font-weight: 700;
    color: #333;
}

.drawer-close-btn {
    background: transparent;
    border: none;
    font-size: 20px;
    color: #333;
    cursor: pointer;
}

.drawer-links {
    list-style: none;
    flex: 1;
}

.drawer-links li {
    margin-bottom: 15px;
}

.drawer-links a {
    color: #333;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    padding: 8px 0;
    display: block;
}

.drawer-links .active {
    color: #4CAF50;
}

/* Mobile Dropdown */
.mobile-dropdown-toggle {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    cursor: pointer;
}

.mobile-dropdown-icon {
    transition: transform 0.3s ease;
    font-size: 14px;
}

.mobile-dropdown-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding-left: 15px;
}

.mobile-dropdown-open .mobile-dropdown-icon {
    transform: rotate(180deg);
}

.mobile-dropdown-open .mobile-dropdown-content {
    max-height: 1000px;
}

.drawer-footer {
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.drawer-social {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-bottom: 20px;
}

.drawer-social a {
    color: #333;
    font-size: 18px;
}

.drawer-visit-btn {
    background: #4CAF50;
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 4px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    width: 100%;
    justify-content: center;
}

.drawer-visit-btn:hover {
    background: #3e8e41;
}

/* ================= SCROLLED STATE ================= */
.scrolled .main-nav {
    background-color: white;
    top: 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.scrolled .top-header {
    display: none;
}

.scrolled .logo {
    color: #4CAF50;
}

.scrolled .nav-links a {
    color: #333;
}

.scrolled .search-btn {
    color: #333;
}

.scrolled .mobile-menu-btn {
    color: #333;
}

.mobile-menu-open .mobile-menu-overlay {
    width: 100%;
    opacity: 1;
}

.mobile-menu-open .mobile-menu-drawer {
    left: 0;
}

/* ================= HERO STYLES ================= */
.hero-2 {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url("/static/images/about-hero.bc44acd368ac.jpg");
    background-size: cover;
    background-position: center;
    height: 50vh;
    min-height: 300px;
    max-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    margin-top: 0;
    padding-top: 78px;
}

.hero-3 {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url("/static/images/gallery-hero.47b7e0e0d4e3.jpg");
    background-size: cover;
    background-position: center;
    height: 50vh;
    min-height: 300px;
    max-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    margin-top: 0;
    padding-top: 78px;
}

.hero-content {
    max-width: 800px;
    padding: 0 10px;
    width: 100%;
}

.hero-content h5 {
    font-size: clamp(28px, 5vw, 36px);
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.3;
}

.breadcrumb {
    font-family: 'Poppins', sans-serif;
    margin-top: 15px;
}

.breadcrumb ol {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    list-style: none;
    padding: 0;
    margin: 0;
}

.breadcrumb li {
    display: flex;
    align-items: center;
    font-size: 14px;
    color: #eee;
}

.breadcrumb li:not(:last-child)::after {
    content: '/';
    margin: 0 8px;
    color: rgba(255, 255, 255, 0.5);
}

.breadcrumb a {
    color: #4CAF50;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: #3e8e41;
    text-decoration: underline;
}
/* Add this to your existing media query for mobile devices */
@media (max-width: 480px) {
    .hero p {
        display: none; /* This will hide the paragraph on mobile */
    }
    
    .hero h1 {
        margin-bottom: 30px; /* Add more space below the heading */
    }
    
    .hero-buttons {
        margin-top: 20px; /* Adjust button spacing */
    }
}

/* Your existing mobile styles */
@media (max-width: 480px) {
    .hero {
        height: 85vh;
    }
    
    .hero h1 {
        font-size: 32px;
    }
    
    .discover-btn,
    .outline-btn {
        padding: 12px 25px;
        width: 100%;
        text-align: center;
    }
    
    .hero-buttons {
        gap: 15px;
    }
}
/* ================= GALLERY STYLES ================= */
.gallery-section {
    padding: 60px 0;
    background-color: #f9f9f9;
}

.gallery-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.gallery-header {
    text-align: center;
    margin-bottom: 40px;
}

.gallery-header h1 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 15px;
}

.gallery-header p {
    color: #666;
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
}

.gallery-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.15);
}

.image-container {
    position: relative;
    aspect-ratio: 4/3;
}

.image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color: white;
    padding: 20px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-item:hover .image-overlay {
    transform: translateY(0);
}

.image-overlay h3 {
    margin: 0 0 10px 0;
    font-size: 1.2rem;
}

.image-overlay p {
    margin: 0;
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Pagination */
.pagination-section {
    padding: 40px 0;
    text-align: center;
}

.pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    list-style: none;
    padding: 0;
}

.page-item {
    display: inline-block;
}

.page-link {
    display: block;
    padding: 8px 16px;
    color: #333;
    text-decoration: none;
    border: 1px solid #ddd;
    border-radius: 4px;
    transition: all 0.3s;
}

.page-link:hover {
    background-color: #f1f1f1;
}

.page-item.active .page-link {
    background-color: #4CAF50;
    color: white;
    border-color: #4CAF50;
}

.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.lightbox-content {
    max-width: 90%;
    max-height: 90%;
}

.lightbox-img {
    max-height: 80vh;
    max-width: 100%;
}

.close-lightbox {
    position: absolute;
    top: 20px;
    right: 30px;
    color: white;
    font-size: 40px;
    cursor: pointer;
}

/* ================= RESPONSIVE STYLES ================= */
@media (max-width: 1200px) {
    .header-container, .nav-container {
        max-width: 100%;
    }
}

@media (max-width: 992px) {
    .dropdown-menu {
        width: 600px;
        left: -300px;
    }
    
    .nav-links {
        gap: 15px;
    }
    
    .hero-2, .hero-3 {
        height: 50vh;
    }
}

@media (max-width: 768px) {
    .top-header {
        display: none;
    }
    
    .main-nav {
        top: 0;
        background: white;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        padding: 15px 0;
    }
    
    .logo {
        color: #4CAF50;
        font-size: 18px;
        margin-left: 0;
    }
    
    .mobile-menu-btn {
        display: block;
        color: #333;
    }
    
    .nav-links, .nav-actions {
        display: none;
    }
    
    .dropdown-menu {
        display: none !important;
    }
    
    .dropdown-toggle .dropdown-icon {
        display: none;
    }
    
    .hero-2, .hero-3 {
        height: 40vh;
        min-height: 200px;
        padding-top: 0;
    }
    
    .hero-content h5 {
        font-size: clamp(24px, 6vw, 32px);
    }
    
    .breadcrumb li {
        font-size: 13px;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 15px;
    }
}

@media (max-width: 576px) {
    .header-container, .nav-container {
        padding: 0 12px;
    }
    
    .visit-btn {
        padding: 8px 12px;
        font-size: 13px;
    }
    
    .mobile-menu-drawer {
        width: 85%;
    }
    
    .hero-2, .hero-3 {
        height: 35vh;
        min-height: 200px;
    }
    
    .hero-content {
        padding: 0 15px;
        margin-left: -10px;
    }
    
    .hero-content h5 {
        margin-bottom: 10px;
    }
    
    .breadcrumb {
        margin-top: 10px;
    }
    
    .breadcrumb li {
        font-size: 12px;
    }
    
    .breadcrumb li:not(:last-child)::after {
        margin: 0 5px;
    }
    
    .gallery-header h1 {
        font-size: 2rem;
    }
    
    .pagination {
        flex-wrap: wrap;
    }
}

@media (max-width: 360px) {
    .hero-2, .hero-3 {
        height: 30vh;
    }
    
    .hero-content h5 {
        font-size: 20px;
    }
    
    .breadcrumb li {
        font-size: 11px;
    }
}