:root {
            --primary: #1C4D3C;
            --navy: #0B2545;
            --secondary: #1C4D3C;
            --accent: #2E7D32;
            --card: #F8F9FA;
            --green: #1C4D3C;
            --darkgreen: #2E7D32;
        }
        
        body {
            background: var(--navy);
            color: #f6f6f6;
            font-family: 'Fira Sans', Arial, sans-serif;
            margin: 0;
        }
        
        /* HERO SECTION */
        .hero-section {
            padding: 44px 0 22px 0;
        }
        
        .logo { 
            max-width: 200px; 
            min-width: 140px;
            border-radius: 10px; 
        }
        
        h1 {
            font-family: 'Oswald', 'Arial Narrow', Arial, sans-serif;
            font-size: 2.45em;
            letter-spacing: 1.2px;
            text-transform: uppercase;
            /* color: var(--darkgreen); */
            color: #fff;
            font-weight: 700;
            text-shadow: 1px 2px 8px rgba(0,0,0,0.18);
            line-height: 1.1;
            margin-bottom: 0;
        }
        
        /* ABOUT SECTION SUBTITLE */
        .about-subtitle {
            color: var(--navy);
            font-size: 1.15em;
            margin-bottom: 15px;
            letter-spacing: 0.07em;
            font-family: 'Oswald', 'Arial Narrow', Arial, sans-serif;
            text-transform: uppercase;
            font-weight: 600;
            text-align: center;
        }
        
        .cta-btn {
            background: var(--green);
            color: #fff;
            border: none;
            border-radius: 30px;
            font-size: 1.11em;
            padding: 13px 40px;
            font-family: 'Oswald', 'Arial Narrow', Arial, sans-serif;
            font-weight: 700;
            letter-spacing: 0.06em;
            text-transform: uppercase;
            box-shadow: 0 2px 14px rgba(9,22,52,0.13);
            transition: background 0.18s;
            text-decoration: none;
            display: inline-block;
            margin-bottom: 15px;
        }
        
        .cta-btn:hover { 
            background: var(--darkgreen); 
            color: #fff;
        }
        
        .hero-phone {
            font-size: 1.08em;
            color: #fff;
        }
        
        .hero-phone a {
            color: var(--darkgreen);
            text-decoration: underline;
        }
        
        /* NAVIGATION */
        .navbar {
            background: var(--green) !important;
            box-shadow: 0 2px 8px rgba(9,22,52,0.13);
        }
        
        .navbar-nav .nav-link {
            color: #fff !important;
            font-family: 'Oswald', 'Arial Narrow', Arial, sans-serif;
            font-weight: 700;
            letter-spacing: 0.09em;
            text-transform: uppercase;
            font-size: 1.23em;
            display: inline-block;
            padding: 0.28rem 0.85rem;
            border-radius: 999px;
            background: transparent;
            transition: background-color 0.15s, color 0.15s;
        }

.navbar-nav .nav-link:hover,
        .navbar-nav .nav-link:focus,
        .navbar-nav .nav-link:focus-visible {
            color: #fff !important;
            background-color: var(--navy) !important;
            outline: none;
        }

