/* ═══════════ CLASSIC FOR KIDS — DESIGN SYSTEM ═══════════
   Playful, colorful, kid-friendly design
   Colors: Extracted from Classic for Kids logo/materials
   Font: Kelson Sans (self-hosted) — matches all CU print materials
═══════════════════════════════════════════════════════════ */

html {
    scroll-behavior: smooth;
}
/* ─── Kelson Sans Font ─── */
@font-face {
    font-family: 'Kelson Sans';
    src: url('../fonts/Kelson Sans Light.otf') format('opentype');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Kelson Sans';
    src: url('../fonts/Kelson Sans Regular.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Kelson Sans';
    src: url('../fonts/Kelson Sans Bold.otf') format('opentype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

/* ─── Classic for Kids Brand Colors ───
   Extracted from the official logo tiles.
   Update these values if Paul provides exact hex codes.
*/
:root {
    /* ━━ Logo tile colors ━━ */
    --cfk-pink:        #E6007E;   /* C tile */
    --cfk-teal:        #00A99D;   /* L tile */
    --cfk-tan:         #C38D4F;   /* A tile, "for kids" connector */
    --cfk-red:         #E6332A;   /* S tile (top) */
    --cfk-green:       #8BC53F;   /* "for" text, bottom accents */
    --cfk-yellow:      #FFD100;   /* I tile */
    --cfk-blue:        #0088CE;   /* C tile (right) */
    --cfk-orange:      #F58220;   /* various accents */
    --cfk-cyan:        #00BCD4;   /* "kids" text */

    /* ━━ Derived / UI colors ━━ */
    --primary:         var(--cfk-blue);
    --primary-light:   #33a3e0;
    --secondary:       var(--cfk-teal);
    --secondary-light: #33C4B9;
    --accent-warm:     var(--cfk-orange);
    --accent-cool:     var(--cfk-pink);

    /* ━━ Neutrals ━━ */
    --navy:            #1a1a3e;
    --bg-cream:        #fef9f3;
    --bg-white:        #ffffff;
    --bg-light:        #fafaf7;
    --text-dark:       #2a2a4a;
    --text-body:       #4a4a6a;
    --text-muted:      #8888aa;

    /* ━━ Layout ━━ */
    --radius-sm: 12px;
    --radius-md: 20px;
    --radius-lg: 32px;
    --radius-xl: 48px;

    /* ━━ Typography ━━ */
    --font-display: 'Kelson Sans', 'Inter', 'Helvetica Neue', sans-serif;
    --font-body: 'Kelson Sans', 'Inter', 'Helvetica Neue', sans-serif;

    /* ━━ Spacing ━━ */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 2rem;
    --space-lg: 4rem;
    --space-xl: 6rem;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-weight: 400;
    color: var(--text-dark);
    background: var(--bg-cream);
    line-height: 1.7;
    font-size: 16px;
    overflow-x: hidden;
}

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

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

/* Per-letter coloring using brand tile colors (not smooth gradient).
   Each major letter group gets its own brand color via color-stop breaks. */
.text-gradient {
    background: linear-gradient(
        90deg,
        var(--cfk-orange) 0%, var(--cfk-orange) 12%,
        var(--cfk-pink) 12%, var(--cfk-pink) 25%,
        var(--cfk-teal) 25%, var(--cfk-teal) 37%,
        var(--cfk-green) 37%, var(--cfk-green) 50%,
        var(--cfk-yellow) 50%, var(--cfk-yellow) 62%,
        var(--cfk-blue) 62%, var(--cfk-blue) 75%,
        var(--cfk-red) 75%, var(--cfk-red) 87%,
        var(--cfk-cyan) 87%, var(--cfk-cyan) 100%
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-badge {
    display: inline-block;
    padding: 6px 18px;
    background: rgba(0, 169, 157, 0.1);
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--cfk-teal);
    margin-bottom: var(--space-sm);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: var(--space-md);
    color: var(--navy);
    letter-spacing: 0.02em;
}

.section-desc {
    font-size: 1.15rem;
    color: var(--text-body);
    max-width: 640px;
    margin: 0 auto var(--space-lg);
}

/* ═══════════ BUTTONS ═══════════ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: 100px;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    letter-spacing: 0.03em;
}

.btn-primary {
    background: linear-gradient(135deg, var(--cfk-blue), #006ba6);
    color: white;
    box-shadow: 0 4px 20px rgba(0, 136, 206, 0.35);
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 30px rgba(0, 136, 206, 0.45);
}

.btn-secondary {
    background: white;
    color: var(--cfk-teal);
    border: 2px solid rgba(0, 169, 157, 0.3);
}

.btn-secondary:hover {
    background: var(--bg-light);
    border-color: var(--cfk-teal);
}

.btn-outline-fun {
    background: transparent;
    color: var(--cfk-teal);
    border: 2px solid var(--cfk-teal);
    margin-top: var(--space-md);
}

.btn-outline-fun:hover {
    background: var(--cfk-teal);
    color: white;
}

.btn-youtube {
    background: #FF0000;
    color: white;
    font-size: 0.95rem;
}

.btn-youtube:hover {
    background: #cc0000;
    transform: translateY(-2px);
}

.btn-nav {
    background: var(--cfk-blue);
    color: white;
    padding: 10px 24px;
    font-size: 0.9rem;
}

.btn-nav:hover {
    background: #006ba6;
}

.btn-text-fun {
    color: var(--cfk-blue);
    font-weight: 700;
    text-decoration: none;
    padding: 0;
}

.btn-text-fun:hover {
    color: var(--cfk-teal);
}

.btn-large {
    padding: 18px 40px;
    font-size: 1.1rem;
}

/* ═══════════ HEADER ═══════════ */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 3px solid;
    border-image: linear-gradient(90deg,
        var(--cfk-pink),
        var(--cfk-orange),
        var(--cfk-yellow),
        var(--cfk-green),
        var(--cfk-teal),
        var(--cfk-blue)
    ) 1;
    padding: 0;
    box-shadow: 0 1px 8px rgba(26,26,62,0.05);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 72px;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    flex-shrink: 0;
}

.logo-img {
    height: 52px;
    width: 130px;
    object-fit: cover;
    object-position: center 42%;
    border-radius: 0;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 2px;
    align-items: center;
    margin: 0;
    padding: 0;
}

.nav-list .menu-item a {
    text-decoration: none;
    color: var(--navy);
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.92rem;
    padding: 8px 16px;
    border-radius: 100px;
    transition: all 0.25s ease;
    letter-spacing: 0.02em;
    white-space: nowrap;
    display: inline-block;
}

.nav-list .menu-item a:hover {
    color: var(--cfk-pink);
    background: rgba(230, 0, 126, 0.07);
}

.nav-list .menu-cta a.btn-cta {
    background: var(--cfk-green);
    color: #fff !important;
    padding: 10px 24px;
    border-radius: 100px;
    font-size: 0.88rem;
    box-shadow: 0 2px 12px rgba(0,150,57,0.18);
    margin-left: 8px;
}

.nav-list .menu-cta a.btn-cta:hover {
    background: #00a63d;
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(0,150,57,0.28);
}

/* ═══════════ HERO ═══════════ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    padding-top: 80px;
}

.hero-bg {
    position: absolute;
    inset: 0;
}

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

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg,
            rgba(26, 26, 62, 0.25) 0%,
            rgba(230, 0, 126, 0.08) 30%,
            rgba(26, 26, 62, 0.65) 100%);
}

.hero-shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.shape {
    position: absolute;
    font-size: 2.5rem;
    opacity: 0.2;
    animation: floatShape 6s ease-in-out infinite;
}

.shape-1 {
    top: 15%;
    left: 8%;
    animation-delay: 0s;
}

.shape-2 {
    top: 25%;
    right: 12%;
    animation-delay: 1.5s;
    font-size: 3rem;
}

.shape-3 {
    bottom: 30%;
    left: 15%;
    animation-delay: 3s;
}

.shape-4 {
    top: 40%;
    right: 25%;
    animation-delay: 0.8s;
    font-size: 2rem;
}

.shape-5 {
    bottom: 20%;
    right: 8%;
    animation-delay: 2.2s;
}

@keyframes floatShape {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(10deg);
    }
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 100px;
    font-size: 0.9rem;
    font-weight: 700;
    color: white;
    margin-bottom: var(--space-md);
    border: 1px solid rgba(255, 255, 255, 0.2);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.hero h1 {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    font-weight: 700;
    color: white;
    line-height: 1.2;
    margin-bottom: var(--space-md);
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
    letter-spacing: 0.02em;
}

.highlight-name {
    color: var(--cfk-yellow);
}

.hero-desc {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: var(--space-lg);
    line-height: 1.8;
}

.hero-actions {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-scroll {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
    z-index: 2;
}

.scroll-bounce {
    animation: bounce 2s infinite;
    font-size: 1.5rem;
}

@keyframes bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(8px);
    }
}

/* ═══════════ WHAT WE DO — Feature Cards ═══════════ */
.what-we-do {
    padding: var(--space-xl) 0;
    background: var(--bg-white);
    text-align: center;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
    margin-top: var(--space-md);
}

.feature-card {
    padding: 32px 24px;
    border-radius: var(--radius-md);
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}

/* Each card uses a different CFK brand color */
.feature-purple {
    background: rgba(230, 0, 126, 0.06);
    border-left: 4px solid var(--cfk-pink);
}

.feature-teal {
    background: rgba(0, 169, 157, 0.06);
    border-left: 4px solid var(--cfk-teal);
}

.feature-orange {
    background: rgba(245, 130, 32, 0.06);
    border-left: 4px solid var(--cfk-orange);
}

.feature-pink {
    background: rgba(139, 197, 63, 0.06);
    border-left: 4px solid var(--cfk-green);
}

.feature-emoji {
    font-size: 3rem;
    margin-bottom: var(--space-sm);
}

.feature-card h3 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--navy);
    letter-spacing: 0.02em;
}

.feature-card p {
    color: var(--text-body);
    font-size: 0.95rem;
}

/* ═══════════ IMPACT / STATS ═══════════ */
.impact {
    padding: var(--space-lg) 0;
    background: linear-gradient(135deg, var(--cfk-pink), var(--cfk-orange), var(--cfk-teal));
}

.impact-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    text-align: center;
}

