:root {
    --navy: #0A2647;
    /* Deep Midnight Blue */
    --deep: #2C3639;
    /* Deep Charcoal/Olive-Gray */
    --mid: #14355A;
    /* Navy Highlight */
    --gold: #A4907C;
    /* Muted Sand/Taupe */
    --gold-light: #F1DEC9;
    /* Soft Cream */
    --teal: #8D7B68;
    /* Warm Slate Gray/Brown */
    --teal-glow: #A4907C;
    /* Glow color */
    --white: #F1DEC9;
    /* Soft Cream (Primary Text) */
    --muted: #8D7B68;
    /* Muted Warm Slate */
    --card-bg: rgba(44, 54, 57, 0.85);
    /* Deep charcoal for glass cards */
}

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

html {
    scroll-behavior: smooth;
}

body {
    background: var(--navy);
    color: var(--white);
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
}

/* ── NAV ── */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 100;
    background: rgba(10, 38, 71, 0.45);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(164, 144, 124, 0.2);
    padding: 0 2rem;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-logo img,
.nav-logo svg {
    width: 48px;
    height: 48px;
    object-fit: contain;
    filter: drop-shadow(0 0 8px rgba(141, 123, 104, 0.4));
}

.nav-brand {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.5rem;
    letter-spacing: 2px;
    background: linear-gradient(90deg, var(--gold), var(--white));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

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

.nav-links a {
    color: var(--muted);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: color 0.3s;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--white);
}

.nav-cta {
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    color: var(--navy);
    padding: 8px 20px;
    border-radius: 4px;
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    text-decoration: none;
    display: inline-block;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(164, 144, 124, 0.4);
}

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

.hero-bg {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(180deg, rgba(10, 38, 71, 0.75) 0%, rgba(11, 7, 30, 0.45) 100%), url('assets/homepagebackground.jpeg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-grid {
    position: absolute;
    inset: 0;
    opacity: 0.04;
    background-image: linear-gradient(rgba(141, 123, 104, 0.5) 1px, transparent 1px),
        linear-gradient(90deg, rgba(141, 123, 104, 0.5) 1px, transparent 1px);
    background-size: 60px 60px;
}

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

.hero-logo-wrap {
    position: relative;
    display: inline-block;
    margin-bottom: 2rem;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {

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

    50% {
        transform: translateY(-12px);
    }
}

.hero-logo-wrap::before {
    content: '';
    position: absolute;
    inset: -20px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(141, 123, 104, 0.15) 0%, transparent 70%);
    animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.1);
        opacity: 0.6;
    }
}

.hero-logo {
    width: 220px;
    height: 220px;
    object-fit: contain;
    border-radius: 50%;
    filter: drop-shadow(0 0 30px rgba(141, 123, 104, 0.35)) drop-shadow(0 0 60px rgba(164, 144, 124, 0.15));
}

.hero-eyebrow {
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.9rem;
    letter-spacing: 6px;
    color: var(--gold);
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.hero-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(3.5rem, 10vw, 7rem);
    line-height: 0.9;
    letter-spacing: 4px;
    margin-bottom: 0.5rem;
}

.hero-title span.gold {
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-title span.teal {
    background: linear-gradient(90deg, var(--teal), var(--white));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-motto {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.1rem;
    letter-spacing: 3px;
    color: var(--gold-light);
    text-transform: uppercase;
    margin-bottom: 2rem;
    border: 1px solid rgba(164, 144, 124, 0.3);
    display: inline-block;
    padding: 8px 24px;
    border-radius: 2px;
}

.hero-desc {
    color: var(--white);
    opacity: 0.8;
    font-size: 1.05rem;
    max-width: 520px;
    line-height: 1.7;
    margin: 0 auto 2.5rem;
}

.hero-btns {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary {
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    color: var(--navy);
    padding: 14px 32px;
    border-radius: 4px;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s;
    box-shadow: 0 4px 24px rgba(141, 123, 104, 0.3);
    display: inline-block;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 32px rgba(141, 123, 104, 0.5);
}

.btn-outline {
    background: transparent;
    color: var(--gold);
    padding: 14px 32px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border: 1.5px solid var(--gold);
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s;
    display: inline-block;
}

.btn-outline:hover {
    background: var(--gold);
    color: var(--navy);
    box-shadow: 0 4px 20px rgba(164, 144, 124, 0.3);
}

.hero-scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--muted);
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    animation: bob 2s ease-in-out infinite;
}

@keyframes bob {

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

    50% {
        transform: translateX(-50%) translateY(6px);
    }
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(180deg, var(--gold), transparent);
}

/* ── STATS BAND ── */
.stats-band {
    background: linear-gradient(90deg, rgba(141, 123, 104, 0.08), rgba(164, 144, 124, 0.08));
    border-top: 1px solid rgba(164, 144, 124, 0.15);
    border-bottom: 1px solid rgba(141, 123, 104, 0.15);
    padding: 2rem 4rem;
}

.stats-grid {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

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

.stat-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3rem;
    background: linear-gradient(90deg, var(--gold), var(--white));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
}

.stat-label {
    font-size: 0.75rem;
    letter-spacing: 2px;
    color: var(--muted);
    text-transform: uppercase;
    margin-top: 4px;
}

/* ── SECTIONS ── */
section {
    padding: 6rem 2rem;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-eye {
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.8rem;
    letter-spacing: 5px;
    color: var(--gold);
    text-transform: uppercase;
    margin-bottom: 0.75rem;
}

.section-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2.5rem, 6vw, 4rem);
    letter-spacing: 3px;
}

