/* ═══════════════════════════════════════════════════════════════
   CAZ'ABEILLES — SHARED STYLESHEET
   Fonts: Fredoka (headings) · Nunito (body / nav bold)
   Palette: sky blue · grass green · sun yellow · warm orange
═══════════════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Fredoka:wght@400;600;700&family=Nunito:ital,wght@0,400;0,600;0,700;0,800;1,400&display=swap');

/* ── GLOBAL TYPOGRAPHY: all headings Fredoka, all body/text Nunito ── */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Fredoka', sans-serif !important;
}

p, li, span, td, th, label, input, textarea, select, a, blockquote,
.footer-left, .caption, .feature-item, .intro-sub, .mission-text,
.hero-eyebrow, .hero-sub, .why-quote, .thumb-caption, .check-circle,
.feature-chip, .map-btn-new, .journey-btn, .nav-mobile-menu a {
    font-family: 'Nunito', sans-serif;
}

/* ── CSS CUSTOM PROPERTIES ──────────────────────────────────── */
:root {
    --blue:    #008fc4;
    --green:   #1b9714;
    --yellow:  #fbd206;
    --orange:  #eb8923;
    --cream:   #fffdf5;
    --soft-bg: #f0f9ff;
    --text:    #3a3a3a;
    --muted:   #6b7c8a;
    --card-bg: #ffffff;
    --radius:  28px;
    --shadow:  0 8px 32px rgba(0,142,196,.12);
}

/* --- 1. GLOBAL & RESET ---------------------------------------- */
html {
    overflow-x: hidden;
    background-color: #fffcf5;
}

