/* style.css - Senior Developer Edition */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;700&family=Oswald:wght@500;700&display=swap');

:root {
    --bg-dark: #0f172a;
    --bg-light: #ffffff;
    --primary: #1e3a8a;
    --gold: #d4af37;
    --gold-hover: #b5952f;
    --text-main: #334155;
    --text-light: #f1f5f9;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Montserrat', sans-serif; color: var(--text-main); line-height: 1.6; }

h1, h2, h3, h4, .btn-gold, .nav-links a { font-family: 'Oswald', sans-serif; text-transform: uppercase; }

/* Utilities */
.container { width: 90%; max-width: 1200px; margin: auto; }
.text-gold { color: var(--gold); }
.section { padding: 80px 0; }
.center { text-align: center; }
.bg-dark { background: var(--bg-dark); color: var(--text-light); }
.full-width { width: 100%; }

/* Navigation */
.navbar { position: fixed; width: 100%; top: 0; background: rgba(15, 23, 42, 0.95); backdrop-filter: blur(10px); z-index: 1000; padding: 15px 0; border-bottom: 1px solid rgba(255,255,255,0.1); }
.nav-content { display: flex; justify-content: space-between; align-items: center; }
.logo { color: #fff; font-size: 1.8rem; letter-spacing: 1px; }
.logo span { color: var(--gold); }
.nav-links { list-style: none; display: flex; gap: 30px; align-items: center; }
.nav-links a { color: #fff; text-decoration: none; font-size: 0.9rem; letter-spacing: 1px; transition: 0.3s; }
.nav-links a:hover { color: var(--gold); }
.btn-gold { background: var(--gold); color: #000; padding: 10px 25px; border-radius: 4px; text-decoration: none; font-weight: bold; transition: 0.3s; border: none; cursor: pointer; }
.btn-gold:hover { background: var(--gold-hover); transform: translateY(-2px); }
.mobile-toggle { display: none; color: #fff; font-size: 1.5rem; cursor: pointer; }

/* Hero Section */
.hero { height: 100vh; background: url('https://images.unsplash.com/photo-1531415074968-036ba1b575da?auto=format&fit=crop&w=1920&q=80') center/cover no-repeat; position: relative; display: flex; align-items: center; color: #fff; text-align: center; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(15,23,42,0.8), rgba(15,23,42,0.95)); }
.hero-content { position: relative; z-index: 2; }
.hero h1 { font-size: 4rem; line-height: 1.1; margin-bottom: 20px; }
.subline { font-size: 1.2rem; max-width: 700px; margin: 0 auto 30px; opacity: 0.9; }
.tagline { color: var(--gold); font-weight: bold; letter-spacing: 2px; margin-bottom: 10px; display: block; }
.cta-group { display: flex; justify-content: center; gap: 20px; margin-bottom: 40px; }
.btn-primary { background: var(--gold); color: #000; padding: 15px 30px; text-decoration: none; font-weight: bold; border-radius: 5px; }
.btn-secondary { border: 2px solid #fff; color: #fff; padding: 13px 30px; text-decoration: none; font-weight: bold; border-radius: 5px; }

.benefits-strip { display: flex; justify-content: center; gap: 40px; font-size: 0.9rem; opacity: 0.8; margin-top: 30px; border-top: 1px solid rgba(255,255,255,0.2); padding-top: 20px; }

/* About Split */
.split-layout { display: flex; align-items: center; gap: 50px; }
.text-block { flex: 1; }
.image-block { flex: 1; height: 400px; background: #ddd; border-radius: 10px; display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; }
.img-placeholder { background: #ccc; width: 100%; height: 100%; display: flex; flex-direction: column; align-items: center; justify-content: center; color: #666; font-weight: bold; }
.vision-box { border-left: 4px solid var(--gold); padding-left: 20px; font-style: italic; margin-top: 20px; background: #f8fafc; padding: 20px; }

/* Programs Grid */
.section-title { font-size: 2.5rem; margin-bottom: 10px; }
.section-subtitle { text-align: center; margin-bottom: 50px; opacity: 0.8; }
.grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }

.program-card { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); padding: 30px; border-radius: 8px; transition: 0.3s; }
.program-card:hover { transform: translateY(-10px); border-color: var(--gold); }
.program-card.featured { background: linear-gradient(145deg, rgba(212,175,55,0.1), transparent); border-color: var(--gold); }
.card-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; border-bottom: 1px solid rgba(255,255,255,0.1); padding-bottom: 15px; }
.program-card ul { list-style: none; }
.program-card li { margin-bottom: 10px; color: #ccc; }
.program-card li i { color: var(--gold); margin-right: 10px; }
.badge { background: var(--gold); color: #000; font-size: 0.7rem; padding: 3px 8px; border-radius: 3px; font-weight: bold; }

.special-programs { text-align: center; margin-top: 50px; border-top: 1px solid rgba(255,255,255,0.1); padding-top: 30px; }
.tags span { display: inline-block; background: rgba(255,255,255,0.1); padding: 8px 15px; margin: 5px; border-radius: 20px; font-size: 0.9rem; }

/* Methodology Process */
.process-grid { display: flex; justify-content: space-between; gap: 20px; margin-top: 40px; text-align: center; }
.icon-box { width: 70px; height: 70px; background: var(--bg-dark); color: var(--gold); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; margin: 0 auto 20px; box-shadow: 0 5px 15px rgba(0,0,0,0.1); }
.process-step h4 { margin-bottom: 10px; font-size: 1.2rem; }

/* Contact Section */
.contact-layout { display: flex; gap: 50px; background: #fff; box-shadow: 0 10px 40px rgba(0,0,0,0.1); border-radius: 10px; overflow: hidden; }
.form-box { flex: 2; padding: 50px; }
.info-box { flex: 1; background: var(--bg-dark); color: #fff; padding: 50px; display: flex; flex-direction: column; justify-content: center; }
.form-box input, .form-box select, .form-box textarea { width: 100%; padding: 12px; margin-bottom: 15px; border: 1px solid #ddd; border-radius: 4px; font-family: inherit; }
.form-box .row { display: flex; gap: 15px; }
.info-box p { margin-bottom: 15px; display: flex; align-items: center; gap: 10px; }
.lead-magnet { background: rgba(255,255,255,0.1); padding: 20px; margin-top: 30px; border-radius: 8px; }
.link-gold { color: var(--gold); text-decoration: none; font-weight: bold; }
.socials { margin-top: 30px; font-size: 1.5rem; display: flex; gap: 15px; }
.socials a { color: #fff; transition: 0.3s; }
.socials a:hover { color: var(--gold); }

/* Responsive */
@media (max-width: 768px) {
    .hero h1 { font-size: 2.5rem; }
    .split-layout, .contact-layout, .process-grid { flex-direction: column; }
    .nav-links { display: none; flex-direction: column; background: var(--bg-dark); position: absolute; top: 100%; width: 100%; padding: 20px; text-align: center; }
    .nav-links.active { display: flex; }
    .mobile-toggle { display: block; }
    .image-block { display: none; } /* Hide image on mobile to save space */
}

/* Section Matching */
    .bg-dark-section {
        background-color: #e7eaf4; /* Matching the deep navy/black from your image */
        padding: 80px 20px;
        color: rgb(5, 0, 0);
        font-family: 'Arial Black', Gadget, sans-serif;
    }

    .container {
        max-width: 1200px;
        margin: 0 auto;
    }

    .section-title {
        text-align: center;
        text-transform: uppercase;
        font-size: 3rem;
        margin-bottom: 50px;
        letter-spacing: 1px;
    }

    /* Grid Layout */
    .testimonials-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
        gap: 25px;
    }

    /* Card Styling to match Training Programs */
    .quote-card {
        background: #1a1f35; /* Darker card background */
        padding: 40px 30px;
        border-radius: 12px;
        border: 1px solid #2d344b; /* Subtle border */
        position: relative;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }

    /* Gold Border for the Middle/Featured Card */
    .quote-card.featured {
        border: 2px solid #ffcc00;
    }

    /* Yellow Badge Style for Names */
    .user-badge {
        background-color: #ffcc00;
        color: black;
        padding: 4px 12px;
        border-radius: 4px;
        font-size: 0.8rem;
        font-weight: bold;
        display: inline-block;
        margin-bottom: 20px;
        align-self: flex-start;
    }

    .stars {
        color: #ffcc00;
        font-size: 1.2rem;
        margin-bottom: 15px;
    }

    .quote-text {
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        font-size: 1.05rem;
        line-height: 1.6;
        color: #cfd4da;
        margin: 0;
    }

    /* Tick Mark style (optional, if you want to keep consistency) */
    .quote-text::before {
        content: '✓';
        color: #ffcc00;
        margin-right: 10px;
        font-weight: bold;
    }

    /* Section Background */
    .equipment-section {
        background-color: #0f172a; /* Deep navy matching your Training screenshot */
        padding: 80px 20px;
        color: white;
        font-family: 'Inter', sans-serif;
    }

    .container {
        max-width: 1200px;
        margin: 0 auto;
    }

    .section-header {
        text-align: center;
        margin-bottom: 50px;
    }

    /* Title matching 'TRAINING PROGRAMS' style */
    .section-header h2 {
        font-size: 3rem;
        text-transform: uppercase;
        font-weight: 900;
        margin-bottom: 10px;
        letter-spacing: 1px;
    }

    .section-header p {
        color: #94a3b8;
        font-size: 1.1rem;
    }

    /* Grid for Cards */
    .equipment-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
        gap: 25px;
    }

    /* Card Design matching Training Programs */
    .equip-card {
        background: #1e293b; /* Darker card background */
        padding: 40px 30px;
        border-radius: 12px;
        border: 1px solid #334155;
        position: relative;
        transition: transform 0.3s ease;
    }

    /* Yellow border for the center/featured card */
    .equip-card.featured {
        border: 2px solid #fbbf24;
    }

    /* Badge matching 'Ages' style */
    .equip-badge {
        position: absolute;
        top: 35px;
        right: 30px;
        background-color: #fbbf24;
        color: black;
        padding: 4px 10px;
        border-radius: 4px;
        font-size: 0.75rem;
        font-weight: 800;
        text-transform: uppercase;
    }

    .equip-card h3 {
        font-size: 1.4rem;
        text-transform: uppercase;
        font-weight: 800;
        margin-bottom: 25px;
        width: 70%; /* Prevent overlap with badge */
    }

    /* List items with yellow checkmarks */
    .equip-list {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .equip-list li {
        margin-bottom: 15px;
        font-size: 1.05rem;
        color: #cbd5e1;
        display: flex;
        align-items: flex-start;
    }

    .equip-list li::before {
        content: '✓';
        color: #fbbf24;
        margin-right: 12px;
        font-weight: 900;
    }

    /* Section Background */
    .schedule-section {
        background-color: #0f172a; /* Deep navy matching Training Programs */
        padding: 80px 20px;
        color: white;
        font-family: 'Inter', sans-serif;
    }

    .container {
        max-width: 1200px;
        margin: 0 auto;
    }

    .section-header {
        text-align: center;
        margin-bottom: 50px;
    }

    .section-header h2 {
        font-size: 3rem;
        text-transform: uppercase;
        font-weight: 900;
        margin-bottom: 10px;
        letter-spacing: 1px;
    }

    .section-header p {
        color: #94a3b8;
        font-size: 1.1rem;
    }

    /* Grid for Cards */
    .schedule-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
        gap: 25px;
        margin-bottom: 50px;
    }

    /* Card Design matching Training Programs */
    .schedule-card {
        background: #1e293b; 
        padding: 40px 30px;
        border-radius: 12px;
        border: 1px solid #334155;
        position: relative;
        transition: transform 0.3s ease;
    }

    /* Featured/Middle Card Highlight */
    .schedule-card.featured {
        border: 2px solid #fbbf24;
    }

    /* Yellow Badge for Session Numbers */
    .session-badge {
        position: absolute;
        top: 35px;
        right: 30px;
        background-color: #fbbf24;
        color: black;
        padding: 4px 12px;
        border-radius: 4px;
        font-size: 0.8rem;
        font-weight: 800;
    }

    .schedule-card h3 {
        font-size: 1.5rem;
        text-transform: uppercase;
        font-weight: 800;
        margin-bottom: 15px;
        color: #ffffff;
    }

    .time-slot {
        color: #fbbf24;
        font-weight: 700;
        font-size: 1.1rem;
        margin-bottom: 20px;
        display: block;
    }

    .schedule-details {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .schedule-details li {
        margin-bottom: 12px;
        font-size: 1rem;
        color: #cbd5e1;
        display: flex;
        align-items: flex-start;
        line-height: 1.5;
    }

    .schedule-details li::before {
        content: '✓';
        color: #fbbf24;
        margin-right: 12px;
        font-weight: 900;
    }

    .availability {
        margin-top: 20px;
        padding-top: 15px;
        border-top: 1px solid #334155;
        font-size: 0.9rem;
        color: #94a3b8;
        font-style: italic;
    }

    /* Call to Action matching Footer style */
    .cta-box {
        background: #1e293b;
        border-radius: 12px;
        padding: 40px;
        text-align: center;
        border: 1px solid #334155;
    }

    .cta-btn {
        background: linear-gradient(to right, #ff4d00, #ff8c00);
        color: white;
        padding: 15px 35px;
        border-radius: 8px;
        text-decoration: none;
        font-weight: bold;
        display: inline-block;
        margin-top: 20px;
        text-transform: uppercase;
    }

    /* Section Background */
    .tournament-section {
        background-color: #e7eaf4; /* Deep navy matching Training Programs */
        padding: 80px 20px;
        color: rgb(0, 0, 0);
        font-family: 'Inter', sans-serif;
    }

    .container {
        max-width: 1200px;
        margin: 0 auto;
    }

    .section-header {
        text-align: center;
        margin-bottom: 50px;
    }

    .section-header h2 {
        font-size: 3rem;
        text-transform: uppercase;
        font-weight: 900;
        margin-bottom: 10px;
        letter-spacing: 1px;
    }

    /* Grid for Tournament Cards */
    .tournament-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
        gap: 25px;
        margin-bottom: 60px;
    }

    /* Card Design matching Training Programs */
    .tourney-card {
        background: #1e293b; 
        border-radius: 12px;
        border: 1px solid #334155;
        overflow: hidden; /* Keeps image corners rounded */
        transition: transform 0.3s ease;
    }

    .tourney-card:hover {
        transform: translateY(-5px);
    }

    .tourney-img {
        width: 100%;
        height: 180px;
        object-fit: cover;
        opacity: 0.8;
    }

    .tourney-content {
        padding: 30px;
        position: relative;
    }

    /* Yellow Badge for Frequency matching 'Ages' style */
    .freq-badge {
        position: absolute;
        top: 30px;
        right: 25px;
        background-color: #fbbf24;
        color: black;
        padding: 4px 10px;
        border-radius: 4px;
        font-size: 0.75rem;
        font-weight: 800;
        text-transform: uppercase;
    }

    .tourney-card h3 {
        font-size: 1.3rem;
        text-transform: uppercase;
        font-weight: 800;
        margin-bottom: 15px;
        color: #ffffff;
    }

    .tourney-card p {
        color: #94a3b8;
        font-size: 0.95rem;
        line-height: 1.5;
    }

    /* Bottom Large Call-out Section */
    .year-round-box {
        background: #1e293b;
        border-radius: 16px;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 40px;
        padding: 50px;
        align-items: center;
        border: 1px solid #334155;
    }

    .year-round-content h3 {
        font-size: 2.2rem;
        text-transform: uppercase;
        font-weight: 900;
        margin-bottom: 20px;
    }

    .year-round-list {
        list-style: none;
        padding: 0;
    }

    .year-round-list li {
        margin-bottom: 12px;
        color: #cbd5e1;
        display: flex;
        align-items: center;
    }

    .year-round-list li::before {
        content: '●'; /* Small orange dot */
        color: #ff4d00;
        margin-right: 15px;
        font-size: 0.8rem;
    }

    .year-round-img-container {
        position: relative;
    }

    .main-img {
        width: 100%;
        border-radius: 12px;
    }

    /* Floating Badge on Image */
    .stats-badge {
        position: absolute;
        bottom: -20px;
        right: -20px;
        background: linear-gradient(135deg, #ff4d00, #ff8c00);
        padding: 20px;
        border-radius: 12px;
        text-align: center;
        box-shadow: 0 10px 20px rgba(0,0,0,0.3);
    }

    .stats-badge span {
        display: block;
        font-weight: 900;
        font-size: 1.8rem;
    }

    /* Responsive adjustment for the large box */
    @media (max-width: 768px) {
        .year-round-box { grid-template-columns: 1fr; padding: 30px; }
        .year-round-img-container { order: -1; }
    }

    /* Section Background matching Training Programs */
    .gallery-section {
        background-color: #0f172a; /* Deep navy */
        padding: 80px 20px;
        color: white;
        font-family: 'Inter', sans-serif;
    }

    .container {
        max-width: 1200px;
        margin: 0 auto;
    }

    .section-header {
        text-align: center;
        margin-bottom: 50px;
    }

    .section-header h2 {
        font-size: 3rem;
        text-transform: uppercase;
        font-weight: 900;
        margin-bottom: 10px;
        letter-spacing: 1px;
    }

    /* Modern Masonry Grid */
    .gallery-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 20px;
    }

    /* Card Design matching Training/Tournament style */
    .gallery-card {
        background: #1e293b; 
        border-radius: 12px;
        border: 1px solid #334155;
        overflow: hidden;
        position: relative;
        transition: all 0.3s ease;
        height: 250px; /* Fixed height for uniformity */
    }

    /* Gold Border for Featured Photos */
    .gallery-card.featured {
        border: 2px solid #fbbf24;
    }

    .gallery-card img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        opacity: 0.8;
        transition: transform 0.5s ease;
    }

    .gallery-card:hover img {
        transform: scale(1.1);
        opacity: 1;
    }

    /* Yellow Badge matching 'Ages' or 'Frequency' */
    .gallery-badge {
        position: absolute;
        top: 15px;
        right: 15px;
        background-color: #fbbf24;
        color: black;
        padding: 4px 10px;
        border-radius: 4px;
        font-size: 0.7rem;
        font-weight: 800;
        text-transform: uppercase;
        z-index: 2;
    }

    /* Overlay on hover */
    .gallery-overlay {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        background: linear-gradient(transparent, rgba(0,0,0,0.8));
        padding: 20px;
        opacity: 0;
        transition: opacity 0.3s ease;
    }

    .gallery-card:hover .gallery-overlay {
        opacity: 1;
    }

    .gallery-overlay h4 {
        margin: 0;
        font-size: 1rem;
        text-transform: uppercase;
        color: #fbbf24;
    }