.section-line {
    width: 60px;
    height: 3px;
    margin: 1rem auto 0;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    border-radius: 2px;
}

/* ── SPORTS GRID ── */
.sports-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
    max-width: 1000px;
    margin: 0 auto;
}

@media (max-width: 992px) {
    .sports-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .sports-grid {
        grid-template-columns: 1fr;
    }
}

.sport-card {
    background: var(--card-bg);
    border: 1px solid rgba(164, 144, 124, 0.15);
    border-radius: 8px;
    padding: 2rem 1rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.sport-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(141, 123, 104, 0.05), rgba(164, 144, 124, 0.05));
    opacity: 0;
    transition: opacity 0.3s;
}

.sport-card:hover {
    transform: translateY(-6px);
    border-color: var(--gold-light);
}

.sport-card:hover::before {
    opacity: 1;
}

/* Icon adjustments */
.sport-icon {
    display: block;
    margin-bottom: 0.75rem;
    height: 40px;
}

.sport-icon svg {
    width: 40px;
    height: 40px;
    margin: 0 auto;
    display: block;
}

.sport-name {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 1px;
    color: var(--white);
    text-transform: uppercase;
}

.sport-level {
    font-size: 0.7rem;
    color: var(--gold);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-top: 4px;
}

/* ── SCHEDULE ── */
.schedule-section {
    background: var(--deep);
}

.schedule-table-wrap {
    max-width: 900px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 12px;
}

.schedule-table {
    width: 100%;
    border-collapse: collapse;
}

.schedule-table thead {
    background: rgba(141, 123, 104, 0.12);
}

.schedule-table th {
    padding: 1rem 1.25rem;
    text-align: left;
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold-light);
    border-bottom: 1px solid rgba(141, 123, 104, 0.2);
}

.schedule-table td {
    padding: 1rem 1.25rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    font-size: 0.9rem;
}

.schedule-table tr:hover td {
    background: rgba(141, 123, 104, 0.05);
}

.schedule-table tr:last-child td {
    border-bottom: none;
}

.badge {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.badge-open {
    background: rgba(141, 123, 104, 0.15);
    color: var(--gold-light);
}

.badge-full {
    background: rgba(164, 144, 124, 0.15);
    color: var(--gold);
}

.badge-new {
    background: rgba(100, 200, 100, 0.15);
    color: #6be86b;
}

/* ── JOIN / FEATURES ── */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
    max-width: 1100px;
    margin: 0 auto;
}

.feature-card {
    background: var(--card-bg);
    border: 1px solid rgba(164, 144, 124, 0.1);
    border-radius: 10px;
    padding: 2rem;
    transition: border-color 0.3s;
}

.feature-card:hover {
    border-color: rgba(164, 144, 124, 0.35);
}

.feature-icon {
    width: 52px;
    height: 52px;
    border-radius: 10px;
    background: linear-gradient(135deg, rgba(141, 123, 104, 0.2), rgba(164, 144, 124, 0.1));
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    border: 1px solid rgba(141, 123, 104, 0.2);
}

.feature-icon svg {
    width: 24px;
    height: 24px;
}

