/* ============================================
   ŞEFAAT MOSKEE HEERENVEEN - STYLESHEET
   Modern & Spiritual Design
   ============================================ */

/* CSS Variables */
:root {
    /* Colors - Deep spiritual palette */
    --primary: #0d4d4d;
    --primary-light: #1a6b6b;
    --primary-dark: #083838;
    --accent: #c9a227;
    --accent-light: #e8c547;
    --accent-dark: #9a7c1e;
    
    /* Neutrals */
    --cream: #faf8f5;
    --cream-dark: #f0ebe3;
    --sand: #e8e0d5;
    --charcoal: #2d2d2d;
    --charcoal-light: #4a4a4a;
    
    /* Typography */
    --font-heading: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Outfit', -apple-system, sans-serif;
    
    /* Spacing */
    --section-padding: clamp(4rem, 10vw, 8rem);
    --container-max: 1200px;
    
    /* Transitions */
    --transition-smooth: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* Reset & Base */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background-color: var(--cream);
    color: var(--charcoal);
    line-height: 1.7;
    overflow-x: hidden;
}

/* Pattern Overlay */
.pattern-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
    opacity: 0.03;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%230d4d4d' fill-opacity='1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

/* Container */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 2rem;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.2;
    color: var(--primary-dark);
}

h1 { font-size: clamp(2.5rem, 6vw, 4.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.5rem); }

p {
    font-size: 1.05rem;
    color: var(--charcoal-light);
}

a {
    color: inherit;
    text-decoration: none;
    transition: color var(--transition-smooth);
}

/* ============================================
   NAVIGATION
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1rem 0;
    transition: all var(--transition-smooth);
    background: rgba(13, 77, 77, 0.85);
    backdrop-filter: blur(15px);
}

.navbar.scrolled {
    background: rgba(250, 248, 245, 0.95);
    backdrop-filter: blur(20px);
    padding: 0.75rem 0;
    box-shadow: 0 4px 30px rgba(13, 77, 77, 0.1);
}

.nav-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--cream);
    transition: color var(--transition-smooth);
    text-decoration: none;
}

.nav-logo img {
    height: 75px;
    width: auto;
    filter: brightness(0) invert(1);
    transition: all var(--transition-smooth);
    padding: 5px 0;
}

.navbar.scrolled .nav-logo img {
    filter: none;
    height: 60px;
}

.logo-icon {
    font-size: 1.75rem;
    color: var(--accent);
}

.nav-menu {
    display: flex;
    gap: 2.5rem;
    list-style: none;
}

.nav-menu a {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--cream);
    position: relative;
    padding: 0.5rem 0;
    transition: color var(--transition-smooth);
}

.navbar.scrolled .nav-menu a {
    color: var(--charcoal);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width var(--transition-smooth);
}

.nav-menu a:hover::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.nav-toggle span {
    width: 25px;
    height: 2px;
    background: var(--cream);
    transition: all var(--transition-smooth);
}

.navbar.scrolled .nav-toggle span {
    background: var(--primary);
}

/* ============================================
   HERO SECTION WITH CAROUSEL
   ============================================ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

/* Hero Carousel */
.hero-carousel {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transform: scale(1.1);
    transition: opacity 1.5s ease, transform 8s ease;
}

.carousel-slide.active {
    opacity: 1;
    transform: scale(1);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(13, 77, 77, 0.85) 0%, rgba(8, 56, 56, 0.9) 50%, rgba(5, 31, 31, 0.95) 100%);
    z-index: 1;
}

.hero-overlay::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at 30% 20%, rgba(201, 162, 39, 0.12) 0%, transparent 50%),
                radial-gradient(ellipse at 70% 80%, rgba(201, 162, 39, 0.08) 0%, transparent 50%);
}

/* Carousel Indicators */
.carousel-indicators {
    position: absolute;
    bottom: 6rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.75rem;
    z-index: 10;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid rgba(250, 248, 245, 0.5);
    background: transparent;
    cursor: pointer;
    transition: all var(--transition-smooth);
    padding: 0;
}

.indicator:hover {
    border-color: var(--cream);
}

.indicator.active {
    background: var(--accent);
    border-color: var(--accent);
    transform: scale(1.2);
}

.hero-content {
    text-align: center;
    z-index: 5;
    padding: 0 2rem;
    animation: fadeInUp 1s ease-out;
}

.hero-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    color: var(--cream);
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(10px);
}

.hero-title {
    color: var(--cream);
    font-size: clamp(3rem, 8vw, 5.5rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.hero-title span {
    display: block;
    color: var(--accent);
    font-style: italic;
    font-weight: 500;
}

.hero-subtitle {
    color: rgba(250, 248, 245, 0.85);
    font-size: clamp(1.1rem, 2vw, 1.35rem);
    max-width: 600px;
    margin: 0 auto 2.5rem;
    font-weight: 300;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transition: all var(--transition-smooth);
    border: 2px solid transparent;
}

.btn-primary {
    background: var(--accent);
    color: var(--primary-dark);
    border-color: var(--accent);
}

.btn-primary:hover {
    background: var(--accent-light);
    border-color: var(--accent-light);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(201, 162, 39, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--cream);
    border-color: rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--cream);
}

.btn-full {
    width: 100%;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    color: rgba(250, 248, 245, 0.6);
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    z-index: 10;
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--accent), transparent);
    animation: scrollBounce 2s ease-in-out infinite;
}

