﻿/* CSS Variables for Colors and Design */
:root {
    --primary-dark: #060606;
    --secondary-dark: #334733;
    --primary-green: #097349;
    --light-green: #95e16c;
    --gold: #b5a233;
    --white: #ffffff;
    --light-gray: #f8f9fa;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--primary-dark);
    background: var(--light-gray);
    padding-top: 100px; /* Account for fixed header */
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
header {
    background: linear-gradient(135deg, var(--primary-dark), var(--secondary-dark));
    color: white;
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(6, 6, 6, 0.3);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-image {
    width: 60px;
    height: 60px;
    background: var(--white);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    overflow: hidden;
}

.logo-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 8px;
}

.logo-text {
    color: white;
}

    .logo-text h1 {
        font-size: 1.4rem;
        font-weight: bold;
        margin-bottom: 5px;
        color: var(--light-green);
    }

    .logo-text p {
        font-size: 0.9rem;
        opacity: 0.9;
    }

nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

nav a {
    color: white;
    text-decoration: none;
    padding: 0.7rem 1.2rem;
    border-radius: 8px;
    transition: all 0.3s;
    font-weight: 500;
}

    nav a:hover, nav a.active {
        background: var(--primary-green);
        color: white;
        transform: translateY(-2px);
    }

/* Hero Section */
.hero {
    background: linear-gradient(rgba(6,6,6,0.7), rgba(51,71,51,0.7)), radial-gradient(circle at center, var(--secondary-dark), var(--primary-dark));
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
    margin-top: -100px;
    padding-top: 100px;
}

    .hero::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><g opacity="0.1"><circle cx="200" cy="100" r="50" fill="%2395e16c"/><circle cx="800" cy="150" r="80" fill="%23b5a233"/><circle cx="1000" cy="300" r="60" fill="%23097349"/><circle cx="300" cy="400" r="70" fill="%2395e16c"/><circle cx="900" cy="450" r="40" fill="%23b5a233"/></g></svg>');
        background-size: cover;
    }

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-logo {
    width: 150px;
    height: 150px;
    background: var(--white);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
    animation: fadeInScale 1.5s ease-out;
    overflow: hidden;
}

.hero-logo-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 15px;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    animation: fadeInUp 1s ease-out 0.3s both;
    color: var(--light-green);
}

.hero-content h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    opacity: 0.9;
    animation: fadeInUp 1s ease-out 0.6s both;
    color: var(--gold);
}

.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 1s ease-out 0.9s both;
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, var(--secondary-dark), var(--primary-green));
    color: white;
    padding: 6rem 0 4rem;
    text-align: center;
    margin-top: -100px;
    padding-top: 150px;
}

    .page-header h1 {
        font-size: 3rem;
        margin-bottom: 1rem;
        color: var(--light-green);
    }

    .page-header p {
        font-size: 1.2rem;
        opacity: 0.9;
        max-width: 600px;
        margin: 0 auto;
    }

/* Buttons */
.btn {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-green), var(--light-green));
    color: white;
    padding: 15px 35px;
    text-decoration: none;
    border-radius: 30px;
    font-weight: bold;
    font-size: 1.1rem;
    transition: all 0.3s;
    box-shadow: 0 8px 25px rgba(9, 115, 73, 0.3);
    border: none;
    cursor: pointer;
}

    .btn:hover {
        background: linear-gradient(135deg, var(--light-green), var(--primary-green));
        transform: translateY(-3px);
        box-shadow: 0 12px 35px rgba(9, 115, 73, 0.4);
    }

.btn-primary {
    background: linear-gradient(135deg, var(--primary-green), var(--light-green));
}

/* Sections */
.section-title {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 3rem;
    color: var(--secondary-dark);
    position: relative;
}

    .section-title::after {
        content: '';
        width: 120px;
        height: 4px;
        background: linear-gradient(135deg, var(--primary-green), var(--light-green));
        display: block;
        margin: 1rem auto;
        border-radius: 2px;
    }

/* Overview Section (Homepage) */
.overview-section {
    padding: 6rem 0;
    background: white;
}

