:root {
    --primary-red: #E60000;
    --bg-white: #FFFFFF;
    --text-black: #000000;
    --text-white: #FFFFFF;
}

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

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-white);
    color: var(--text-black);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, .logo, .nav-links a, .btn-red, .btn-primary, .btn-nav {
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
}

/* Navbar */
.navbar {
    position: absolute; /* transparent over hero */
    top: 0;
    width: 100%;
    padding: 20px 5%;
    z-index: 1000;
    color: var(--text-white);
}

.nav-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.social-icons {
    display: flex;
    gap: 15px;
    font-weight: 600;
}

.social-icons a {
    color: var(--text-white);
    text-decoration: none;
}

.logo {
    font-size: 48px;
    font-weight: 700;
    letter-spacing: 2px;
    text-align: center;
    flex-grow: 1;
}

.btn-nav {
    background: var(--text-white);
    color: var(--primary-red);
    padding: 10px 25px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    transition: transform 0.2s;
}

.btn-nav:hover {
    transform: scale(1.05);
}

.nav-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.nav-links a {
    color: var(--text-white);
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 1px;
}

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

/* Hero Section */
.hero {
    height: 100vh;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 20px;
}

.hero-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.4);
}

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

.hero-content h1 {
    font-size: 4.5rem;
    line-height: 1.1;
    margin-bottom: 40px;
    color: var(--text-white);
}

.btn-primary {
    display: inline-block;
    background: var(--primary-red);
    color: var(--text-white);
    text-decoration: none;
    padding: 15px 40px;
    font-size: 1.2rem;
    font-weight: 700;
    border-radius: 50px;
    transition: transform 0.2s;
}

.btn-primary:hover {
    transform: scale(1.05);
}

/* Intro */
.intro {
    padding: 80px 10%;
    text-align: center;
}

.lead-text {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
    font-weight: 400;
}

.lead-text strong {
    font-size: 1.5rem;
}

/* Features */
.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    padding: 20px 10% 80px;
    max-width: 1400px;
    margin: 0 auto;
}

.feature-column {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

.feature-column img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    margin-bottom: 20px;
}

.feature-column h2 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: var(--text-black);
}

.feature-column p {
    color: var(--text-black);
    margin-bottom: 25px;
    flex-grow: 1;
}

.btn-red {
    display: inline-block;
    background: var(--primary-red);
    color: var(--text-white);
    text-decoration: none;
    padding: 12px 30px;
    font-size: 1rem;
    font-weight: 700;
    border-radius: 30px;
    transition: opacity 0.2s;
    align-self: flex-start;
}

.btn-red:hover {
    opacity: 0.8;
}

/* Contact Section */
.contact-section {
    padding: 60px 10%;
    text-align: center;
}

.contact-section h2 {
    font-size: 2rem;
    margin-bottom: 30px;
}

/* Footer */
footer {
    display: flex;
    flex-direction: column;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    padding: 60px 10%;
    background: var(--bg-white);
}

.footer-col {
    flex: 1;
}

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

.footer-col h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.footer-col a {
    color: var(--text-black);
    font-weight: 600;
}

.footer-bottom {
    background: var(--primary-red);
    color: var(--text-white);
    padding: 40px 10%;
    text-align: center;
}

.social-links-footer p {
    font-weight: 700;
    margin-bottom: 15px;
}

.icons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
}

.icons a {
    color: var(--text-white);
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
}

.legal-links a {
    color: var(--text-white);
    text-decoration: none;
    margin: 0 10px;
    font-size: 0.9rem;
}

/* Mobile Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    position: absolute;
    right: 20px;
    top: 30px;
    z-index: 1000;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-white);
    transition: all 0.3s ease;
}

@media (max-width: 900px) {
    .nav-top {
        flex-direction: column;
        gap: 15px;
    }
    .logo {
        font-size: 36px;
    }
    .nav-links {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        padding: 0;
        z-index: 999;
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.3s ease;
        gap: 0;
    }
    .nav-links.active {
        opacity: 1;
        pointer-events: auto;
    }
    .nav-links a {
        color: var(--text-black);
        font-size: 28px;
        font-weight: 700;
        margin: 15px 0;
        text-align: center;
    }
    .nav-links a:hover {
        color: var(--primary-red);
    }
    .hamburger {
        display: flex;
        position: fixed;
    }
    .hero-content {
        margin-top: 140px;
    }
    .hero-content h1 {
        font-size: 1.6rem;
        line-height: 1.4;
    }
    .footer-top {
        flex-direction: column;
    }
    .text-right {
        text-align: left;
    }
}

/* Schedule Page */
.navbar.dark-bg {
    background-color: var(--primary-red);
    position: relative;
    padding: 20px 5%;
}

.schedule-page {
    padding: 60px 5% 80px;
    max-width: 1000px;
    margin: 0 auto;
}

.schedule-container {
    background: var(--bg-white);
    text-align: center;
}