.impact-number {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    color: white;
    line-height: 1;
}

.impact-label {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 700;
    margin-top: 8px;
    letter-spacing: 0.02em;
}

/* ═══════════ CONCERTS ═══════════ */
.concerts {
    padding: var(--space-xl) 0;
    background: var(--bg-cream);
    text-align: center;
}

.concerts-grid {
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 800px;
    margin: 0 auto var(--space-md);
}

.concert-card {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px 28px;
    background: white;
    border-radius: var(--radius-md);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
    text-align: left;
    transition: transform 0.2s;
}

.concert-card:hover {
    transform: translateX(4px);
}

.concert-date {
    min-width: 60px;
    text-align: center;
    background: var(--cfk-blue);
    color: white;
    border-radius: var(--radius-sm);
    padding: 12px 8px;
}

.concert-date .day {
    display: block;
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1;
}

.concert-date .month {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    opacity: 0.8;
}

.concert-info {
    flex: 1;
}

.concert-info h3 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 4px;
    letter-spacing: 0.02em;
}

.concert-meta {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.concert-theme {
    font-size: 0.85rem;
    color: var(--cfk-pink);
    font-style: italic;
    font-weight: 700;
    margin-top: 4px;
}

.concert-badge {
    padding: 8px 18px;
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 700;
    text-decoration: none;
    white-space: nowrap;
    letter-spacing: 0.03em;
}

.badge-open {
    background: var(--cfk-green);
    color: white;
}

.badge-full {
    background: #fee2e2;
    color: #991b1b;
}

/* ═══════════ VIDEO ═══════════ */
.video-section {
    padding: var(--space-xl) 0;
    background: var(--bg-white);
}

.video-layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: var(--space-lg);
    align-items: center;
}