.overview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.overview-card {
    background: white;
    padding: 3rem 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(6, 6, 6, 0.1);
    transition: all 0.3s;
    border: 2px solid transparent;
}

    .overview-card:hover {
        transform: translateY(-10px);
        border-color: var(--primary-green);
        box-shadow: 0 25px 50px rgba(6, 6, 6, 0.15);
    }

.overview-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-green), var(--light-green));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
}

.overview-card h3 {
    color: var(--secondary-dark);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.overview-card p {
    color: var(--primary-dark);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.overview-link {
    color: var(--primary-green);
    text-decoration: none;
    font-weight: bold;
    padding: 0.5rem 1rem;
    border: 2px solid var(--primary-green);
    border-radius: 25px;
    transition: all 0.3s;
}

    .overview-link:hover {
        background: var(--primary-green);
        color: white;
    }

/* Gallery Grid */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.artwork-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(6, 6, 6, 0.1);
    transition: all 0.3s;
    border: 2px solid transparent;
}

    .artwork-card:hover {
        transform: translateY(-15px) scale(1.02);
        box-shadow: 0 25px 50px rgba(6, 6, 6, 0.2);
        border-color: var(--light-green);
    }

.artwork-image {
    height: 280px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(45deg, var(--primary-green), var(--light-green));
}

.artwork-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.artwork-card:hover .artwork-img {
    transform: scale(1.05);
}

/* Artwork overlay for gallery page */
.artwork-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    opacity: 0;
    transition: opacity 0.3s;
}

.artwork-card:hover .artwork-overlay {
    opacity: 1;
}

