/* ============================================
   The Cedar Lane School - Light Mode Styles
   ============================================ */

:root {
    --primary-color: #2e7d32;
    --primary-light: #4caf50;
    --primary-dark: #1b5e20;
    --secondary-color: #1976d2;
    --secondary-light: #42a5f5;
    --secondary-dark: #0d47a1;
    --accent-color: #ff9800;
    --white: #ffffff;
    --black: #212121;
    --grey-light: #f5f5f5;
    --grey: #9e9e9e;
    --grey-dark: #616161;
    --text-body: #424242;
    --text-muted: #757575;
    --surface: #ffffff;
    --background: #fafafa;
    --border-color: #e0e0e0;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-hover: 0 8px 30px rgba(0, 0, 0, 0.12);
    --navbar-height: 70px;
    --transition: 0.3s ease;
    --font-primary: 'Poppins', sans-serif;
    --font-display: 'Fredoka', sans-serif;
}

/* Reset & Base */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    color: var(--text-body);
    background-color: var(--background);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    color: var(--secondary-color);
    text-decoration: none;
    transition: color var(--transition);
}

a:hover {
    color: var(--secondary-dark);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ============================================
   Navigation
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--navbar-height);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    z-index: 1000;
    transition: background var(--transition), box-shadow var(--transition);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-icon {
    width: 45px;
    height: 45px;
    object-fit: contain;
}

.logo-text {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-color);
    white-space: nowrap;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-link {
    display: inline-block;
    padding: 8px 14px;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-body);
    border-radius: 8px;
    transition: color var(--transition), background var(--transition);
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color);
    background: rgba(46, 125, 50, 0.08);
}

.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 30px;
    height: 30px;
    cursor: pointer;
    z-index: 1001;
}

.hamburger span {
    display: block;
    width: 100%;
    height: 3px;
    background: var(--primary-color);
    border-radius: 3px;
    transition: transform var(--transition), opacity var(--transition);
}

.hamburger.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* ============================================
   Hero Section
   ============================================ */
.hero {
    position: relative;
    width: 100%;
    min-height: 100vh;
    overflow: hidden;
}

.hero-slider {
    position: relative;
    width: 100%;
    height: 100vh;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 1;
}

.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.45) 0%,
        rgba(0, 0, 0, 0.55) 50%,
        rgba(0, 0, 0, 0.7) 100%
    );
    z-index: 1;
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    max-width: 900px;
    text-align: center;
    color: var(--white);
    z-index: 2;
    padding: 90px 20px 175px;
}

.hero-title {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.4);
}

.hero-subtitle {
    font-size: 1.4rem;
    font-weight: 400;
    margin-bottom: 1rem;
    opacity: 0.95;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.3);
}

.hero-text-block {
    max-width: 700px;
    margin: 0 auto;
}

.hero-description {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 0;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.3);
}

.hero-text-expanded {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.5s ease, opacity 0.4s ease, margin 0.4s ease;
    margin-top: 0;
}

.hero-text-expanded.is-visible {
    max-height: 400px;
    opacity: 1;
    margin-top: 1rem;
}

.hero-text-expanded p {
    font-size: 0.95rem;
    line-height: 1.7;
    opacity: 0.9;
    margin-bottom: 0.75rem;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.3);
}

.hero-text-expanded p:last-child {
    margin-bottom: 0;
}

.hero-read-more {
    display: inline-block;
    margin-top: 0.75rem;
    padding: 6px 18px;
    font-family: var(--font-primary);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--white);
    background: rgba(255, 255, 255, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.6);
    border-radius: 25px;
    cursor: pointer;
    transition: background var(--transition), border-color var(--transition);
    backdrop-filter: blur(4px);
}

.hero-read-more:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: var(--white);
}

.hero-buttons {
    position: absolute;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 1rem;
    z-index: 5;
}

.hero-slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    color: var(--white);
    font-size: 1.2rem;
    cursor: pointer;
    z-index: 5;
    transition: background var(--transition), border-color var(--transition);
    backdrop-filter: blur(4px);
}

.hero-slider-btn:hover {
    background: rgba(255, 255, 255, 0.35);
    border-color: var(--white);
}