*{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Nunito', sans-serif;
    background-color: var(--cream);
    background-image: url('images/hive_back.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    color: var(--text);
    overflow-x: hidden;
}

/* About page: no hive background — clean gradient hero instead */
body.about-page {
    background-image: none;
    background-color: #fffcf5;
    padding-top: 0;
}

p,
.info-card p,
.feature-item,
.intro-sub,
.mission-text,
.about-text p {
    font-family: 'Nunito', sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: #555555;
}

/* --- 2. SHARED NAVIGATION ------------------------------------- */

/* ── SINGLE WHITE NAV BAR ── */
nav {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 54px;
    position: fixed;
    top: 0;
    left: 0;
    padding-left: 50px;
    padding-right: 50px;
    z-index: 1000;
    background-color: #fffdf5;
    background-image: url('images/honeycombs.svg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 0;
    border: none !important;
    border-bottom: 2px solid #eb8923 !important;
    outline: none;
    box-shadow: 0 3px 12px rgba(0,0,0,0.10);
}

nav::before { display: none; }
nav::after  { display: none; }

/* ── LEFT: logo  |  RIGHT: menu links ── */
.nav-left {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    height: 100%;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 35px;
    flex: 1;
    justify-content: flex-end;
}

/* Hide old centre slot */
.nav-center {
    display: none;
}

/* Logo inside nav-left */
.nav-left a {
    display: flex;
    align-items: center;
    height: 100%;
}

.nav-left img,
.nav-left a img {
    width: 160px;
    height: auto;
    display: block;
    vertical-align: middle;
    margin-top: 5px;
    margin-bottom: 0;
    transition: transform 0.3s ease;
}

.nav-left a img:hover { transform: scale(1.1); }

/* Nav links — Nunito Bold, dark on white */
nav a {
    font-family: 'Nunito', sans-serif !important;
    font-weight: 700 !important;
    font-size: 14px !important;
    color: #565f62 !important;
    text-decoration: none !important;
    letter-spacing: 0.3px;
    transition: color 0.2s ease;
}

nav a:hover { color: #eb8923 !important; }

/* Remove the separate topbar — no longer needed */
.nav-topbar { display: none; }

/* ── HAMBURGER / MOBILE MENU ── */
.nav-hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 40px; height: 40px;
    background: rgba(237,157,33,.15);
    border: none;
    border-radius: 10px;
    cursor: pointer;
    padding: 6px;
    z-index: 1001;
}
.nav-hamburger span {
    display: block;
    width: 22px; height: 2px;
    background: #b07a10;
}

.nav-mobile-menu {
    display: none;
    position: fixed;
    top: 54px; left: 0; right: 0;
    background: #ffffff;
    backdrop-filter: none;
    z-index: 999;
    flex-direction: column;
    padding: 12px 0;
    box-shadow: 0 8px 24px rgba(0,0,0,.15);
}
.nav-mobile-menu.open { display: flex; }
.nav-mobile-menu a {
    font-family: 'Nunito', sans-serif !important;
    font-weight: 700 !important;
    font-size: 15px !important;
    color: #b07a10 !important;
    text-decoration: none !important;
    padding: 14px 24px;
    border-bottom: 1px solid rgba(0,0,0,.07);
}
.nav-mobile-menu a:last-child { border-bottom: none; }
.nav-mobile-menu a:hover { background: rgba(237,157,33,.08); color: #eb8923 !important; }

/* --- 3. HOME PAGE HERO / VIDEO -------------------------------- */
.main-content {
    padding-top: 0;
    padding-bottom: 0;
}

.hero-video {
    width: 100%;
    height: 100vh;
    object-fit: cover;
    display: block;
}

.video-container {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    display: block;
}

.cloud-overlay {
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: auto;
    pointer-events: none;
    z-index: 2;
}

.welcome-overlay {
    position: absolute;
    bottom: 100px;
    left: 80px;
    z-index: 3;
    pointer-events: none;
}

.welcome-text {
    font-family: 'Brush Script MT', cursive, 'Nunito', sans-serif;
    font-size: 72px;
    color: var(--orange);
    margin: 0 0 -15px 0;
    font-style: italic;
}

.welcome-subtext {
    font-family: 'Nunito', sans-serif;
    font-size: 42px;
    color: var(--text);
    font-weight: bold;
    margin: 0 0 20px 20px;
}

.journey-btn {
    display: inline-block;
    margin-left: 20px;
    padding: 12px 30px;
    background-color: var(--blue);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-family: 'Nunito', sans-serif;
    font-size: 16px;
    font-weight: bold;
    pointer-events: auto;
    transition: background-color 0.3s ease;
}

.journey-btn:hover { background-color: #006a94; }

.decorative-shapes {
    position: absolute;
    bottom: 120px;
    right: 150px;
    z-index: 3;
    pointer-events: none;
}

.decorative-shapes span {
    display: inline-block;
    width: 20px; height: 20px;
    border-radius: 50%;
    margin: 0 8px;
}

.shape-blue   { background-color: var(--blue); }
.shape-yellow { background-color: var(--yellow); }
.shape-green  { background-color: #03AC13; }
.shape-orange { background-color: var(--orange); }

/* --- 4. HOME PAGE about-container ----------------------------- */
.about-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 100px 20px 20px 20px;
    text-align: center;
}

.home-page .about-container { padding-top: 20px; }

h1.home-heading {
    font-family: 'Fredoka', sans-serif;
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 5px;
    color: #008fc4;
}

.about-section-top h1 {
    font-family: 'Fredoka', sans-serif;
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 5px;
    background: linear-gradient(90deg, var(--blue) 30%, var(--green) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: var(--blue);
}

.about-row {
    display: flex;
    align-items: center;
    gap: 60px;
    margin: 50px auto;
    text-align: justify;
    padding: 0 40px;
}

.about-text { flex: 1.8; }

h2,
.about-text h2,
.features-card h2,
.info-card h2 {
    font-family: 'Fredoka', sans-serif;
    font-size: 26px;
    font-weight: 600;
    color: var(--orange);
    margin-bottom: 15px;
    letter-spacing: 0.4px;
}

.about-text h2.green-heading,
.features-card h2.green-heading   { color: #444444; }
.about-text h2.yellow-heading,
.features-card h2.yellow-heading  { color: var(--yellow); }
.about-text h2.blue-heading,
.features-card h2.blue-heading    { color: var(--blue); }
.about-text h2.brown-heading,
.features-card h2.brown-heading   { color: var(--orange); }

.about-image {
    flex: 0 0 420px;
    width: 420px;
    height: 300px;
}

.about-image img {
    width: 420px;
    height: 300px;
    object-fit: cover;
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    box-shadow: 0 15px 30px rgba(0,119,190,0.15);
    transition: all 0.5s ease-in-out;
}

.about-image:hover img {
    border-radius: 40% 60% 70% 30% / 40% 70% 30% 60%;
}

.info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin: 40px 0;
}

.info-card {
    background: #ffffff;
    padding: 40px;
    border-radius: 25px;
    border: 1px solid #e1f0ff;
    box-shadow: 0 5px 15px rgba(0,119,190,0.08);
    text-align: justify;
}

.card-divider {
    border-top: 2px dotted var(--yellow);
    padding-top: 20px;
    margin-top: 20px;
}

.map-wrapper {
    width: 100%;
    border-radius: 25px;
    overflow: hidden;
    margin-bottom: 20px;
    border: 1px solid #e1f0ff;
}

.map-btn {
    display: inline-block;
    margin-bottom: 40px;
    padding: 12px 35px;
    background-color: var(--orange);
    color: white !important;
    text-decoration: none;
    border-radius: 50px;
    font-family: 'Nunito', sans-serif;
    font-weight: bold;
}

.photo-gallery-row {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 15px;
    margin: 50px 0;
}

.gallery-item {
    overflow: hidden;
    border-radius: 20px;
    height: 170px;
}

.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.gallery-item:hover img { transform: scale(1.1); }
.caption { font-family: 'Nunito', sans-serif; font-size: 14px; color: #555; font-style: italic; display: block; margin-top: 10px; }

.features-card {
    padding: 50px;
    border-radius: 40px;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    max-width: 900px;
    margin: 25px auto 0;
    text-align: left;
}

.feature-item {
    display: flex;
    align-items: center;
    background: white;
    padding: 12px 20px;
    border-radius: 15px;
    font-family: 'Nunito', sans-serif;
}

.checkmark { color: #03AC13; font-size: 20px; margin-right: 15px; font-weight: bold; }
.established-heading { color: var(--orange); }

/* --- 5. RESPONSIVE (general) ---------------------------------- */
@media (max-width: 850px) {
    nav { padding: 0 20px; height: 54px; }
    .nav-center img { width: 100px; }
    .welcome-overlay { bottom: 80px; left: 30px; }
    .welcome-text    { font-size: 48px; }
    .welcome-subtext { font-size: 28px; margin-left: 10px; }
    .journey-btn     { margin-left: 10px; padding: 10px 24px; font-size: 14px; }
    .decorative-shapes { bottom: 80px; right: 30px; }
    .decorative-shapes span { width: 15px; height: 15px; margin: 0 5px; }
    .about-row { flex-direction: column; text-align: center; padding: 0 20px; }
    .about-image { flex: 0 0 420px; width: 420px; height: 210px; order: -1; }
    .info-grid, .features-grid { grid-template-columns: 1fr; }
    .photo-gallery-row { grid-template-columns: repeat(2, 1fr); }
    footer { padding: 10px 0; }
    .footer-content { flex-direction: column; gap: 5px; padding-left: 20px; padding-right: 20px; }
    .discover-slider .swiper-slide { width: 280px !important; height: 160px !important; }
}

/* --- 6. DISCOVER SECTION -------------------------------------- */
.discover-section {
    text-align: center;
    padding: 50px 20px;
    background-color: #fff3dc;
    margin-top: 0;
    margin-bottom: 0;
    overflow: hidden;
    border-top: 1px dotted #444444;
    border-bottom: 1px dotted #444444;
    position: relative;
}

/* Wrapper to allow slider overflow while clipping at section edges */
.discover-slider-outer {
    overflow: hidden;
    position: relative;
    padding: 10px 0;
}

.discover-title {
    font-family: 'Nunito', sans-serif;
    font-size: 32px;
    color: #444444;
    margin: 0 0 10px 0;
}

.product-line-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 25px;
}

.product-line-wrapper p { color: #444444 !important; margin: 0; }

.line-separator {
    height: 1px;
    width: 60px;
    background-color: var(--orange);
}

/* --- 7. FOOTER ------------------------------------------------ */
footer {
    background-color: white;
    color: #444444;
    padding: 15px 0;
    width: 100%;
    font-family: 'Nunito', sans-serif;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin: 0 auto;
    padding-left: 50px;
    padding-right: 50px;
}

.footer-left { font-size: 10px; line-height: 18px; }
.footer-icons { display: flex; align-items: center; }
.footer-icons a { display: flex; align-items: center; }
.footer-icons img { height: 18px; width: auto; transition: opacity 0.3s ease; display: block; }
.footer-icons a:hover img { opacity: 0.7; }

/* --- 8. DISCOVER SLIDER --------------------------------------- */
.discover-slider {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    padding-bottom: 40px;
    overflow: visible;
}

.discover-slider .swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.4s ease, opacity 0.4s ease;
    transform: scale(0.8);
    opacity: 0.45;
    width: 450px;
    height: 280px;
}

.discover-slider .swiper-slide-prev,
.discover-slider .swiper-slide-next {
    opacity: 0.55;
}

.discover-slider .swiper-slide-active {
    transform: scale(1);
    opacity: 1;
}

.discover-slider .swiper-slide img {
    width: 100%;
    height: 100%;
    display: block;
    border-radius: 30px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
    object-fit: cover;
}

.discover-slider .swiper-button-next,
.discover-slider .swiper-button-prev { display: none !important; }

.discover-slider .swiper-pagination-bullet {
    background-color: var(--orange) !important;
    opacity: 1;
}

.discover-slider .swiper-pagination-bullet-active {
    background-color: var(--yellow) !important;
    opacity: 1;
}

/* ═══════════════════════════════════════════════════════════════
   9. GALLERY PAGE
═══════════════════════════════════════════════════════════════ */
.gallery-main-wrapper { padding-top: 0; padding-bottom: 0; }

.gallery-section {
    margin: 0;
    padding: 20px 0;
    width: 100%;
    min-height: 35vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.easter-section {
    margin-top: -40px;
    padding-top: 130px;
    min-height: 55vh;
}

.gallery-section-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1500px;
    width: 100%;
    margin: 0 auto;
    padding: 0 40px;
    gap: 60px;
}

.section-text { flex: 0 0 380px; color: white; }

.section-text h1 {
    font-family: 'Nunito', sans-serif;
    font-size: 80px !important;
    font-weight: 800 !important;
    margin: 0 0 20px 0 !important;
    color: white !important;
    line-height: 1 !important;
    padding: 0;
}

.section-subheading { display: none; }

.section-description {
    font-family: 'Nunito', sans-serif;
    font-size: 14px;
    line-height: 1.6;
    color: white;
	text-align: justify;
}

.section-images {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 20px;
}

.easter-section    { background-color: #00d4aa; }
.divali-section    { background-color: var(--blue); }
.christmas-section { background-color: var(--orange); }
.fourth-section    { background-color: #03AC13; }
.fifth-section     { background-color: var(--yellow); }

.easter-section    .gallery-section-content,
.christmas-section .gallery-section-content,
.fifth-section     .gallery-section-content { flex-direction: row; }

.divali-section    .gallery-section-content,
.fourth-section    .gallery-section-content { flex-direction: row-reverse; }

.gallery_photos {
    display: block;
    position: relative;
    width: 950px;
    height: 450px;
    margin: 0 auto;
}

.image-card {
    width: 150px;
    height: 175px;
    position: absolute;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    filter: drop-shadow(0 5px 12px rgba(237,157,33,0.15));
}

.image-card:nth-child(1) { left: 0px;   top: 30px; }
.image-card:nth-child(2) { left: 190px; top: 0px; }
.image-card:nth-child(3) { left: 380px; top: 30px; }
.image-card:nth-child(4) { left: 570px; top: 0px; }
.image-card:nth-child(5) { left: 760px; top: 30px; }
.image-card:nth-child(6) { left: 190px; top: 220px; }
.image-card:nth-child(7) { left: 380px; top: 250px; }
.image-card:nth-child(8) { left: 570px; top: 220px; }

.image-card::before {
    content: '';
    position: absolute;
    left: -16px; top: -16px;
    width: calc(100% + 32px);
    height: calc(100% + 32px);
    background-image: url("data:image/svg+xml,%3Csvg width='166' height='191' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolygon points='83,8 158,50 158,141 83,183 8,141 8,50' fill='none' stroke='%23FFFFFF' stroke-width='0.8' stroke-dasharray='1,4' stroke-linecap='round'/%3E%3C/svg%3E");
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-position: center;
    pointer-events: none;
    z-index: 5;
}

.gallery_photos img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    clip-path: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg'%3E%3Cdefs%3E%3CclipPath id='hexClip' clipPathUnits='objectBoundingBox'%3E%3Cpath d='M 0.5,0.01 L 0.98,0.25 Q 0.99,0.26 0.99,0.27 L 0.99,0.73 Q 0.99,0.74 0.98,0.75 L 0.5,0.99 Q 0.49,0.99 0.5,0.99 L 0.02,0.75 Q 0.01,0.74 0.01,0.73 L 0.01,0.27 Q 0.01,0.26 0.02,0.25 L 0.5,0.01 Z'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E#hexClip");
    transition: transform 0.5s ease;
    position: relative;
}

.image-card::after {
    content: '';
    position: absolute;
    left: 3px; top: 25%;
    width: 5px; height: 50%;
    background: linear-gradient(180deg, var(--yellow), var(--orange));
    z-index: 10;
    box-shadow: 139px 0 0 0 var(--yellow);
    background-clip: padding-box;
}

.image-card:hover {
    transform: scale(1.15);
    filter: drop-shadow(0 10px 25px rgba(237,157,33,0.25));
    z-index: 100;
}

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

#lightbox {
    position: fixed;
    z-index: 10000;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.9);
    display: none;
    align-items: center;
    justify-content: center;
}

.lightbox-content-container {
    position: relative;
    max-width: 90%;
    max-height: 85%;
    display: flex;
    align-items: center;
    justify-content: center;
}

#lightbox-img {
    max-width: 100%;
    max-height: 85vh;
    border-radius: 8px;
    display: block;
    box-shadow: 0 10px 40px rgba(0,0,0,0.5);
}

.nav-arrow {
    position: absolute;
    top: 50%; transform: translateY(-50%);
    color: white; font-size: 24px;
    background: rgba(0,0,0,0.3);
    width: 44px; height: 44px;
    display: flex; align-items: center; justify-content: center;
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.3s;
    user-select: none;
}

.nav-arrow:hover { background: rgba(0,119,190,0.8); }
.prev { left: 15px; }
.next { right: 15px; }

.close-btn {
    position: absolute;
    top: -40px; right: 0;
    color: white; font-size: 30px; cursor: pointer;
}

@media (max-width: 992px) {
    .gallery-section-content {
        flex-direction: column !important;
        padding: 40px 20px;
        gap: 40px;
        max-width: 90% !important;
        width: 90% !important;
        margin: 0 auto !important;
    }
    .section-text { flex: 1; text-align: center; }
    .section-text h1 { font-size: 48px !important; }
    .gallery_photos { grid-template-columns: repeat(3, 150px); gap: 10px 15px; }
    .image-card { width: 150px; height: 172px; }
    .image-card:nth-child(1) { grid-column: 1; grid-row: 1; }
    .image-card:nth-child(2) { grid-column: 2; grid-row: 1; }
    .image-card:nth-child(3) { grid-column: 3; grid-row: 1; }
    .image-card:nth-child(4) { grid-column: 1; grid-row: 2; margin-top: -45px; }
    .image-card:nth-child(5) { grid-column: 2; grid-row: 2; margin-top: -45px; }
    .image-card:nth-child(6) { grid-column: 3; grid-row: 2; margin-top: -45px; }
    .image-card:nth-child(7) { grid-column: 1; grid-row: 3; margin-top: 0; }
    .image-card:nth-child(8) { grid-column: 2; grid-row: 3; margin-top: 0; }
}

@media (max-width: 600px) {
    .section-text h1 { font-size: 36px !important; }
    .gallery_photos { grid-template-columns: repeat(2, 150px); }
    .image-card:nth-child(n) { margin-top: 0 !important; }
}

/* ═══════════════════════════════════════════════════════════════
   10. ABOUT PAGE — all styles moved from inline <style>
═══════════════════════════════════════════════════════════════ */

/* ══════════════════════════════════════════════════════
   ABOUT HERO — inline SVG (viewBox 1440×590)
   SVG is position:absolute, fills section via width/height 100%.
   Section has fixed height so text always has room.
   margin-top:-65px tucks section under the fixed nav.
══════════════════════════════════════════════════════ */

/* Legacy home-page hero — NOT used on about page */
body:not(.about-page) .about-hero {
    position: relative;
    width: 100%;
    margin-top: -65px;
    height: 420px;
    z-index: 1;
    overflow: visible;
    background-color: #eae5e1;
}

/* SVG absolutely fills the section — scales without distortion */
.about-hero-wave {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    display: block;
    z-index: 1;
}

/* Hide legacy helpers (not on about page — it uses wave-dividers) */
.about-hero-gradient { display: none; }
body:not(.about-page) .wave-divider { display: none; }

/* Text: centred between nav bottom and wave curve.
   margin-top:-65px means section top = 65px above viewport top.
   top:65px brings us back to viewport top = nav bottom. */
.hero-content {
    position: absolute;
    top: 195px;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 5;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 40px 120px;
    line-height: 1.4;
}

.hero-eyebrow {
    display: inline-block;
    font-family: 'Nunito', sans-serif;
    font-weight: 800;
    font-size: 12px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #ffffff;
    background: rgba(255,255,255,.18);
    border: 1px solid rgba(255,255,255,.45);
    border-radius: 50px;
    padding: 6px 18px;
    margin-bottom: 22px;
}

.hero-title {
    font-family: 'Fredoka', sans-serif;
    font-weight: 700;
    font-size: clamp(38px, 6vw, 68px);
    color: #008fc4;
    line-height: 1.1;
    letter-spacing: 0.5px;
    margin-bottom: 18px;
}

.hero-sub {
    font-size: clamp(13px, 1.4vw, 17px);
    font-family: 'Nunito', sans-serif;
    color: #565f62;
    line-height: 1.7;
    text-align: center;
    margin: 0 auto;
    white-space: nowrap;    /* keep on one line */
    text-shadow: 0 2px 10px rgba(0,0,0,.18);
}

/* Hide legacy helpers (not on about page — it uses wave-dividers) */
.about-hero-gradient { display: none; }
body:not(.about-page) .wave-divider { display: none; }

/* ── CONTENT AREA BELOW HERO ──
   Hero section uses padding-bottom to size itself to the full wave image.
   page-content-bg simply starts here with no margin tricks needed. */
.page-content-bg {
    background-color: #eae5e1;
    position: relative;
    z-index: 2;
    margin-top: 0;
    padding-top: 0;
}

.about-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 24px 10px;
    position: relative;
    z-index: 2;
}

/* School photo: overlap up slightly into the wave tail */
.intro-img-overlap {
    position: relative;
    z-index: 10;
    margin-top: -55px;
}

/* Intro row */
.intro-row {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
    position: relative;
    z-index: 2;
}

.intro-text h2 {
    font-family: 'Fredoka', sans-serif;
    font-weight: 600;
    font-size: 38px;
    color: #eb8923;
    margin-bottom: 18px;
    line-height: 1.2;
    letter-spacing: 0.5px;
}

.intro-text p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 14px;
    text-align: justify;
}

.intro-text strong { color: var(--orange); }

.intro-img-wrap { position: relative; }

.intro-img-wrap img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    border-radius: 40% 60% 55% 45% / 45% 55% 45% 55%;
    box-shadow: 0 20px 60px rgba(86,95,98,.22);
    transition: border-radius .7s ease, transform .4s ease;
}

.intro-img-wrap img:hover {
    border-radius: 55% 45% 40% 60% / 60% 40% 60% 40%;
    transform: scale(1.02);
}

/* Info cards */
.info-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 80px;
}