.view-btn, .zoom-btn {
    background: var(--primary-green);
    color: white;
    border: none;
    padding: 1rem;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .view-btn:hover, .zoom-btn:hover {
        background: var(--light-green);
        transform: scale(1.1);
    }

.card-content {
    padding: 2rem;
}

    .card-content h3 {
        font-size: 1.4rem;
        margin-bottom: 0.8rem;
        color: var(--secondary-dark);
    }

    .card-content p {
        color: var(--primary-dark);
        margin-bottom: 1.5rem;
        line-height: 1.6;
    }

.artist-tag {
    background: linear-gradient(135deg, var(--gold), #d4b847);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    display: inline-block;
    font-weight: 500;
}

.artwork-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.year-tag {
    background: var(--secondary-dark);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

/* Filter Buttons */
.gallery-filter, .artists-filter, .tours-controls {
    padding: 2rem 0;
    background: white;
    border-bottom: 1px solid #eee;
}

.filter-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.filter-btn {
    background: var(--light-gray);
    color: var(--secondary-dark);
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s;
    font-weight: 500;
}

    .filter-btn:hover {
        background: var(--light-green);
        color: white;
    }

    .filter-btn.active {
        background: var(--primary-green);
        color: white;
    }

/* Artists Grid */
.artists-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.artist-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    box-shadow: 0 15px 40px rgba(6, 6, 6, 0.1);
    transition: all 0.3s;
    border: 2px solid transparent;
}

    .artist-card:hover {
        transform: translateY(-10px) scale(1.02);
        border-color: var(--primary-green);
        box-shadow: 0 25px 50px rgba(6, 6, 6, 0.15);
    }

.artist-avatar {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(9, 115, 73, 0.3);
    overflow: hidden;
    background: linear-gradient(45deg, var(--secondary-dark), var(--primary-green));
}

.artist-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.artist-info h3 {
    color: var(--secondary-dark);
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.artist-title {
    color: var(--primary-green);
    font-weight: bold;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.artist-description {
    color: var(--primary-dark);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.artist-meta {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.join-year, .specialization {
    background: var(--light-gray);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    color: var(--secondary-dark);
}

.artist-social {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.social-link {
    color: var(--primary-green);
    font-size: 1.2rem;
    transition: all 0.3s;
}

    .social-link:hover {
        color: var(--gold);
        transform: translateY(-2px);
    }

/* Tours Section */
.search-filter-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 2rem;
}

.search-box {
    position: relative;
    max-width: 300px;
    flex: 1;
}

    .search-box input {
        width: 100%;
        padding: 12px 40px 12px 15px;
        border: 2px solid var(--light-green);
        border-radius: 25px;
        font-size: 1rem;
        direction: rtl;
    }

    .search-box i {
        position: absolute;
        right: 15px;
        top: 50%;
        transform: translateY(-50%);
        color: var(--primary-green);
    }

.tour-nav-section {
    padding: 2rem 0;
    background: white;
    border-bottom: 1px solid #eee;
}

.tour-nav-container {
    text-align: center;
    margin-bottom: 3rem;
}

.tour-nav-wrapper {
    display: inline-flex;
    background: white;
    padding: 15px;
    border-radius: 30px;
    box-shadow: 0 15px 40px rgba(6,6,6,0.1);
    flex-wrap: wrap;
    gap: 10px;
    max-width: 100%;
    overflow-x: auto;
}

.tour-nav-btn {
    background: var(--light-gray);
    color: var(--secondary-dark);
    border: none;
    padding: 12px 20px;
    border-radius: 20px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 0.9rem;
    margin: 5px;
    white-space: nowrap;
}

    .tour-nav-btn:hover {
        background: var(--light-green);
        color: white;
        transform: translateY(-2px);
    }

    .tour-nav-btn.active {
        background: linear-gradient(135deg, var(--primary-green), var(--light-green));
        color: white;
        box-shadow: 0 8px 25px rgba(9, 115, 73, 0.3);
    }

.tours-content {
    padding: 4rem 0;
}

.tour-content {
    display: none;
    animation: fadeInUp 0.5s ease;
}

    .tour-content.active {
        display: block;
    }

.tour-header {
    text-align: center;
    margin-bottom: 3rem;
}

.tour-badge {
    background: linear-gradient(135deg, var(--gold), #d4b847);
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    display: inline-block;
    margin-bottom: 1.5rem;
    font-weight: bold;
}

.tour-header h3 {
    color: var(--secondary-dark);
    margin-bottom: 1rem;
    font-size: 2rem;
}

.tour-subtitle {
    color: var(--primary-dark);
    font-size: 1.2rem;
    opacity: 0.8;
}

.tour-info {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(6, 6, 6, 0.1);
    margin-bottom: 3rem;
}

.tour-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--primary-dark);
}

    .detail-item i {
        color: var(--primary-green);
        font-size: 1.2rem;
        width: 20px;
    }

/* History Styles */
.mission-section {
    padding: 4rem 0;
    background: white;
}

.mission-statement {
    background: white;
    padding: 3.5rem;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(6,6,6,0.1);
    border: 2px solid var(--light-green);
}

    .mission-statement h3 {
        color: var(--primary-green);
        margin-bottom: 2rem;
        text-align: center;
        font-size: 1.8rem;
    }

    .mission-statement p {
        font-size: 1.2rem;
        line-height: 1.8;
        text-align: justify;
        color: var(--primary-dark);
    }

.phases-section {
    padding: 6rem 0;
}

.phases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-bottom: 4rem;
}

.phase-card {
    padding: 2.5rem;
    border-radius: 20px;
    color: white;
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
    position: relative;
}

.phase-icon {
    width: 60px;
    height: 60px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.phase-1 {
    background: linear-gradient(135deg, var(--primary-green), var(--light-green));
}

.phase-2 {
    background: linear-gradient(135deg, var(--gold), #d4b847);
}

.phase-3 {
    background: linear-gradient(135deg, var(--secondary-dark), var(--primary-dark));
}

.phase-4 {
    background: linear-gradient(135deg, var(--light-green), var(--primary-green));
}

.phase-card h3 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.phase-card h4 {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    opacity: 0.9;
}

.phase-card p {
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.achievements-list {
    list-style: none;
    padding: 0;
}

    .achievements-list li {
        padding: 0.3rem 0;
        padding-right: 1.5rem;
        position: relative;
    }

        .achievements-list li::before {
            content: "✓";
            position: absolute;
            right: 0;
            color: rgba(255,255,255,0.8);
            font-weight: bold;
        }

/* Timeline */
.timeline-section {
    padding: 6rem 0;
    background: white;
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

    .timeline::before {
        content: '';
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        height: 100%;
        width: 4px;
        background: linear-gradient(var(--primary-green), var(--light-green));
    }

.timeline-item {
    margin-bottom: 4rem;
    position: relative;
}

.timeline-date {
    background: linear-gradient(135deg, var(--gold), #d4b847);
    color: white;
    padding: 1rem;
    border-radius: 50%;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    font-weight: bold;
    font-size: 1rem;
    box-shadow: 0 8px 25px rgba(181, 162, 51, 0.3);
}

.timeline-content {
    text-align: center;
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    margin: 0 2rem;
    box-shadow: 0 15px 40px rgba(6, 6, 6, 0.1);
}

    .timeline-content h4 {
        color: var(--secondary-dark);
        margin-bottom: 1rem;
        font-size: 1.3rem;
    }

.timeline-details {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1rem;
}

.detail-tag {
    background: var(--light-green);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

/* Achievements Section */
.achievements-section {
    padding: 6rem 0;
    background: var(--light-gray);
}

.achievements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.achievement-card {
    background: white;
    padding: 3rem 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(6, 6, 6, 0.1);
    transition: all 0.3s;
}

    .achievement-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 25px 50px rgba(6, 6, 6, 0.15);
    }

.achievement-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-green), var(--light-green));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
}

.achievement-card h3 {
    color: var(--secondary-dark);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.achievement-card p {
    color: var(--primary-dark);
    line-height: 1.6;
}

/* Contact Page Styles */
.contact-section {
    padding: 6rem 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-form-container h2,
.contact-info h2 {
    color: var(--secondary-dark);
    margin-bottom: 2rem;
    font-size: 2rem;
}

.contact-form {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(6, 6, 6, 0.1);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    margin-bottom: 2rem;
}

    .form-group label {
        display: block;
        margin-bottom: 0.8rem;
        color: var(--secondary-dark);
        font-weight: bold;
        font-size: 1.1rem;
    }

    .form-group input,
    .form-group textarea,
    .form-group select {
        width: 100%;
        padding: 15px;
        border: 2px solid #e1e1e1;
        border-radius: 10px;
        font-size: 1rem;
        transition: border-color 0.3s;
        font-family: inherit;
    }

        .form-group input:focus,
        .form-group textarea:focus,
        .form-group select:focus {
            outline: none;
            border-color: var(--primary-green);
            box-shadow: 0 0 15px rgba(9, 115, 73, 0.1);
        }

.checkbox-group {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    font-weight: normal;
}

.contact-info {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(6, 6, 6, 0.1);
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-green), var(--light-green));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    flex-shrink: 0;
}

.contact-details h3 {
    color: var(--secondary-dark);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.contact-details p {
    color: var(--primary-dark);
    line-height: 1.6;
}

.social-section {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #eee;
}

    .social-section h3 {
        color: var(--secondary-dark);
        margin-bottom: 1rem;
    }

    .social-section .social-links {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        margin: 0;
    }

    .social-section .social-link {
        display: flex;
        align-items: center;
        gap: 1rem;
        color: var(--primary-green);
        text-decoration: none;
        padding: 0.5rem;
        border-radius: 8px;
        transition: all 0.3s;
    }

        .social-section .social-link:hover {
            background: var(--light-gray);
            color: var(--secondary-dark);
        }

/* Map Section */
.map-section {
    padding: 4rem 0;
    background: var(--light-gray);
}

.map-container {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(6, 6, 6, 0.1);
    height: 400px;
}

.map-placeholder {
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(45deg, var(--primary-green), var(--light-green));
    color: white;
    text-align: center;
}

    .map-placeholder i {
        font-size: 4rem;
        margin-bottom: 1rem;
    }

    .map-placeholder h3 {
        font-size: 2rem;
        margin-bottom: 0.5rem;
    }

.map-link {
    color: white;
    text-decoration: none;
    margin-top: 1rem;
    padding: 0.5rem 1rem;
    border: 2px solid white;
    border-radius: 25px;
    transition: all 0.3s;
}

    .map-link:hover {
        background: white;
        color: var(--primary-green);
    }

/* FAQ Section */
.faq-section {
    padding: 6rem 0;
    background: white;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 1.5rem;
    border: 1px solid #eee;
    border-radius: 15px;
    overflow: hidden;
    background: white;
    transition: all 0.3s ease;
}

    .faq-item.active {
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    }

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--light-gray);
    transition: all 0.3s;
}

.faq-item.active .faq-question {
    background: var(--light-green);
}

.faq-question h3 {
    margin: 0;
    font-size: 1.2rem;
    color: var(--secondary-dark);
    transition: color 0.3s;
}

.faq-item.active .faq-question h3 {
    color: white;
}

.faq-question i {
    transition: transform 0.3s;
    color: var(--primary-green);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
    color: white;
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s ease-out;
}

.faq-item.active .faq-answer {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
    max-height: 200px;
}

.faq-answer p {
    color: var(--primary-dark);
    line-height: 1.6;
    margin: 0;
}

/* Newsletter Section */
.newsletter-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--secondary-dark), var(--primary-green));
    color: white;
}

.newsletter-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 3rem;
}

.newsletter-text h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--light-green);
}