.hero-slider-prev {
    left: 20px;
}

.hero-slider-next {
    right: 20px;
}

.hero-slider-dots {
    position: absolute;
    bottom: 92px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 5;
}

.hero-slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: background var(--transition), transform var(--transition);
}

.hero-slider-dot.active {
    background: var(--white);
    transform: scale(1.2);
}

.hero-slider-dot:hover {
    background: rgba(255, 255, 255, 0.7);
}

/* ============================================
   Buttons
   ============================================ */
.btn {
    display: inline-block;
    padding: 14px 30px;
    font-family: var(--font-primary);
    font-size: 1rem;
    font-weight: 600;
    border-radius: 30px;
    cursor: pointer;
    transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
    text-align: center;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.btn-primary {
    background: var(--primary-color);
    color: var(--white);
    border: 2px solid var(--primary-color);
}

.btn-primary:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    color: var(--white);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--primary-color);
}

/* ============================================
   Section Styles
   ============================================ */
.section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-title {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.title-underline {
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    margin: 0 auto 15px;
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

/* ============================================
   About Section
   ============================================ */
.about-section {
    background: var(--white);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

.about-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-body);
}

.lead-text {
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.about-text p {
    margin-bottom: 1.2rem;
}

.about-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.stat-card {
    background: var(--surface);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: transform var(--transition), box-shadow var(--transition);
    border: 1px solid var(--border-color);
    border-top: 4px solid var(--primary-color);
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.stat-icon {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.stat-number {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-muted);
}

/* ============================================
   Mission Section
   ============================================ */
.mission-section {
    background: var(--grey-light);
}

.mission-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.mission-card {
    background: var(--surface);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: transform var(--transition), box-shadow var(--transition);
    border: 1px solid var(--border-color);
}

.mission-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.mission-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.mission-card h3 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.mission-card p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-body);
    text-align: left;
}

/* ============================================
   Vision / Accreditation Section
   ============================================ */
.vision-section {
    background: var(--white);
}

.vision-content {
    max-width: 900px;
    margin: 0 auto;
}

.vision-quote {
    font-size: 1.5rem;
    font-style: normal;
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 50px;
    padding: 30px;
    background: var(--surface);
    border-radius: 15px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-color);
    border-left: 5px solid var(--secondary-color);
    border-right: 5px solid var(--primary-color);
    line-height: 1.7;
}

.vision-goals {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.vision-goal {
    display: flex;
    gap: 15px;
    padding: 25px;
    background: var(--grey-light);
    border-radius: 12px;
    transition: transform var(--transition), box-shadow var(--transition);
    border: 1px solid var(--border-color);
}

.vision-goal:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.goal-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.vision-goal h4 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    color: var(--secondary-color);
    margin-bottom: 8px;
}

.vision-goal p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-body);
}

/* ============================================
   Gallery Section
   ============================================ */
.gallery-section {
    background: var(--grey-light);
}

.gallery-filters {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.gallery-event-filters {
    margin-bottom: 40px;
}

.gallery-filter-label {
    font-weight: 600;
    color: var(--grey-dark);
    font-size: 0.95rem;
    margin-right: 4px;
}

.filter-btn {
    padding: 10px 22px;
    font-family: var(--font-primary);
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-body);
    background: var(--white);
    border: 2px solid var(--border-color);
    border-radius: 25px;
    cursor: pointer;
    transition: all var(--transition);
}

.filter-btn:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.filter-btn.active {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}

.gallery-empty {
    text-align: center;
    color: var(--grey-dark);
    background: var(--grey-light);
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 24px;
    font-weight: 500;
    border: 1px dashed var(--border-color);
}

.gallery-container {
    position: relative;
}

/* Image Carousel */
.image-carousel-wrapper {
    margin-bottom: 40px;
}

.carousel-container {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-hover);
}

.image-carousel {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 10;
    overflow: hidden;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

.carousel-slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 1;
}