.video-text h2 {
    text-align: left;
}

.video-text p {
    color: var(--text-body);
    font-size: 1.1rem;
    margin-bottom: var(--space-md);
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    border-radius: var(--radius-md);
    overflow: hidden;
    background: var(--navy);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* ═══════════ ENROLL FORM ═══════════ */
.enroll {
    padding: var(--space-xl) 0;
    background: linear-gradient(135deg,
        rgba(230, 0, 126, 0.06),
        rgba(255, 209, 0, 0.08),
        rgba(0, 169, 157, 0.06));
}

.enroll-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.06);
    text-align: center;
}

.enroll-form {
    max-width: 640px;
    margin: var(--space-md) auto 0;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 12px;
}

.enroll-form input,
.enroll-form select {
    width: 100%;
    padding: 14px 20px;
    border: 2px solid #e5e7eb;
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: border-color 0.2s;
    background: #fafafa;
}

.enroll-form input:focus,
.enroll-form select:focus {
    outline: none;
    border-color: var(--cfk-pink);
    background: white;
}

/* ═══════════ RESOURCES ═══════════ */
.resources {
    padding: var(--space-xl) 0;
    background: var(--bg-white);
    text-align: center;
}

.resources-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.resource-card {
    padding: 32px 24px;
    background: var(--bg-cream);
    border-radius: var(--radius-md);
    text-align: center;
    transition: transform 0.3s;
}