.info-card-new {
    background: var(--card-bg);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.card-header {
    padding: 28px 32px 24px;
    display: flex;
    align-items: center;
    gap: 16px;
}

.card-icon {
    width: 52px; height: 52px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
}

.info-card-new:nth-child(1) .card-header { background: linear-gradient(135deg,#e8f7ff,#f0fff4); }
.info-card-new:nth-child(2) .card-header { background: linear-gradient(135deg,#fff8e8,#fff3dc); }
.info-card-new:nth-child(1) .card-icon   { background: rgba(0,142,196,.12); }
.info-card-new:nth-child(2) .card-icon   { background: rgba(237,157,33,.12); }

.card-header h2 {
    font-family: 'Fredoka', sans-serif;
    font-weight: 600;
    font-size: 22px;
    line-height: 1.2;
    letter-spacing: 0.4px;
    margin: 0;
    padding: 0;
    align-self: center;
}

.info-card-new:nth-child(1) .card-header h2 { color: var(--blue);   }
.info-card-new:nth-child(2) .card-header h2 { color: var(--orange); }

.card-body {
    padding: 28px 32px;
    flex: 1;
    font-family: 'Nunito', sans-serif;
    font-size: 15px;
    line-height: 1.8;
    color: #555;
    text-align: justify;
}

.card-body strong { color: var(--text); }

.card-details {
    margin: 0 32px 28px;
    padding: 20px 24px;
    background: var(--soft-bg);
    border-radius: 18px;
}

.detail-row {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    font-family: 'Nunito', sans-serif;
    font-size: 14px;
    color: #555;
    border-bottom: 1px dashed #dde8f0;
}

.detail-row:last-child  { border-bottom: none; padding-bottom: 0; }
.detail-row:first-child { padding-top: 0; }

.detail-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px; height: 22px;
    font-size: 15px;
    flex-shrink: 0;
    line-height: 1;
}

.detail-row strong { color: var(--text); font-weight: 700; }
.detail-row a { color: inherit; text-decoration: none; }
.detail-row a:hover { color: var(--blue); }

/* Why-section */
.why-section {
    background: linear-gradient(135deg, var(--blue) 0%, #00a896 50%, var(--green) 100%);
    width: 100%;
    padding: 60px 0;
    margin: 0;
    position: relative;
    z-index: 2;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,142,196,.25);
}

.why-section::before { display: none; }

.why-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.why-section h2 {
    font-family: 'Fredoka', sans-serif;
    font-weight: 600;
    font-size: 34px;
    color: #fff;
    margin-bottom: 10px;
    letter-spacing: 0.5px;
}

.why-quote {
    font-style: italic;
    font-size: 16px;
    font-family: 'Nunito', sans-serif;
    color: rgba(255,255,255,.8);
    margin-bottom: 40px;
    font-weight: 600;
}

.features-grid-new {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.feature-chip {
    background: rgba(255,255,255,.25);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,.25);
    border-radius: 18px;
    padding: 18px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'Nunito', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    transform: translateY(-3px);
    transition: background .3s, transform .3s;
}

.check-circle {
    width: 28px; height: 28px;
    background: var(--yellow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
    font-size: 14px;
    font-weight: 900;
    flex-shrink: 0;
}

/* Mini gallery (about page) */
.mini-gallery-section {
    margin-bottom: 80px;
    padding: 60px 30px 27px;
}

.section-heading {
    font-family: 'Fredoka', sans-serif;
    font-weight: 600;
    font-size: 34px;
    text-align: center;
    margin-bottom: 36px;
    letter-spacing: 0.5px;
    background: linear-gradient(90deg, var(--blue), var(--green));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.gallery-track {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 22px;
}

.gallery-thumb {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    aspect-ratio: 2/3;
    max-height: 240px;
    box-shadow: 0 6px 18px rgba(0,0,0,.10);
    cursor: pointer;
}

.gallery-thumb img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform .5s ease;
    display: block;
}

.gallery-thumb:hover img { transform: scale(1.08); }

.thumb-caption {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 28px 14px 14px;
    background: linear-gradient(transparent, rgba(0,0,0,.55));
    color: #fff;
    font-family: 'Nunito', sans-serif;
    font-size: 13px;
    font-weight: 700;
    text-align: center;
    transition: opacity .3s;
}

.gallery-thumb:nth-child(1) { border: 3px solid var(--blue);   }
.gallery-thumb:nth-child(2) { border: 3px solid var(--green);  }
.gallery-thumb:nth-child(3) { border: 3px solid var(--orange); }
.gallery-thumb:nth-child(4) { border: 3px solid var(--yellow); }
.gallery-thumb:nth-child(5) { border: 3px solid var(--blue);   }

/* Map section */
.map-section h2 {
    font-family: 'Fredoka', sans-serif;
    font-weight: 600;
    font-size: 34px;
    color: var(--blue);
    text-align: center;
    margin-bottom: 8px;
    letter-spacing: 0.5px;
}

.map-frame-wrap {
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 16px 48px rgba(86,95,98,.18);
    border: 1px solid #ffffff;
    margin-bottom: 20px;
}

.map-frame-wrap iframe {
    display: block;
    width: 100%;
    height: 420px;
    border: 0;
}

.map-cta { display: flex; justify-content: center; }

.map-btn-new {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--blue), var(--green));
    color: #fff;
    font-family: 'Nunito', sans-serif;
    font-weight: 800;
    font-size: 15px;
    text-decoration: none;
    padding: 16px 44px;
    border-radius: 50px;
    box-shadow: 0 8px 24px rgba(86,95,98,.35);
    transition: transform .3s, box-shadow .3s;
    white-space: nowrap;
}

.map-btn-new:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 36px rgba(86,95,98,.45);
}

/* Peluches banner (home page) */
.peluches-banner {
    width: 100%;
    margin: 0;
    padding: 0;
    line-height: 0;
    display: block;
    font-size: 0;
}

.peluches-banner img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
    max-width: 100%;
}

/* School van banner */
.school-van-banner {
    width: 100%;
    margin: 0;
    padding: 0;
    line-height: 0;
    display: block;
    font-size: 0;
}

.school-van-banner img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
    max-width: 100%;
}

