:root {
    /* Brand Colors */
    --red: #8B0000;
    --dark-red: #5e0000;
    --accent: #D4AF37;

    /* Base Variables (Dark Mode Default) */
    --bg-body: #0a0a0a;
    --bg-surface: #121212;
    --bg-nav: rgba(10, 10, 10, 0.95);

    --text-main: #ffffff;
    --text-muted: #b0b0b0;

    --border-color: rgba(139, 0, 0, 0.3);
    --border-light: rgba(255, 255, 255, 0.15);

    --card-bg: #0a0a0a;
    --input-bg: #121212;

    --btn-outline-border: #ffffff;
    --btn-outline-text: #ffffff;
    --btn-outline-hover-bg: #ffffff;
    --btn-outline-hover-text: #0a0a0a;
}

[data-theme="light"] {
    --bg-body: #f4f4f4;
    --bg-surface: #ffffff;
    --bg-nav: rgba(255, 255, 255, 0.95);

    --text-main: #1a1a1a;
    --text-muted: #555555;

    --border-light: rgba(0, 0, 0, 0.15);

    --card-bg: #ffffff;
    --input-bg: #ffffff;

    /* Invert outline buttons for light mode */
    --btn-outline-border: #1a1a1a;
    --btn-outline-text: #1a1a1a;
    --btn-outline-hover-bg: #1a1a1a;
    --btn-outline-hover-text: #ffffff;
}

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

body {
    font-family: 'Open Sans', sans-serif;
    color: var(--text-main);
    background: var(--bg-body);
    overflow-x: hidden;
    transition: background-color 0.3s, color 0.3s;
}

h1,
h2,
h3,
h4,
h5 {
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-main);
}

/* ── NAV ── */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: var(--bg-nav);
    backdrop-filter: blur(10px);
    border-bottom: 2px solid var(--red);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 2rem;
    transition: background-color 0.3s;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.nav-logo .wolf-icon {
    width: 45px;
    height: 45px;
    object-fit: contain;
}

.nav-logo span {
    font-family: 'Oswald', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--red);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-links a {
    color: var(--text-main);
    text-decoration: none;
    font-family: 'Oswald', sans-serif;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: color 0.3s;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--red);
    transition: width 0.3s;
}

.nav-links a:hover {
    color: var(--red);
}

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

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
}

.hamburger span {
    width: 28px;
    height: 3px;
    background: var(--text-main);
    border-radius: 4px;
    transition: 0.3s;
    z-index: 1000;
}

/* ── UTILITIES ── */
.text-center {
    text-align: center;
}

.mb-1 {
    margin-bottom: 0.5rem;
}

.mb-2 {
    margin-bottom: 1rem;
}

.mb-3 {
    margin-bottom: 1.5rem;
}

.calendar-description {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* ── HERO SECTION ── */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    background:
        radial-gradient(ellipse at 30% 50%, rgba(139, 0, 0, 0.25) 0%, transparent 60%),
        radial-gradient(ellipse at 70% 30%, rgba(139, 0, 0, 0.1) 0%, transparent 50%),
        linear-gradient(180deg, var(--bg-body) 0%, var(--bg-surface) 100%);
    overflow: hidden;
    margin-top: 0;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0.5;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 2rem;
    max-width: 900px;
    margin-top: 60px;
}

.hero-wolf-emblem {
    width: 140px;
    height: 140px;
    margin: 0 auto 2rem;
    animation: fadeInDown 1s ease-out;
    object-fit: contain;
}

.hero h1 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 0.5rem;
    animation: fadeInUp 0.8s ease-out;
    color: var(--text-main);
}

.hero h1 .red {
    color: var(--red);
}

.hero .tagline {
    font-family: 'Oswald', sans-serif;
    font-size: clamp(1rem, 2.5vw, 1.5rem);
    color: var(--accent);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.hero p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto 2rem;
    animation: fadeInUp 1s ease-out 0.4s both;
}