.carousel-slide.filter-hidden {
    display: none;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.carousel-caption {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    padding: 16px 20px;
    background: rgba(0, 0, 0, 0.65);
    backdrop-filter: blur(6px);
    border-radius: 12px;
    color: var(--white);
    z-index: 2;
}

.carousel-caption p {
    font-size: 0.95rem;
    margin-top: 6px;
    opacity: 0.9;
}

.event-badge {
    display: inline-block;
    padding: 4px 12px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--white);
    background: var(--primary-color);
    border-radius: 20px;
    letter-spacing: 0.3px;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    color: var(--primary-color);
    font-size: 1.1rem;
    cursor: pointer;
    z-index: 3;
    transition: background var(--transition), transform var(--transition);
    box-shadow: var(--shadow);
}

.carousel-btn:hover {
    background: var(--white);
    transform: translateY(-50%) scale(1.05);
}

.carousel-prev {
    left: 15px;
}

.carousel-next {
    right: 15px;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--grey);
    cursor: pointer;
    transition: background var(--transition), transform var(--transition);
}

.carousel-dot.active {
    background: var(--primary-color);
    transform: scale(1.2);
}

.carousel-dot:hover {
    background: var(--primary-light);
}

/* Videos Grid */
.videos-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.gallery-item {
    background: var(--surface);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform var(--transition), box-shadow var(--transition);
    border: 1px solid var(--border-color);
    cursor: pointer;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.gallery-item.filter-hidden {
    display: none;
}

.gallery-video {
    position: relative;
    aspect-ratio: 16 / 10;
    overflow: hidden;
}

.gallery-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    transition: background var(--transition);
}

.gallery-item:hover .gallery-overlay {
    background: rgba(0, 0, 0, 0.35);
}

.gallery-icon {
    font-size: 2.5rem;
    opacity: 0.8;
}

.gallery-item-info {
    padding: 18px 20px;
}

.gallery-item-info p {
    font-size: 0.95rem;
    color: var(--text-body);
    margin-top: 8px;
    line-height: 1.5;
}

/* ============================================
   Contact Section
   ============================================ */
.contact-section {
    background: var(--white);
}