/* ═══════════════════════════════════════════════════════════════
   ABOUT PAGE — RESPONSIVE BREAKPOINTS
═══════════════════════════════════════════════════════════════ */

/* ── TABLET (≤ 900px) ── */
@media (max-width: 900px) {
    .intro-row         { grid-template-columns: 1fr; gap: 36px; }
    .intro-img-wrap    { order: -1; max-width: 380px; margin: 0 auto; }
    .info-columns      { grid-template-columns: 1fr; }
    .features-grid-new { grid-template-columns: 1fr 1fr; }
    .gallery-track     { grid-template-columns: repeat(3, 1fr); }
    .gallery-thumb:nth-child(4),
    .gallery-thumb:nth-child(5) { display: none; }
    .why-section    { padding: 44px 32px; }
    .why-section h2 { font-size: 26px; }
}

/* ── MOBILE (≤ 768px) ── */
@media (max-width: 768px) {

    nav { padding-left: 16px; padding-right: 16px; }
    .nav-right { gap: 16px; }
    .nav-left img, .nav-left a img { width: 110px; }

    .about-hero { height: 380px; overflow: visible; }

    .hero-content {
        top: 195px;
        padding: 0 20px 60px;
    }

    .hero-eyebrow { font-size: 9px; letter-spacing: 2px; margin-bottom: 10px; }
    .hero-title   { font-size: clamp(20px, 5.5vw, 32px); margin-bottom: 8px; }
    .hero-sub     { display: block; font-size: 12px; white-space: normal; max-width: 520px; }

    .intro-text h2         { font-size: 28px; }
    .map-frame-wrap iframe { height: 300px; }
}