.hero .cta-group {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.btn {
    display: inline-block;
    padding: 0.9rem 2.2rem;
    font-family: 'Oswald', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    text-decoration: none;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-primary {
    background: var(--red);
    color: #ffffff;
    /* Always white on red */
    border-color: var(--red);
}

.btn-primary:hover {
    background: transparent;
    color: var(--red);
}

.btn-outline {
    background: transparent;
    color: var(--btn-outline-text);
    border-color: var(--btn-outline-border);
}

.btn-outline:hover {
    background: var(--btn-outline-hover-bg);
    color: var(--btn-outline-hover-text);
}

/* ── SECTION GENERAL ── */
section {
    padding: 5rem 2rem;
    padding-top: 7rem;
}

.section-title {
    text-align: center;
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 0.5rem;
    color: var(--text-main);
}

.section-subtitle {
    text-align: center;
    color: var(--red);
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 0.85rem;
    margin-bottom: 3rem;
}

.divider {
    width: 80px;
    height: 3px;
    background: var(--red);
    margin: 1rem auto 3rem;
}

/* ── PROGRAMS ── */
.programs {
    background: var(--bg-surface);
    min-height: 90vh;
}

.programs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.program-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.4s;
    position: relative;
    overflow: hidden;
}

.program-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--red);
    transform: scaleX(0);
    transition: transform 0.4s;
}

.program-card:hover::before {
    transform: scaleX(1);
}

.program-card:hover {
    transform: translateY(-5px);
    border-color: var(--red);
    box-shadow: 0 10px 40px rgba(139, 0, 0, 0.15);
}

.program-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.program-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--red);
}

.program-card p {
    color: var(--text-muted);
    line-height: 1.7;
    font-size: 0.95rem;
}

/* ── ABOUT / MISSION ── */
.about {
    background: var(--bg-body);
    min-height: 90vh;
}