/* ============================================
   WELCOME SECTION
   ============================================ */
.welcome-section {
    padding: var(--section-padding) 0;
    background: var(--cream);
    position: relative;
}

.welcome-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.welcome-icon {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
    font-family: 'Times New Roman', serif;
    direction: rtl;
}

.welcome-content h2 {
    margin-bottom: 1.5rem;
}

.welcome-content p {
    font-size: 1.15rem;
    line-height: 1.9;
}

/* ============================================
   SECTION HEADERS
   ============================================ */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-tag {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: linear-gradient(135deg, rgba(13, 77, 77, 0.1), rgba(201, 162, 39, 0.1));
    border-radius: 50px;
    color: var(--primary);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about-section {
    padding: var(--section-padding) 0;
    background: var(--cream-dark);
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

@media (max-width: 768px) {
    .about-grid {
        grid-template-columns: 1fr;
    }
}

.about-card {
    background: var(--cream);
    padding: 2.5rem;
    border-radius: 20px;
    transition: all var(--transition-smooth);
    border: 1px solid transparent;
}

.about-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(13, 77, 77, 0.1);
    border-color: rgba(201, 162, 39, 0.2);
}

.about-card-image {
    padding: 0;
    overflow: hidden;
    position: relative;
}

.about-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 280px;
    transition: transform 0.6s ease;
}

.about-card-image:hover img {
    transform: scale(1.05);
}

.about-card-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem;
    background: linear-gradient(to top, rgba(13, 77, 77, 0.9), transparent);
    color: var(--cream);
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 500;
}

.about-card-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.about-card h3 {
    margin-bottom: 1rem;
}

/* ============================================
   MISSION SECTION
   ============================================ */
.mission-section {
    padding: var(--section-padding) 0;
    background: var(--cream);
}

.mission-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.mission-text h2 {
    margin-bottom: 1.5rem;
}

.mission-text > p {
    margin-bottom: 2rem;
}

.mission-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.mission-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.05rem;
}

.check-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: var(--cream);
    border-radius: 50%;
    font-size: 0.85rem;
    font-weight: bold;
    flex-shrink: 0;
}

.mission-visual {
    position: relative;
    height: 450px;
    border-radius: 30px;
    overflow: hidden;
}

.mission-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.mission-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mission-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(13, 77, 77, 0.7), transparent 50%);
}

.mission-quote {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    right: 2rem;
    background: rgba(250, 248, 245, 0.95);
    padding: 2rem;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    z-index: 2;
}

.mission-quote blockquote {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-style: italic;
    color: var(--primary-dark);
    line-height: 1.6;
}

/* ============================================
   COMBINED ACTIVITEITEN & AGENDA SECTION
   ============================================ */
.combined-section {
    padding: var(--section-padding) 0;
    background: var(--cream-dark);
}

.combined-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.column-header {
    margin-bottom: 2rem;
}

.column-header .section-tag {
    margin-bottom: 0.75rem;
}

.column-header h2 {
    font-size: clamp(1.5rem, 3vw, 2rem);
}

/* Activities Column */
.activities-column {
    background: var(--primary);
    padding: 2.5rem;
    border-radius: 24px;
}

.activities-column .section-tag {
    background: rgba(255, 255, 255, 0.15);
    color: var(--cream);
}

.activities-column h2 {
    color: var(--cream);
}

.activities-list {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.activity-item {
    display: flex;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all var(--transition-smooth);
}

.activity-item:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(201, 162, 39, 0.3);
    transform: translateX(5px);
}

.activity-item .activity-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.activity-text h3 {
    color: var(--cream);
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}

.activity-text p {
    color: rgba(250, 248, 245, 0.75);
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Agenda Column */
.agenda-column {
    background: var(--cream);
    padding: 2.5rem;
    border-radius: 24px;
    box-shadow: 0 10px 40px rgba(13, 77, 77, 0.08);
}

.agenda-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.agenda-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--cream-dark);
    border-radius: 12px;
    border: 2px solid transparent;
    transition: all var(--transition-smooth);
    text-decoration: none;
    color: inherit;
}

.agenda-item:hover {
    border-color: var(--accent);
    transform: translateX(5px);
    box-shadow: 0 8px 25px rgba(13, 77, 77, 0.1);
}

.agenda-item .agenda-date {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1rem;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--cream);
    border-radius: 10px;
    min-width: 65px;
}

.agenda-item .agenda-date .day {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1;
}

.agenda-item .agenda-date .month {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-top: 0.15rem;
}