/* ── SMALL MOBILE (≤ 480px) ── */
@media (max-width: 480px) {

    nav { padding-left: 12px; padding-right: 12px; height: 54px; }
    .nav-right { display: none; }
    .nav-hamburger        { display: flex; }
    .nav-left img, .nav-left a img { width: 90px; }

    .about-hero { height: 320px; overflow: visible; }

    /* Nav is 56px here, so top:56px places content just below nav */
    .hero-content { top: 156px; padding: 0 14px 50px; }
    .hero-eyebrow { font-size: 8px; letter-spacing: 1.5px; margin-bottom: 6px; }
    .hero-title   { font-size: clamp(18px, 7vw, 26px); margin-bottom: 6px; }
    .hero-sub     { display: block; font-size: 11px; white-space: normal; }

    .about-wrapper        { padding: 30px 16px 40px; }
    .intro-row            { gap: 24px; margin-bottom: 40px; }
    .info-columns         { gap: 16px; margin-bottom: 40px; }
    .card-header          { padding: 20px 20px 16px; }
    .card-body            { padding: 18px 20px; }
    .card-details         { margin: 0 20px 20px; }
    .features-grid-new    { grid-template-columns: 1fr; gap: 12px; }
    .gallery-track        { 
        grid-template-columns: repeat(2, 1fr); 
        gap: 12px; 
    }
    .gallery-thumb:nth-child(4),
    .gallery-thumb:nth-child(5) { display: block; }
    /* 3rd image spans full width but constrained to 50% — creates centred middle row */
    .gallery-thumb:nth-child(3) { 
        grid-column: 1 / -1;
        max-width: calc(50% - 6px);
        margin: 0 auto;
    }
    .why-section          { padding: 36px 16px; }
    .why-section h2       { font-size: 22px; }
    .why-quote            { font-size: 14px; margin-bottom: 24px; }
    .mini-gallery-section { padding: 30px 0 20px; }
    .map-section h2       { font-size: 26px; }
    .map-frame-wrap iframe{ height: 260px; }
    .map-btn-new          { padding: 14px 28px; font-size: 14px; }
    .school-van-banner img{ min-height: 80px; object-fit: cover; }
}