.about-container {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text p {
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.about-text .pack-quote {
    font-family: 'Oswald', sans-serif;
    font-size: 1.6rem;
    color: var(--red);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    border-left: 4px solid var(--red);
    padding-left: 1.5rem;
    margin: 2rem 0;
}

.about-image-area {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-image-area .emblem-large {
    width: 320px;
    height: 320px;
    opacity: 0.9;
    object-fit: contain;
}

.about-stats {
    position: absolute;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.stat-box {
    background: rgba(139, 0, 0, 0.15);
    /* Brand color - okay to keep fixed */
    border: 1px solid var(--border-color);
    padding: 1.5rem;
    text-align: center;
    backdrop-filter: blur(5px);
}

.stat-box .number {
    font-family: 'Oswald', sans-serif;
    font-size: 2.2rem;
    color: var(--red);
    font-weight: 700;
}

.stat-box .label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    margin-top: 0.25rem;
}

/* ── KIDS ── */
.kids {
    background: var(--bg-surface);
    position: relative;
    min-height: 90vh;
}

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

.kids-content p {
    color: var(--text-muted);
    line-height: 1.8;
    font-size: 1.05rem;
    margin-bottom: 2rem;
}

.kids-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.kids-feature {
    padding: 1.5rem;
    border: 1px solid var(--border-color);
    background: rgba(0, 0, 0, 0.4);
    /* Keep transparent dark overlay for contrast on image bg */
}

/* In light mode, kids feature might need adjustment if background is white? 
   Checking .kids background: var(--bg-surface).
   If light mode, bg is white. White text on white? 
   Wait, .kids-feature might need separate styling. 
   I'll make it semantic manually: var(--card-bg) but with opacity?
   Or just var(--card-bg).
*/
.kids-feature {
    padding: 1.5rem;
    border: 1px solid var(--border-color);
    background: var(--card-bg);
    /* This works better for adapting */
}

.kids-feature h4 {
    color: var(--accent);
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.kids-feature p {
    font-size: 0.9rem;
    margin-bottom: 0;
    color: var(--text-muted);
    /* Fixed from text-secondary which might not exist */
}

/* ── CLASSES PAGE ── */
.classes-intro {
    background: var(--bg-surface);
    padding-top: 7rem;
    padding-bottom: 3rem;
    text-align: center;
}

.classes-intro p {
    max-width: 800px;
    margin: 0 auto;
    color: var(--text-muted);
    font-size: 1.1rem;
    line-height: 1.7;
}

.homeschool {
    background: var(--bg-body);
    min-height: 50vh;
    padding: 5rem 2rem;
}

.adults {
    background: var(--bg-surface);
    min-height: 50vh;
    padding: 5rem 2rem;
}

/* ── COACH ── */
.coach {
    background: var(--bg-body);
    min-height: 90vh;
}

.coaches-wrapper {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}

.coach-container {
    max-width: 550px;
    text-align: center;
    flex: 1;
    min-width: 300px;
    background: var(--card-bg);
    padding: 2rem;
    border: 1px solid var(--border-light);
}

.coach-avatar {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    border: 4px solid var(--red);
    margin: 0 auto 2rem;
    background: var(--bg-surface);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3.5rem;
}

.coach-container h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    color: var(--text-main);
}

.coach-container .credentials {
    color: var(--red);
    font-family: 'Oswald', sans-serif;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1.5rem;
}

.coach-container p {
    color: var(--text-muted);
    line-height: 1.8;
    max-width: 650px;
    margin: 0 auto;
}

.belt-list {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.belt-item {
    padding: 0.5rem 1rem;
    border: 1px solid rgba(139, 0, 0, 0.4);
    background: rgba(139, 0, 0, 0.08);
    /* Transparent Red */
    font-size: 0.8rem;
    color: var(--text-muted);
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

/* ── RULES ── */
.rules {
    background:
        linear-gradient(135deg, rgba(139, 0, 0, 0.1) 0%, transparent 50%),
        var(--bg-surface);
    min-height: 90vh;
}

.rules-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.rule-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    padding: 1.5rem 2rem;
    /* Use transparent dark for contrast in dark mode, light in light mode? */
    background: var(--card-bg);
    border-left: 4px solid var(--red);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.rule-number {
    font-family: 'Oswald', sans-serif;
    font-size: 2.5rem;
    color: var(--red);
    font-weight: 700;
    line-height: 1;
    min-width: 40px;
}

.rule-item h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--text-main);
}

.rule-item p {
    color: var(--text-muted);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* ── CONTACT ── */
.contact {
    background: var(--bg-body);
    min-height: 90vh;
}

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

.contact-container>p {
    color: var(--text-muted);
    margin-bottom: 2rem;
    font-size: 1.05rem;
}

.contact-info {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2.5rem;
}

.contact-item {
    padding: 1.5rem 2rem;
    border: 1px solid var(--border-color);
    background: var(--card-bg);
    min-width: 220px;
}

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

.contact-item h4 {
    font-size: 0.85rem;
    color: var(--red);
    margin-bottom: 0.3rem;
    letter-spacing: 0.1em;
}

.contact-item p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 500px;
    margin: 0 auto;
}

.contact-form input,
.contact-form textarea {
    padding: 0.9rem 1.2rem;
    background: var(--input-bg);
    border: 1px solid var(--border-light);
    color: var(--text-main);
    font-family: 'Open Sans', sans-serif;
    font-size: 0.95rem;
    transition: border-color 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--red);
    background: var(--bg-surface);
}

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

/* ── FOOTER ── */
footer {
    background: var(--bg-surface);
    border-top: 2px solid var(--red);
    padding: 2rem;
    text-align: center;
}

footer p {
    color: var(--text-muted);
    font-size: 0.85rem;
}

footer .footer-tagline {
    font-family: 'Oswald', sans-serif;
    color: var(--red);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 0.5rem;
}

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

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ── CALENDAR EVENTS ── */
.google-calendar-container {
    position: relative;
    padding-bottom: 75%;
    /* Aspect ratio */
    height: 0;
    overflow: hidden;
    max-width: 100%;
    border: 1px solid var(--red);
    border-radius: 8px;
    background: var(--bg-surface);
    /* Ensure calendar is readable */
}

.google-calendar-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* ── THEME TOGGLE ── */
.btn-theme-toggle {
    background: var(--bg-surface);
    border: 1px solid var(--border-light);
    color: var(--text-main);
    font-size: 1.4rem;
    cursor: pointer;
    vertical-align: middle;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.btn-theme-toggle:hover {
    color: var(--accent);
    border-color: var(--accent);
    transform: scale(1.1);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
    /* Gold glow */
}

/* ── RESPONSIVE: TABLET ── */
@media (min-width: 768px) and (max-width: 1024px) {
    .nav-links {
        gap: 1.2rem;
    }

    .nav-links a {
        font-size: 0.85rem;
    }

    .hero h1 {
        font-size: 3.5rem;
    }

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

    .about-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .about-image-area {
        margin-bottom: 2rem;
    }

    .google-calendar-container {
        padding-bottom: 600px;
        height: 600px;
    }
}

@media (min-width: 1025px) {
    .google-calendar-container {
        padding-bottom: 600px;
        /* Fixed height on larger screens */
        height: 600px;
    }
}


/* ── RESPONSIVE: MOBILE ── */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .nav-links.show {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--bg-nav);
        padding: 2rem;
        border-bottom: 2px solid var(--red);
    }

    .nav-links.show a {
        color: var(--text-main);
    }

    .about-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-image-area {
        display: none;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    section {
        padding: 3.5rem 1.5rem;
        padding-top: 6rem;
    }

    .coach-avatar {
        width: 120px;
        height: 120px;
        font-size: 2.5rem;
    }

    .event-card {
        flex-direction: column;
        align-items: flex-start;
    }

    .event-date-box {
        flex-direction: row;
        gap: 0.5rem;
        width: 100%;
        justify-content: flex-start;
        padding: 0.5rem;
        border: none;
        background: transparent;
    }

    .event-date-box .day {
        font-size: 1.2rem;
    }
}

.section-subtitle {
    text-align: center;
    color: var(--red);
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 0.85rem;
    margin-bottom: 3rem;
}

.divider {
    width: 80px;
    height: 3px;
    background: var(--red);
    margin: 1rem auto 3rem;
}

/* ── PROGRAMS ── */
.programs {
    background: var(--dark-bg);
    min-height: 90vh;
}

.programs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.program-card {
    background: var(--black);
    border: 1px solid rgba(139, 0, 0, 0.3);
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.4s;
    position: relative;
    overflow: hidden;
}

.program-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--red);
    transform: scaleX(0);
    transition: transform 0.4s;
}