.newsletter-form {
    flex: 1;
    max-width: 400px;
}

.newsletter-input {
    display: flex;
    gap: 1rem;
}

    .newsletter-input input {
        flex: 1;
        padding: 15px;
        border: none;
        border-radius: 25px;
        font-size: 1rem;
    }

    .newsletter-input .btn {
        white-space: nowrap;
        padding: 15px 25px;
    }

/* News Section (Homepage) */
.news-section {
    padding: 6rem 0;
    background: white;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.news-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(6, 6, 6, 0.1);
    transition: all 0.3s;
}

    .news-card:hover {
        transform: translateY(-10px) scale(1.02);
        box-shadow: 0 25px 50px rgba(6, 6, 6, 0.15);
    }

.news-image {
    height: 200px;
    background: linear-gradient(45deg, var(--primary-green), var(--light-green));
    position: relative;
    overflow: hidden;
}

.news-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news-content {
    padding: 2rem;
}

.news-date {
    background: var(--light-green);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    display: inline-block;
    margin-bottom: 1rem;
}

.news-content h3 {
    color: var(--secondary-dark);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.news-content p {
    color: var(--primary-dark);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.news-link {
    color: var(--primary-green);
    text-decoration: none;
    font-weight: bold;
}

    .news-link:hover {
        color: var(--secondary-dark);
    }

/* Join Section (Artists page) */
.join-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--primary-green), var(--light-green));
    color: white;
    text-align: center;
}