.navbar-toggler {
            border-color: rgba(255,255,255,0.3);
            position: relative;
        }
        
        .navbar-toggler::after {
            content: "Go to...";
            position: absolute;
            left: 55px;
            top: 50%;
            transform: translateY(-50%);
            color: white;
            font-size: 16px;
            font-family: 'Oswald', 'Arial Narrow', Arial, sans-serif;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            white-space: nowrap;
        }
        
        .navbar-toggler-icon {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.75%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }
        
        /* CAROUSEL */
        .carousel-container {
            border-radius: 18px;
            border: 3.5px solid var(--green);
            box-shadow: 0 8px 38px rgba(28,77,60,0.2);
            overflow: hidden;
            margin: 20px 0;
            position: relative;
        }
        
        .carousel {
            position: relative;
            width: 100%;
            height: 400px;
            overflow: hidden;
        }
        
        .carousel-slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0;
            transition: opacity 1s ease-in-out;
        }
        
        .carousel-slide.active {
            opacity: 1;
        }
        
        .carousel-slide img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }
        
        .carousel-indicators {
            position: absolute;
            bottom: 15px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 8px;
            z-index: 10;
            margin: 0;
            padding: 0;
        }
        
        .carousel-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: rgba(255,255,255,0.5);
            cursor: pointer;
            transition: background 0.3s ease;
        }
        
        .carousel-dot.active {
            background: var(--darkgreen);
        }
        
        .carousel-nav {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(28,77,60,0.8);
            color: white;
            border: none;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            cursor: pointer;
            font-size: 18px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: background 0.3s ease;
            z-index: 10;
        }
        
        .carousel-nav:hover {
            background: var(--darkgreen);
        }
        
        .carousel-prev { left: 15px; }
        .carousel-next { right: 15px; }
        
        /* CARDS */
        .custom-card {
            background: var(--card);
            color: var(--navy);
            border-radius: 18px;
            padding: 26px 22px 19px 22px;
            box-shadow: 0 2px 14px rgba(9,22,52,0.09);
            border: 2.5px solid var(--primary);
            transition: box-shadow 0.14s, border-color 0.17s;
            display: flex;
            flex-direction: column;
        }
        
        .custom-card:hover {
            box-shadow: 0 6px 28px rgba(28,77,60,0.15);
            border-color: var(--darkgreen);
        }
        
        /* SECTION HEADERS */
        .section-title-block {
            display: inline-block;
            background: var(--green);
            color: #fff;
            font-family: 'Oswald', 'Arial Narrow', Arial, sans-serif;
            font-size: 2.18em;
            letter-spacing: 0.07em;
            font-weight: 700;
            text-transform: uppercase;
            padding: 8px 20px;
            margin: 36px 0 24px 0;
            box-shadow: 0 3px 16px rgba(11,37,69,0.25);
        }
        
        /* PROGRAMS & CLASSES */
        .program-icon, .class-icon {
            max-width: 80px;
            margin-bottom: 14px;
            display: block;
            margin-left: auto;
            margin-right: auto;
        }
        
        .program h3, .class h3 {
            font-family: 'Oswald', 'Arial Narrow', Arial, sans-serif;
            font-size: 1.13em;
            text-transform: uppercase;
            letter-spacing: .04em;
            margin-bottom: 7px;
            color: var(--green);
            font-weight: 700;
        }
        
        /* LOCATION INFO */
        .location-header {
            color: var(--green);
            font-family: 'Oswald', 'Arial Narrow', Arial, sans-serif;
            text-transform: uppercase;
            font-size: 1.2em;
            font-weight: 700;
            margin-bottom: 8px;
        }
        
        .google-map {
            width: 100%; 
            height: 240px; 
            border: none; 
            border-radius: 12px; 
            box-shadow: 0 2px 8px rgba(28,77,60,0.13);
        }
        
        /* FACEBOOK FEED */
        .facebook-header {
            font-family: 'Oswald', 'Arial Narrow', Arial, sans-serif;
            color: var(--green);
            margin-bottom: 20px;
            text-transform: uppercase;
            font-size: 1.8em;
            font-weight: 700;
            text-align: center;
        }
        
        .facebook-widget-container {
            display: flex;
            justify-content: center;
            align-items: center;
            width: 100%;
        }
        
        .fb-page {
            width: 100% !important;
            max-width: 500px !important;
            margin: 0 auto !important;
            display: block !important;
        }
        
        .fb-page span {
            width: 100% !important;
            display: block !important;
            margin: 0 auto !important;
        }
        
        .fb-page iframe {
            width: 100% !important;
            display: block !important;
            margin: 0 auto !important;
        }
        
        /* STAFF */
        .staff-img { 
            max-width: 180px; 
            border-radius: 16px; 
            border: 3px solid var(--darkgreen); 
            box-shadow: 0 1px 8px rgba(28,77,60,0.2);
        }
        
        /* CONTACT FORM */
        .contact-form label {
            font-weight: 600;
            font-family: 'Oswald', 'Arial Narrow', Arial, sans-serif;
            text-transform: uppercase;
            color: var(--primary);
            letter-spacing: .05em;
            margin-top: 14px;
            margin-bottom: 3px;
        }
        
        .contact-form input, .contact-form textarea {
            border-radius: 8px;
            border: 1.6px solid #aab4c4;
            font-size: 1.11em;
            font-family: 'Fira Sans', Arial, sans-serif;
        }
        
        .contact-form button {
            background: var(--green);
            color: #fff;
            border: none;
            padding: 13px 40px;
            border-radius: 30px;
            font-size: 1.13em;
            font-family: 'Oswald', 'Arial Narrow', Arial, sans-serif;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: .03em;
            transition: background 0.18s;
        }
        
        .contact-form button:hover {
            background: var(--darkgreen);
        }
        
        .contact-info {
            text-align: center;
            margin-top: 18px;
            color: var(--navy);
        }
        
        .contact-info strong {
            color: var(--green);
        }
        
        .contact-info a {
            color: var(--darkgreen);
            text-decoration: none;
        }
        
        .contact-info a:hover {
            text-decoration: underline;
        }
        
        /* SUCCESS/ERROR MESSAGES */
        .success-msg {
            padding: 10px 16px;
            border-radius: 6px;
            margin-bottom: 18px;
            text-align: center;
            font-weight: 700;
            font-size: 1.11em;
            background: #e4fae4;
            color: #1e7b29;
            border: 1.5px solid #b2edb2;
        }
        
        .error-msg {
            padding: 10px 16px;
            border-radius: 6px;
            margin-bottom: 18px;
            text-align: center;
            font-weight: 700;
            font-size: 1.11em;
            background: #fbe4e4;
            color: #a01d1d;
            border: 1.5px solid #facaca;
        }
        
        /* FOOTER */
        footer {
            margin: 48px 0 0 0;
            text-align: center;
            color: rgba(255,255,255,0.54);
            font-size: 0.94em;
            padding: 32px 20px 20px 20px;
            letter-spacing: 0.02em;
            background: var(--navy);
            position: relative;
            z-index: 1;
        }
        
        /* MOBILE OPTIMIZATIONS */
        @media (max-width: 768px) {
            h1 { font-size: 1.8em; }
            .section-title-block { font-size: 1.6em; }
            .carousel { height: 250px; }
            .carousel-nav { width: 35px; height: 35px; font-size: 16px; }
            .program-icon, .class-icon { max-width: 60px; }
            .staff-img { max-width: 150px; }
            .custom-card { height: auto; }
        }
        
        @media (max-width: 576px) {
            .hero-section { padding: 20px 0; }
            h1 { font-size: 1.5em; }
            .section-title-block { font-size: 1.4em; padding: 6px 15px; }
            .carousel { height: 200px; }
            .logo { max-width: 160px; min-width: 120px; }
            .custom-card { height: auto; }
        }

        /* POPUP */
        /* Trigger button (optional style) */
        .btn-watch {
            padding: .7rem 1rem;
            border: none;
            border-radius: .75rem;
            font: 600 1rem/1.2 system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
            box-shadow: 0 6px 20px rgba(0,0,0,.1);
            cursor: pointer;
        }

        /* Modal layout */
        .yt-modal[aria-hidden="true"] { display: none; }
        .yt-modal[aria-hidden="false"] {
            position: fixed; inset: 0; z-index: 9999;
            display: grid; place-items: center;
        }

        .yt-backdrop {
            position: absolute; inset: 0;
            background: rgba(0,0,0,.6);
        }

        .yt-dialog {
            position: relative;
            width: min(92vw, 960px);
            background: #111;
            border-radius: 1rem;
            box-shadow: 0 20px 60px rgba(0,0,0,.35);
            overflow: hidden;
            transform: translateY(6px);
            animation: pop .18s ease-out both;
        }

        @keyframes pop { from {opacity: 0; transform: translateY(12px)} to {opacity:1; transform: translateY(0)} }

        .yt-close {
            position: absolute; top: .5rem; right: .5rem;
            width: 40px; height: 40px;
            border: 0; border-radius: .75rem;
            background: rgba(255,255,255,.08);
            color: #fff; font-size: 1.5rem; line-height: 1;
            cursor: pointer;
        }
        .yt-close:hover { background: rgba(255,255,255,.15); }

        .yt-dismiss-float{
            position: fixed;
            top: 16px;
            right: 16px;
            z-index: 10001;
            border: 0;
            border-radius: 999px;
            padding: 10px 14px;
            font-family: 'Oswald', 'Arial Narrow', Arial, sans-serif;
            font-weight: 700;
            letter-spacing: 0.05em;
            text-transform: uppercase;
            background: var(--navy);
            color: #fff;
            box-shadow: 0 8px 20px rgba(0,0,0,.25);
            cursor: pointer;
        }
        .yt-dismiss-float:hover,
        .yt-dismiss-float:focus,
        .yt-dismiss-float:focus-visible{
            color: #fff;
            background: rgba(9,22,52,0.92);
            outline: none;
        }
        @media (max-width: 480px){
            .yt-dismiss-float{ top: 10px; right: 10px; padding: 9px 12px; font-size: 0.9rem; }
        }


        .yt-frame-wrap {
            width: 100%;
            aspect-ratio: 16 / 9;          /* keeps responsive 16:9 */
            background: #000;
        }

        .yt-frame-wrap iframe {
            position: relative;
            width: 100%;
            height: 100%;
            display: block;
            border: 0;
        }

        /* Screen reader only */
        .sr-only {
            position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
            overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
        }

        /* Prevent background scroll when modal is open */
        body.modal-open { overflow: hidden; }


        /* LATEST POSTS (HOMEPAGE) */
        .latest-posts-list { margin: 0; padding: 0; }
        .latest-post-item {
            padding: 12px 0;
            border-top: 1px solid rgba(9,22,52,0.12);
        }
        .latest-post-item:first-child { border-top: none; padding-top: 0; }
        .latest-post-thumb { width: 86px; flex: 0 0 86px; }
        .latest-post-title {
            display: inline-block;
            font-family: 'Oswald', 'Arial Narrow', Arial, sans-serif;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.02em;
            color: var(--navy);
            text-decoration: none;
            line-height: 1.15;
        }
        .latest-post-title:hover { color: var(--green); text-decoration: none; }
        .latest-post-meta { font-size: 0.85rem; color: rgba(9,22,52,0.65); margin-top: 2px; }
        .latest-post-excerpt { font-size: 0.95rem; margin-top: 6px; }

    