.feature-title {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.feature-desc {
    color: var(--white);
    opacity: 0.7;
    font-size: 0.9rem;
    line-height: 1.6;
}

/* ── CONTACT FORM ── */
.contact-section {
    background: var(--deep);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1000px;
    margin: 0 auto;
    align-items: start;
}

@media (max-width: 700px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

.contact-info h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.contact-info p {
    color: var(--muted);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.contact-detail {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    border-radius: 8px;
    background: rgba(141, 123, 104, 0.06);
    border: 1px solid rgba(141, 123, 104, 0.12);
    margin-bottom: 0.75rem;
}

.contact-detail-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.contact-detail-icon svg {
    width: 24px;
    height: 24px;
}

.contact-detail-text {
    font-size: 0.9rem;
}

.contact-detail-text strong {
    color: var(--gold-light);
    display: block;
    font-size: 0.7rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

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

@media (max-width: 500px) {
    .form-row {
        grid-template-columns: 1fr;
    }
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-label {
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 500;
}

.form-input,
.form-select,
.form-textarea {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    padding: 12px 16px;
    color: var(--white);
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    transition: border-color 0.3s;
    width: 100%;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--gold);
    background: rgba(141, 123, 104, 0.05);
}

.form-select option {
    background: var(--deep);
}

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

.form-submit {
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    color: var(--navy);
    padding: 14px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 0.5rem;
    box-shadow: 0 4px 20px rgba(141, 123, 104, 0.25);
}

.form-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(141, 123, 104, 0.45);
}

.form-success {
    background: rgba(107, 232, 107, 0.1);
    border: 1px solid rgba(107, 232, 107, 0.3);
    border-radius: 8px;
    padding: 1rem;
    text-align: center;
    color: #6be86b;
    font-weight: 500;
    display: none;
}

/* ── SOCIAL ── */
.social-section {
    text-align: center;
    padding: 4rem 2rem;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1.25rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s;
    border: 1.5px solid;
}

.social-btn svg {
    width: 24px;
    height: 24px;
    transition: transform 0.3s;
}

.social-btn:hover svg {
    transform: scale(1.15);
}

.social-whatsapp {
    color: #25d366;
    border-color: rgba(37, 211, 102, 0.4);
    background: rgba(37, 211, 102, 0.05);
}

.social-whatsapp:hover {
    background: rgba(37, 211, 102, 0.15);
    border-color: #25d366;
}

.social-instagram {
    color: #e1306c;
    border-color: rgba(225, 48, 108, 0.4);
    background: rgba(225, 48, 108, 0.05);
}

.social-instagram:hover {
    background: rgba(225, 48, 108, 0.15);
    border-color: #e1306c;
}

.social-youtube {
    color: #ff0000;
    border-color: rgba(255, 0, 0, 0.3);
    background: rgba(255, 0, 0, 0.05);
}

.social-youtube:hover {
    background: rgba(255, 0, 0, 0.12);
    border-color: #ff0000;
}

.social-discord {
    color: #7289da;
    border-color: rgba(114, 137, 218, 0.4);
    background: rgba(114, 137, 218, 0.05);
}

.social-discord:hover {
    background: rgba(114, 137, 218, 0.15);
    border-color: #7289da;
}

/* ── FOOTER ── */
footer {
    background: rgba(6, 14, 28, 0.95);
    border-top: 1px solid rgba(164, 144, 124, 0.15);
    padding: 3rem 2rem;
    text-align: center;
}

.footer-logo {
    width: 60px;
    margin: 0 auto 1rem;
    opacity: 0.9;
}

.footer-motto {
    font-family: 'Rajdhani', sans-serif;
    letter-spacing: 3px;
    font-size: 0.8rem;
    color: var(--gold);
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.footer-copy {
    color: var(--muted);
    font-size: 0.8rem;
}

/* ── ANIMATIONS ── */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ── HAMBURGER (mobile nav) ── */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 6px;
}

.hamburger span {
    width: 24px;
    height: 2px;
    background: var(--gold);
    border-radius: 2px;
    transition: all 0.3s;
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-links,
    .nav-cta {
        display: none;
    }

    .nav-links.open {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background: rgba(10, 38, 71, 0.97);
        padding: 1rem 2rem;
        border-bottom: 1px solid rgba(164, 144, 124, 0.2);
    }

    .hero {
        padding-top: 120px;
        padding-bottom: 3rem;
    }
}