.join-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: white;
}

.join-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.join-content .btn {
    background: white;
    color: var(--primary-green);
}

    .join-content .btn:hover {
        background: var(--gold);
        color: white;
    }

/* Artists Stats */
.artists-stats {
    padding: 4rem 0;
    background: var(--light-gray);
}

/* Stats Section */
.stats-section {
    padding: 6rem 0;
    background: var(--light-gray);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.stat-card {
    background: linear-gradient(135deg, var(--primary-green), var(--light-green));
    color: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(9, 115, 73, 0.2);
    transition: transform 0.3s;
    text-align: center;
}

    .stat-card:hover {
        transform: translateY(-5px);
    }

    .stat-card h4 {
        font-size: 3rem;
        margin-bottom: 0.5rem;
        text-shadow: 0 2px 4px rgba(0,0,0,0.2);
    }

    .stat-card p {
        font-size: 1.1rem;
        opacity: 0.9;
    }

/* Modal for Gallery */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.9);
    animation: fadeInScale 0.3s;
}

.modal-content {
    position: relative;
    margin: auto;
    padding: 20px;
    width: 90%;
    max-width: 800px;
    top: 50%;
    transform: translateY(-50%);
    background: white;
    border-radius: 20px;
    text-align: center;
}

.close {
    position: absolute;
    top: 15px;
    right: 25px;
    color: var(--primary-dark);
    font-size: 35px;
    font-weight: bold;
    cursor: pointer;
}

    .close:hover {
        color: var(--primary-green);
    }