.resource-card:hover {
    transform: translateY(-4px);
}

.resource-icon {
    font-size: 2.5rem;
    margin-bottom: 12px;
}

.resource-card h3 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 8px;
    letter-spacing: 0.02em;
}

.resource-card p {
    color: var(--text-body);
    font-size: 0.9rem;
    margin-bottom: 12px;
}

/* ═══════════ PARTNERS ═══════════ */
.partners {
    padding: var(--space-xl) 0;
    background: var(--bg-cream);
    text-align: center;
}

.partners-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-bottom: var(--space-md);
}

.partner-logo {
    width: 120px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    filter: grayscale(0.3);
    transition: filter 0.3s;
}

.partner-logo:hover {
    filter: grayscale(0);
}

.partner-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.placeholder-logo {
    background: #e5e7eb;
    border-radius: var(--radius-sm);
    color: var(--text-muted);
    font-size: 0.8rem;
    font-weight: 700;
}

.partners-cta-text {
    color: var(--text-body);
    margin-bottom: var(--space-sm);
}

/* ═══════════ ALSO FROM CU ═══════════ */
.also-section {
    padding: var(--space-xl) 0;
    background: var(--bg-white);
    text-align: center;
}

.also-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    max-width: 700px;
    margin: 0 auto;
}

.also-card {
    padding: 32px 24px;
    border-radius: var(--radius-md);
    text-decoration: none;
    transition: transform 0.3s, box-shadow 0.3s;
}

.also-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

.also-classic {
    background: var(--navy);
    color: white;
}

.also-babies {
    background: linear-gradient(135deg, rgba(245, 130, 32, 0.1), rgba(255, 209, 0, 0.1));
    color: var(--navy);
}

.also-emoji {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 12px;
}

.also-card h3 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 4px;
    letter-spacing: 0.02em;
}