.agenda-info {
    flex: 1;
}

.agenda-type {
    display: inline-block;
    padding: 0.2rem 0.6rem;
    background: linear-gradient(135deg, rgba(201, 162, 39, 0.2), rgba(201, 162, 39, 0.1));
    color: var(--accent-dark);
    font-size: 0.7rem;
    font-weight: 600;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
}

.agenda-info h3 {
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.agenda-info p {
    font-size: 0.85rem;
    color: var(--charcoal-light);
    margin-bottom: 0.5rem;
}

.agenda-meta {
    font-size: 0.8rem;
    color: var(--charcoal-light);
}

.agenda-arrow {
    font-size: 1.25rem;
    color: var(--accent);
    font-weight: bold;
    opacity: 0;
    transform: translateX(-10px);
    transition: all var(--transition-smooth);
}

.agenda-item:hover .agenda-arrow {
    opacity: 1;
    transform: translateX(0);
}

.agenda-note {
    text-align: center;
    margin-top: 1.5rem;
    color: var(--primary);
    font-style: italic;
    font-size: 0.95rem;
}

/* Responsive for combined section */
@media (max-width: 900px) {
    .combined-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact-section {
    padding: var(--section-padding) 0;
    background: var(--cream);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

.contact-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.contact-card {
    background: var(--cream-dark);
    padding: 1.5rem;
    border-radius: 16px;
    transition: all var(--transition-smooth);
}

.contact-card:hover {
    background: var(--sand);
}

.contact-icon {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
}

.contact-card h3 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.contact-card p {
    font-size: 0.95rem;
}

.contact-card a {
    color: var(--primary);
}

.contact-card a:hover {
    color: var(--accent-dark);
}

/* Contact Form */
.contact-form-container {
    background: var(--cream-dark);
    padding: 2.5rem;
    border-radius: 24px;
}

.contact-form h3 {
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1.25rem;
}

.form-group label {
    display: block;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--charcoal);
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem 1.25rem;
    border: 2px solid var(--sand);
    border-radius: 12px;
    font-family: var(--font-body);
    font-size: 1rem;
    background: var(--cream);
    color: var(--charcoal);
    transition: all var(--transition-smooth);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(13, 77, 77, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--charcoal-light);
    opacity: 0.6;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Map Container */
.map-container {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(13, 77, 77, 0.1);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--primary-dark);
    padding: 4rem 0 2rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 2rem;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-logo-text {
    display: flex;
    flex-direction: column;
}

.footer-name {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--cream);
    letter-spacing: 0.02em;
}

.footer-city {
    font-size: 0.85rem;
    color: var(--accent);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    font-weight: 500;
}

.footer-brand p {
    color: rgba(250, 248, 245, 0.6);
    font-size: 0.9rem;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: rgba(250, 248, 245, 0.8);
    font-size: 0.95rem;
    transition: color var(--transition-smooth);
}

.footer-links a:hover {
    color: var(--accent);
}

.footer-bottom {
    text-align: center;
}

.footer-bottom p {
    color: rgba(250, 248, 245, 0.5);
    font-size: 0.85rem;
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes rotate {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

@keyframes scrollBounce {
    0%, 100% {
        transform: translateY(0);
        opacity: 1;
    }
    50% {
        transform: translateY(10px);
        opacity: 0.5;
    }
}

/* Scroll Reveal Animation */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 1024px) {
    .mission-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .mission-visual {
        height: 350px;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 400px;
        height: 100vh;
        background: var(--cream);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        transition: right var(--transition-smooth);
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-menu a {
        font-size: 1.2rem;
    }
    
    .nav-toggle {
        display: flex;
        z-index: 1001;
    }
    
    .nav-toggle.active span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }
    
    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .nav-toggle.active span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }
    
    .hero-buttons {
        flex-direction: column;
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }
    
    .about-grid,
    .activities-grid {
        grid-template-columns: 1fr;
    }
    
    .agenda-card {
        flex-direction: column;
    }
    
    .agenda-date {
        flex-direction: row;
        gap: 0.5rem;
        padding: 1rem 1.5rem;
        min-width: auto;
    }
    
    .agenda-date .day {
        font-size: 1.5rem;
    }
    
    .agenda-meta {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .contact-info {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1.25rem;
    }
    
    .section-header {
        margin-bottom: 2.5rem;
    }
    
    .about-card,
    .activity-card {
        padding: 1.75rem;
    }
    
    .contact-form-container {
        padding: 1.5rem;
    }
    
    .mission-visual {
        height: 300px;
    }
    
    .mission-quote {
        left: 1rem;
        right: 1rem;
        bottom: 1rem;
        padding: 1.25rem;
    }
    
    .mission-quote blockquote {
        font-size: 1rem;
    }
}

/* Print Styles */
@media print {
    .navbar,
    .hero-decoration,
    .scroll-indicator,
    .contact-form-container {
        display: none;
    }
    
    .hero {
        min-height: auto;
        padding: 4rem 0;
    }
}