.enrollment-notice {
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.schedule-section {
    margin-bottom: 60px;
}

.schedule-section h2 {
    font-size: 2.5rem;
    color: var(--text-black);
    margin-bottom: 30px;
    letter-spacing: 1px;
}

.dates-list {
    list-style: none;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
    text-align: left;
}

.dates-list li {
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #ddd;
}

.dates-list li:last-child {
    border-bottom: none;
}

.dates-list li strong {
    font-weight: 700;
    margin-right: 10px;
}

.enroll-action {
    margin: 60px 0;
}

.legal-notice {
    font-size: 0.85rem;
    color: #666;
    font-style: italic;
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.6;
    text-align: justify;
}

/* League Page */
.league-page {
    padding: 60px 5% 80px;
    max-width: 1000px;
    margin: 0 auto;
}

.league-intro {
    text-align: center;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 50px;
    color: var(--text-black);
}

.league-enroll {
    text-align: center;
    margin-bottom: 60px;
    padding: 40px;
    background: #fdfdfd;
    border: 2px solid #eee;
}

.league-enroll h2 {
    color: var(--primary-red);
    font-size: 2.2rem;
    margin-bottom: 25px;
}

.league-body {
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 60px;
    color: #333;
}

.league-body p {
    margin-bottom: 20px;
}

.www-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.www-card {
    background: #fafafa;
    padding: 30px;
    border-left: 4px solid var(--primary-red);
}

.www-card h3 {
    color: var(--text-black);
    font-size: 1.6rem;
    margin-bottom: 15px;
}

.vision-section {
    margin-bottom: 60px;
}

.vision-section h3 {
    font-size: 2rem;
    margin-bottom: 25px;
    color: var(--text-black);
}

.policy-links {
    text-align: center;
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid #ddd;
}

.policy-links a {
    display: block;
    color: var(--primary-red);
    text-decoration: none;
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 20px;
    transition: opacity 0.2s;
}

.policy-links a:hover {
    opacity: 0.8;
    text-decoration: underline;
}

/* Contact Page */
.contact-page {
    padding: 80px 5% 100px;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.contact-title {
    font-size: 3.5rem;
    color: var(--text-black);
    margin-bottom: 50px;
    letter-spacing: 1px;
}

.contact-info-block {
    margin-bottom: 40px;
}

.contact-label {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.contact-info-block h3 {
    font-size: 1.8rem;
    color: var(--text-black);
    margin-bottom: 10px;
}

.contact-info-block a {
    color: var(--primary-red);
    text-decoration: none;
    transition: opacity 0.2s;
}

.contact-info-block a:hover {
    opacity: 0.8;
}

.email-block {
    background: #fafafa;
    padding: 40px;
    border-radius: 10px;
    margin-top: 60px;
}

.age-range {
    color: var(--primary-red) !important;
    margin-top: 15px;
    margin-bottom: 30px;
}

/* Policies Page */
.policies-page {
    padding: 80px 5% 100px;
    max-width: 900px;
    margin: 0 auto;
}

.policies-page h1 {
    font-size: 3rem;
    color: var(--text-black);
    margin-bottom: 40px;
    text-align: center;
}

.policies-content {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #444;
}

.policies-content h2, .policies-content h3, .policies-content h4 {
    color: var(--text-black);
    margin-top: 40px;
    margin-bottom: 20px;
    font-family: 'Oswald', sans-serif;
}

.policies-content ul {
    margin-left: 20px;
    margin-bottom: 20px;
}

.policies-content li {
    margin-bottom: 10px;
}

.policies-content p {
    margin-bottom: 20px;
}

/* Waiting List Page */
.waiting-page {
    padding: 80px 5% 100px;
    max-width: 800px;
    margin: 0 auto;
}

.waiting-intro {
    text-align: center;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 50px;
}

.waiting-intro a {
    color: var(--primary-red);
    text-decoration: underline;
    font-weight: 600;
}

.waiting-form {
    background: #fafafa;
    padding: 40px;
    border-radius: 10px;
    border: 1px solid #eee;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-black);
}

.form-group input, .form-group select, .form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    box-sizing: border-box;
}

.btn-submit {
    background: var(--primary-red);
    color: var(--text-white);
    border: none;
    padding: 15px 30px;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 5px;
    cursor: pointer;
    width: 100%;
    transition: opacity 0.2s;
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
}

.btn-submit:hover {
    opacity: 0.8;
}

/* Enroll Page */
.enroll-page {
    padding: 80px 5% 100px;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.enroll-content {
    background: #fafafa;
    padding: 40px;
    border-radius: 10px;
    border: 1px solid #eee;
}

.enroll-content h2 {
    color: var(--primary-red);
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.enroll-content h3 {
    font-size: 1.5rem;
    margin-bottom: 30px;
    color: var(--text-black);
}

.enroll-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #444;
}

.enroll-content a {
    color: var(--primary-red);
    font-weight: 600;
    text-decoration: underline;
}