.program-card:hover::before {
    transform: scaleX(1);
}

.program-card:hover {
    transform: translateY(-5px);
    border-color: var(--red);
    box-shadow: 0 10px 40px rgba(139, 0, 0, 0.15);
}

.program-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.program-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--red);
}

.program-card p {
    color: var(--gray);
    line-height: 1.7;
    font-size: 0.95rem;
}

/* ── ABOUT / MISSION ── */
.about {
    background: var(--black);
    min-height: 90vh;
}

.about-container {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text p {
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.about-text .pack-quote {
    font-family: 'Oswald', sans-serif;
    font-size: 1.6rem;
    color: var(--red);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    border-left: 4px solid var(--red);
    padding-left: 1.5rem;
    margin: 2rem 0;
}

.about-image-area {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-image-area .emblem-large {
    width: 320px;
    height: 320px;
    opacity: 0.9;
    object-fit: contain;
}

.about-stats {
    position: absolute;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.stat-box {
    background: rgba(139, 0, 0, 0.15);
    border: 1px solid rgba(139, 0, 0, 0.3);
    padding: 1.5rem;
    text-align: center;
    backdrop-filter: blur(5px);
}

.stat-box .number {
    font-family: 'Oswald', sans-serif;
    font-size: 2.2rem;
    color: var(--red);
    font-weight: 700;
}

.stat-box .label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--gray);
    margin-top: 0.25rem;
}

/* ── KIDS ── */
.kids {
    background: var(--dark-bg);
    position: relative;
    min-height: 90vh;
}

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

.kids-content p {
    color: var(--gray);
    line-height: 1.8;
    font-size: 1.05rem;
    margin-bottom: 2rem;
}

.kids-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.kids-feature {
    padding: 1.5rem;
    border: 1px solid rgba(139, 0, 0, 0.2);
    background: rgba(0, 0, 0, 0.4);
}

.kids-feature h4 {
    color: var(--accent);
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.kids-feature p {
    font-size: 0.9rem;
    margin-bottom: 0;
}

/* ── COACH ── */
.coach {
    background: var(--black);
    min-height: 90vh;
}

.coaches-wrapper {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}

.coach-container {
    max-width: 550px;
    text-align: center;
    flex: 1;
    min-width: 300px;
    background: rgba(255, 255, 255, 0.02);
    padding: 2rem;
    border: 1px solid rgba(139, 0, 0, 0.1);
}

.coach-avatar {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    border: 4px solid var(--red);
    margin: 0 auto 2rem;
    background: var(--dark-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3.5rem;
}

.coach-container h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.coach-container .credentials {
    color: var(--red);
    font-family: 'Oswald', sans-serif;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1.5rem;
}

.coach-container p {
    color: var(--gray);
    line-height: 1.8;
    max-width: 650px;
    margin: 0 auto;
}

.belt-list {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.belt-item {
    padding: 0.5rem 1rem;
    border: 1px solid rgba(139, 0, 0, 0.4);
    background: rgba(139, 0, 0, 0.08);
    font-size: 0.8rem;
    color: var(--gray);
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

/* ── RULES ── */
.rules {
    background:
        linear-gradient(135deg, rgba(139, 0, 0, 0.1) 0%, transparent 50%),
        var(--dark-bg);
    min-height: 90vh;
}

.rules-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.rule-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    padding: 1.5rem 2rem;
    background: rgba(0, 0, 0, 0.5);
    border-left: 4px solid var(--red);
}

.rule-number {
    font-family: 'Oswald', sans-serif;
    font-size: 2.5rem;
    color: var(--red);
    font-weight: 700;
    line-height: 1;
    min-width: 40px;
}

.rule-item h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.rule-item p {
    color: var(--gray);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* ── CONTACT ── */
.contact {
    background: var(--black);
    min-height: 90vh;
}

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

.contact-container>p {
    color: var(--gray);
    margin-bottom: 2rem;
    font-size: 1.05rem;
}

.contact-info {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2.5rem;
}

.contact-item {
    padding: 1.5rem 2rem;
    border: 1px solid rgba(139, 0, 0, 0.3);
    background: rgba(139, 0, 0, 0.05);
    min-width: 220px;
}

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

.contact-item h4 {
    font-size: 0.85rem;
    color: var(--red);
    margin-bottom: 0.3rem;
    letter-spacing: 0.1em;
}

.contact-item p {
    color: var(--gray);
    font-size: 0.95rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 500px;
    margin: 0 auto;
}

.contact-form input,
.contact-form textarea {
    padding: 0.9rem 1.2rem;
    background: var(--dark-bg);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: var(--white);
    font-family: 'Open Sans', sans-serif;
    font-size: 0.95rem;
    transition: border-color 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--red);
}

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

/* ── FOOTER ── */
footer {
    background: var(--dark-bg);
    border-top: 2px solid var(--red);
    padding: 2rem;
    text-align: center;
}

footer p {
    color: #666;
    font-size: 0.85rem;
}

footer .footer-tagline {
    font-family: 'Oswald', sans-serif;
    color: var(--red);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 0.5rem;
}

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

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ── CALENDAR EVENTS ── */
.google-calendar-container {
    position: relative;
    padding-bottom: 75%;
    /* Aspect ratio */
    height: 0;
    overflow: hidden;
    max-width: 100%;
    border: 1px solid var(--red);
    border-radius: 8px;
    background: var(--white);
    /* Ensure calendar is readable */
}

.google-calendar-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

@media (min-width: 768px) {
    .google-calendar-container {
        padding-bottom: 600px;
        /* Fixed height on larger screens */
        height: 600px;
    }
}


/* ── RESPONSIVE ── */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .nav-links.show {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(10, 10, 10, 0.98);
        padding: 2rem;
        border-bottom: 2px solid var(--red);
    }

    .about-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-image-area {
        display: none;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    section {
        padding: 3.5rem 1.5rem;
        padding-top: 6rem;
    }

    .event-card {
        flex-direction: column;
        align-items: flex-start;
    }

    .event-date-box {
        flex-direction: row;
        gap: 0.5rem;
        width: 100%;
        justify-content: flex-start;
        padding: 0.5rem;
        border: none;
        background: transparent;
    }

    .event-date-box .day {
        font-size: 1.2rem;
    }
}