.contact-content {
    max-width: 1000px;
    margin: 0 auto;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.contact-card {
    background: var(--grey-light);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: transform var(--transition), box-shadow var(--transition);
    border: 1px solid var(--border-color);
}

.contact-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

.address-card {
    grid-column: 1 / -1;
}

.map-container {
    width: 100%;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 15px;
}

.map-container iframe {
    width: 100%;
    height: 250px;
    border: 0;
    display: block;
}

.contact-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.contact-card h3 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.contact-card p {
    font-size: 1rem;
    color: var(--text-body);
    line-height: 1.6;
}

.contact-card a {
    font-weight: 500;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 10px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: var(--white);
    border-radius: 50%;
    font-size: 1.5rem;
    box-shadow: var(--shadow);
    transition: transform var(--transition), box-shadow var(--transition);
    border: 1px solid var(--border-color);
}

.social-link:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

/* ============================================
   Footer
   ============================================ */
.footer {
    background: var(--primary-dark);
    color: var(--white);
    padding: 30px 0;
    text-align: center;
}

.footer p {
    font-size: 1rem;
    opacity: 0.9;
}

/* ============================================
   Responsive - Tablet (768px)
   ============================================ */
@media (max-width: 768px) {
    .logo-text {
        font-size: 1rem;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        flex-direction: column;
        align-items: flex-start;
        padding: 90px 30px 30px;
        background: var(--white);
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
        transition: right var(--transition);
        gap: 0;
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-link {
        width: 100%;
        padding: 14px 0;
        font-size: 1.05rem;
        border-bottom: 1px solid var(--border-color);
        border-radius: 0;
    }

    .hamburger {
        display: flex;
    }

    .hero-title {
        font-size: 2.5rem;
        overflow: visible;
        padding: 0 5px;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .hero-slider-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .hero-slider-prev {
        left: 10px;
    }

    .hero-slider-next {
        right: 10px;
    }

    .hero-buttons {
        bottom: 100px;
        flex-direction: column;
        width: calc(100% - 40px);
        gap: 0.8rem;
    }

    .hero-slider-dots {
        bottom: 66px;
    }

    .section {
        padding: 60px 0;
    }

    .section-title {
        font-size: 2rem;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-stats {
        grid-template-columns: 1fr 1fr;
    }

    .mission-content {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .vision-goals {
        grid-template-columns: 1fr;
    }

    .vision-quote {
        font-size: 1.2rem;
        padding: 20px;
    }

    .gallery-filters {
        gap: 10px;
    }

    .filter-btn {
        padding: 8px 16px;
        font-size: 0.88rem;
    }

    .carousel-caption {
        left: 14px;
        right: 14px;
        bottom: 14px;
        padding: 12px 14px;
    }

    .carousel-caption p {
        font-size: 0.88rem;
    }

    .videos-grid {
        grid-template-columns: 1fr;
    }

    .contact-info {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   Responsive - Mobile (480px)
   ============================================ */
@media (max-width: 480px) {
    .logo-icon {
        width: 38px;
        height: 38px;
    }

    .logo-text {
        font-size: 0.9rem;
    }

    .hero-title {
        font-size: 2rem;
        line-height: 1.2;
        overflow: visible;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-description {
        font-size: 0.9rem;
        margin-bottom: 0;
    }

    .hero-text-expanded.is-visible {
        max-height: 280px;
        overflow-y: auto;
    }

    .hero-text-expanded p {
        font-size: 0.85rem;
    }

    .hero-read-more {
        margin-top: 0.65rem;
        font-size: 0.8rem;
        padding: 5px 14px;
    }

    .hero-buttons {
        flex-direction: column;
        width: calc(100% - 30px);
        gap: 0.8rem;
        bottom: 130px;
    }

    .hero-slider-dots {
        bottom: 64px;
    }

    .btn {
        width: 100%;
        text-align: center;
        padding: 12px 25px;
        font-size: 0.95rem;
    }

    .section {
        padding: 50px 0;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .about-stats {
        grid-template-columns: 1fr;
    }

    .stat-card {
        padding: 20px;
    }

    .stat-number {
        font-size: 2rem;
    }

    .mission-card {
        padding: 30px 20px;
    }

    .vision-quote {
        font-size: 1.05rem;
        padding: 18px;
    }

    .gallery-filters {
        gap: 8px;
    }

    .gallery-filter-label {
        width: 100%;
        text-align: center;
        margin-right: 0;
    }

    .filter-btn {
        padding: 7px 12px;
        font-size: 0.82rem;
    }

    .carousel-btn {
        width: 36px;
        height: 36px;
        font-size: 0.9rem;
    }

    .carousel-prev {
        left: 8px;
    }

    .carousel-next {
        right: 8px;
    }

    .contact-card {
        padding: 22px;
    }

    .map-container iframe {
        height: 200px;
    }
}

/* ============================================
   Responsive - Small Mobile (320px)
   ============================================ */
@media (max-width: 320px) {
    .nav-container {
        padding: 0 12px;
    }

    .logo-text {
        font-size: 0.78rem;
    }

    .logo-icon {
        width: 32px;
        height: 32px;
    }

    .nav-menu {
        width: 100%;
        right: -100%;
    }

    .hero-content {
        padding: 80px 12px 160px;
    }

    .hero-title {
        font-size: 1.6rem;
    }

    .hero-subtitle {
        font-size: 0.9rem;
    }

    .hero-description {
        font-size: 0.82rem;
    }

    .hero-buttons {
        bottom: 120px;
        width: calc(100% - 24px);
    }

    .hero-slider-dots {
        bottom: 58px;
    }

    .hero-slider-btn {
        width: 34px;
        height: 34px;
        font-size: 0.85rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .section-subtitle {
        font-size: 0.95rem;
    }

    .lead-text {
        font-size: 1.05rem;
    }

    .about-text {
        font-size: 0.95rem;
    }

    .filter-btn {
        padding: 6px 10px;
        font-size: 0.75rem;
    }

    .event-badge {
        font-size: 0.7rem;
        padding: 3px 8px;
    }

    .btn {
        padding: 10px 20px;
        font-size: 0.88rem;
    }

    .footer p {
        font-size: 0.88rem;
    }
}

/* Landscape orientation for mobile */
@media (max-width: 768px) and (orientation: landscape) {
    .hero {
        min-height: 100vh;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-buttons {
        bottom: 70px;
    }

    .section {
        padding: 40px 0;
    }
}