.also-card p {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* ═══════════ FOOTER ═══════════ */
.site-footer {
    background: var(--navy);
    color: rgba(255, 255, 255, 0.8);
    padding-top: var(--space-lg);
}

.footer-inner {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: var(--space-lg);
    padding-bottom: var(--space-lg);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo-text {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    display: block;
    margin-bottom: 8px;
    letter-spacing: 0.03em;
}

.footer-logo-text em {
    color: var(--cfk-green);
    font-style: normal;
}

.footer-brand p {
    font-size: 0.9rem;
    margin-bottom: 16px;
}

.footer-social {
    display: flex;
    gap: 12px;
    font-size: 1.3rem;
}

.footer-social a {
    text-decoration: none;
    transition: opacity 0.2s;
}

.footer-social a:hover {
    opacity: 0.7;
}

.footer-links h4 {
    font-family: var(--font-display);
    font-weight: 700;
    color: white;
    margin-bottom: 16px;
    font-size: 1rem;
    letter-spacing: 0.03em;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s;
}

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

.footer-bottom {
    text-align: center;
    padding: 20px 0;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.4);
}

.footer-bottom a {
    color: var(--cfk-cyan);
    text-decoration: none;
}

/* ═══════════ RESPONSIVE ═══════════ */
@media (max-width: 768px) {

    .features-grid,
    .resources-grid {
        grid-template-columns: 1fr;
    }

    .impact-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .video-layout {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .footer-inner {
        grid-template-columns: 1fr;
    }

    .also-grid {
        grid-template-columns: 1fr;
    }
}
/* ═══════════ MOBILE MENU ═══════════ */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 200;
}

.hamburger-line {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--navy);
    margin: 5px 0;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.mobile-menu-toggle[aria-expanded="true"] .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}
.mobile-menu-toggle[aria-expanded="true"] .hamburger-line:nth-child(2) {
    opacity: 0;
}
.mobile-menu-toggle[aria-expanded="true"] .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ═══════════ HEADER SCROLL STATE ═══════════ */
.site-header.scrolled {
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
    padding: 6px 0;
}

/* ═══════════ SCROLL ANIMATIONS ═══════════ */
[data-animate] {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-animate].is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger children */
.features-grid [data-animate]:nth-child(2) { transition-delay: 0.1s; }
.features-grid [data-animate]:nth-child(3) { transition-delay: 0.2s; }
.features-grid [data-animate]:nth-child(4) { transition-delay: 0.3s; }

.concerts-grid [data-animate]:nth-child(2) { transition-delay: 0.15s; }
.concerts-grid [data-animate]:nth-child(3) { transition-delay: 0.3s; }

/* ═══════════ FORM FEEDBACK ═══════════ */
.form-message {
    margin-top: 16px;
    padding: 12px 20px;
    border-radius: var(--radius-sm);
    font-weight: 700;
    display: none;
}

.form-message.success {
    display: block;
    background: rgba(139, 197, 63, 0.12);
    color: #2d5a10;
}

.form-message.error {
    display: block;
    background: rgba(230, 0, 126, 0.08);
    color: #991b1b;
}

/* ═══════════ WP OVERRIDES ═══════════ */
/* Remove WP admin bar affecting fixed header */
.admin-bar .site-header {
    top: 32px;
}

@media (max-width: 782px) {
    .admin-bar .site-header {
        top: 46px;
    }
}

/* CF7 form styling to match our design */
.wpcf7 input,
.wpcf7 select,
.wpcf7 textarea {
    width: 100%;
    padding: 14px 20px;
    border: 2px solid #e5e7eb;
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: border-color 0.2s;
    background: #fafafa;
}

.wpcf7 input:focus,
.wpcf7 select:focus,
.wpcf7 textarea:focus {
    outline: none;
    border-color: var(--cfk-blue);
    background: white;
}

.wpcf7 .wpcf7-submit {
    background: linear-gradient(135deg, var(--cfk-blue), #006ba6);
    color: white;
    border: none;
    padding: 18px 40px;
    border-radius: 100px;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 136, 206, 0.35);
}

.wpcf7 .wpcf7-submit:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 30px rgba(0, 136, 206, 0.45);
}