#modalImage {
    max-width: 100%;
    max-height: 60vh;
    border-radius: 15px;
    margin-bottom: 2rem;
}

.modal-info h3 {
    color: var(--secondary-dark);
    margin-bottom: 1rem;
}

.modal-info p {
    color: var(--primary-dark);
    line-height: 1.6;
    margin-bottom: 1rem;
}

#modalMeta .artist-tag,
#modalMeta .year-tag {
    display: inline-block;
    margin: 0 5px;
}


/* Footer */
footer {
    background: linear-gradient(135deg, var(--primary-dark), var(--secondary-dark));
    color: white;
    text-align: center;
    padding: 4rem 0;
}

.footer-logo {
    width: 100px;
    height: 100px;
    background: white;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    overflow: hidden;
}

.footer-logo-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 12px;
}

.footer-text {
    margin-bottom: 2rem;
}

    .footer-text h3 {
        color: var(--light-green);
        margin-bottom: 1rem;
    }

    .footer-text p {
        color: var(--gold);
        font-size: 1.1rem;
    }

.footer .social-links a {
    color: var(--light-green);
    font-size: 1.8rem;
    margin: 0 1.5rem;
    transition: all 0.3s;
}

    .footer .social-links a:hover {
        color: var(--gold);
        transform: translateY(-3px);
    }

.footer-highlight {
    font-weight: bold;
    color: var(--gold);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.8);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Scroll animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

    .fade-in.visible {
        opacity: 1;
        transform: translateY(0);
    }

/* Mobile Menu */
.mobile-menu {
    display: none;
    background: var(--primary-green);
    cursor: pointer;
    padding: 0.7rem;
    border-radius: 8px;
    color: white;
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 1001; /* Ensure it's above other header content */
}

/* Mobile Responsive */
@media (max-width: 992px) {
    .header-content {
        flex-wrap: wrap;
    }

    .mobile-menu {
        display: block;
    }

    /* CORRECTED MENU LOGIC */
    nav {
        display: none;
        width: 100%;
        margin-top: 1rem;
    }

        nav.show {
            display: block;
        }

        nav ul {
            display: flex; /* Overwrite the default 'none' for nav.show */
            flex-direction: column;
            gap: 0;
            background: var(--secondary-dark);
            border-radius: 10px;
            padding: 1rem;
            box-shadow: 0 10px 30px rgba(0,0,0,0.3);
        }

        nav a {
            padding: 1rem;
            text-align: right;
        }
}

@media (max-width: 768px) {
    body {
        padding-top: 80px;
    }

    .header-content {
        justify-content: flex-start;
    }

    .hero {
        margin-top: -80px;
        padding-top: 80px;
        min-height: 70vh;
    }

    .page-header {
        margin-top: -80px;
        padding-top: 130px;
        padding-bottom: 3rem;
    }

        .page-header h1 {
            font-size: 2.2rem;
        }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-content h2 {
        font-size: 1.5rem;
    }

    .section-title {
        font-size: 2.2rem;
    }

    .gallery-grid,
    .artists-grid,
    .overview-grid,
    .news-grid,
    .phases-grid,
    .achievements-grid,
    .contact-grid,
    .form-row,
    .tour-details {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .timeline-content, .contact-form {
        margin: 0;
        padding: 2rem;
    }

    .tour-nav-wrapper {
        flex-wrap: nowrap;
        justify-content: flex-start;
    }

    .search-filter-container, .newsletter-content {
        flex-direction: column;
        align-items: stretch;
        gap: 2rem;
    }

    .newsletter-content {
        text-align: center;
    }

    .newsletter-input {
        flex-direction: column;
    }

    footer .social-links {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }

        footer .social-links a {
            margin: 0;
        }
}

@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }

    .hero-logo {
        width: 120px;
        height: 120px;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .section-title {
        font-size: 1.8rem;
    }
}