/* ═══════════ MOBILE NAV RESPONSIVE ═══════════ */
@media (max-width: 900px) {
    .mobile-menu-toggle {
        display: block;
    }

    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        background: white;
        box-shadow: -4px 0 30px rgba(0,0,0,0.1);
        padding: 80px 32px 32px;
        transition: right 0.35s ease;
        z-index: 150;
        overflow-y: auto;
    }

    .main-nav.is-open {
        right: 0;
    }

    .nav-list {
        flex-direction: column;
        gap: 4px;
    }

    .nav-link {
        display: block;
        padding: 12px 16px;
        font-size: 1.1rem;
    }

    .nav-cta {
        margin-top: 16px;
    }

    .nav-cta .btn-nav {
        display: block;
        text-align: center;
    }

    /* Overlay behind mobile nav */
    .nav-overlay {
        position: fixed;
        inset: 0;
        background: rgba(26, 26, 62, 0.4);
        z-index: 140;
        display: none;
    }
    .nav-overlay.is-open {
        display: block;
    }
}

/* ═══════════ INNER PAGES ═══════════ */
.page-main {
    padding: calc(80px + var(--space-lg)) 0 var(--space-xl);
    min-height: 60vh;
}

.page-article h1 {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 700;
    color: var(--navy);
    margin-bottom: var(--space-md);
    letter-spacing: 0.02em;
}

.page-content {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-body);
}

.page-content h2,
.page-content h3 {
    font-family: var(--font-display);
    color: var(--navy);
    margin-top: var(--space-md);
    margin-bottom: var(--space-sm);
    letter-spacing: 0.02em;
}

.page-content img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius-md);
    margin: var(--space-md) 0;
}

.page-content a {
    color: var(--cfk-blue);
    text-decoration: underline;
    text-decoration-color: rgba(0, 136, 206, 0.3);
    transition: text-decoration-color 0.2s;
}

.page-content a:hover {
    text-decoration-color: var(--cfk-blue);
}

/* Posts */
.post-card {
    padding: var(--space-md) 0;
    border-bottom: 1px solid #e5e7eb;
}

.post-card h2 a {
    color: var(--navy);
    text-decoration: none;
    font-family: var(--font-display);
    letter-spacing: 0.02em;
}

.post-card h2 a:hover {
    color: var(--cfk-blue);
}

.archive-title {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--navy);
    margin-bottom: var(--space-lg);
    letter-spacing: 0.02em;
}

/* ═══════════ SINGLE MEC EVENT ═══════════ */
.single-event-hero {
    padding: 120px 0 var(--space-lg);
    background: var(--bg-cream);
}

.back-link {
    display: inline-block;
    color: var(--cfk-teal);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: var(--space-md);
    transition: color 0.2s;
}

.back-link:hover {
    color: var(--cfk-blue);
}

.event-header {
    display: flex;
    gap: 24px;
    align-items: flex-start;
}

.event-date-block {
    min-width: 80px;
    text-align: center;
    background: var(--cfk-blue);
    color: white;
    border-radius: var(--radius-sm);
    padding: 16px 12px;
    flex-shrink: 0;
}

.event-date-block .day {
    display: block;
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
}

.event-date-block .month {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    opacity: 0.8;
}

.event-title-area h1 {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 700;
    color: var(--navy);
    line-height: 1.2;
    margin-bottom: 12px;
}

.event-meta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    font-size: 0.95rem;
    color: var(--text-body);
}

.event-address {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-top: 8px;
}

.single-event-content {
    padding: var(--space-lg) 0 var(--space-xl);
    background: var(--bg-white);
}

.event-body {
    max-width: 800px;
}

.event-description {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-body);
}

.event-description p {
    margin-bottom: var(--space-sm);
}

.event-featured-image {
    margin-top: var(--space-md);
    border-radius: var(--radius-md);
    overflow: hidden;
}

.event-featured-image img {
    width: 100%;
    height: auto;
    display: block;
}

.event-booking-section {
    margin-top: var(--space-lg);
    padding: var(--space-lg);
    background: var(--bg-cream);
    border-radius: var(--radius-lg);
    border: 2px solid rgba(0, 136, 206, 0.15);
}

.event-booking-section h2 {
    color: var(--navy);
    font-size: 1.5rem;
    margin-bottom: var(--space-md);
}

/* ═══════════ MEC BOOKING FORM OVERRIDES ═══════════ */
.mec-events-meta-group-booking .mec-booking button,
.mec-booking .mec-book-form-btn,
.mec-booking .mec-btn-primary {
    background: linear-gradient(135deg, var(--cfk-blue), #006ba6) !important;
    border: none !important;
    border-radius: 100px !important;
    padding: 14px 32px !important;
    font-family: var(--font-display) !important;
    font-weight: 700 !important;
    color: white !important;
    cursor: pointer;
    transition: all 0.3s ease;
}

.mec-booking .mec-book-form-btn:hover,
.mec-booking .mec-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 136, 206, 0.4);
}

.mec-booking input[type="text"],
.mec-booking input[type="email"],
.mec-booking input[type="tel"],
.mec-booking select {
    border: 2px solid #e5e7eb !important;
    border-radius: var(--radius-sm) !important;
    padding: 12px 16px !important;
    font-family: var(--font-body) !important;
    font-size: 0.95rem !important;
    background: #fafafa !important;
    transition: border-color 0.2s;
}

.mec-booking input:focus,
.mec-booking select:focus {
    border-color: var(--cfk-blue) !important;
    background: white !important;
    outline: none !important;
}

/* ═══════════ CF7 FORM OVERRIDES ═══════════ */
.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 input[type="tel"],
.wpcf7 textarea,
.wpcf7 select {
    width: 100%;
    padding: 14px 20px;
    border: 2px solid #e5e7eb;
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 0.95rem;
    background: #fafafa;
    transition: border-color 0.2s;
}

.wpcf7 input:focus,
.wpcf7 textarea:focus,
.wpcf7 select:focus {
    outline: none;
    border-color: var(--cfk-pink);
    background: white;
}

.wpcf7 input[type="submit"],
.wpcf7 .wpcf7-submit {
    background: linear-gradient(135deg, var(--cfk-blue), #006ba6);
    color: white;
    border: none;
    border-radius: 100px;
    padding: 16px 36px;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: var(--space-sm);
}

.wpcf7 input[type="submit"]:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 136, 206, 0.4);
}

.wpcf7-response-output {
    border-radius: var(--radius-sm) !important;
    padding: 12px 20px !important;
    margin-top: var(--space-sm) !important;
    font-family: var(--font-body);
}

.wpcf7-mail-sent-ok {
    background: rgba(139, 197, 63, 0.1);
    border-color: var(--cfk-green) !important;
    color: #2d6a00;
}

/* ═══════════ KATA/ELEMENTOR NEUTRALIZATION ═══════════ */
.kata-header-wrap,
.kata-footer-wrap,
.kata-plus-entry-content,
[class*="elementor-widget"]:not(.elementor-widget-shortcode) {
    all: unset;
}

/* Override Kata inline styles that get injected */
body .kata-header-wrap .elementor-container .elementor-widget-wrap > .elementor-widget {
    display: initial !important;
    width: initial !important;
}

/* Hide Kata frontend CSS injection */
#kata-plus-dynamic-styles-css,
#kata-plus-theme-styles-css,
#grid-css,
#kata-plus-animations-css,
#kata-plus-sticky-box-css {
    display: none;
}

/* ═══════════ SINGLE EVENT RESPONSIVE ═══════════ */
@media (max-width: 768px) {
    .event-header {
        flex-direction: column;
    }

    .event-date-block {
        display: flex;
        gap: 8px;
        align-items: center;
        min-width: auto;
        padding: 10px 20px;
    }

    .event-meta-row {
        flex-direction: column;
        gap: 6px;
    }

    .event-booking-section {
        padding: var(--space-md);
    }
}
