@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Inter:wght@400;500;600;700&display=swap');

:root {
    --court-wood: #c8a45c;
    --court-dark: #1a1209;
    --court-red: #8b2020;
    --white: #ffffff;
    --off-white: #f0ece4;
    --accent: #c9302c;
    --text-dark: #1c1c1c;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--white);
    background: var(--court-dark);
}

/* ── HEADER / NAV ── */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(10, 6, 2, 0.9);
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.nav-inner {
    max-width: 960px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    gap: 40px;
    padding: 16px 20px;
}

.nav-link {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 18px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--white);
    text-decoration: none;
    transition: color 0.2s ease;
}

.nav-link:hover {
    color: var(--court-wood);
}

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

.hero-bg {
    position: absolute;
    inset: 0;
    background: url('../Triple Threat Court - Copy.png') center center / cover no-repeat;
    z-index: 0;
}

.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(10, 6, 2, 0.72);
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 40px 20px;
    max-width: 800px;
}

.logo-container {
    margin-bottom: 10px;
}

.logo-container img {
    width: clamp(250px, 50vw, 700px);
    height: auto;
    filter: drop-shadow(0 4px 20px rgba(0, 0, 0, 0.5));
}

.logo-placeholder {
    width: 200px;
    height: 200px;
    margin: 0 auto;
    border: 2px dashed rgba(255, 255, 255, 0.25);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.35);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.hero-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(48px, 10vw, 96px);
    letter-spacing: 6px;
    line-height: 1;
    text-transform: uppercase;
    text-shadow: 2px 4px 12px rgba(0, 0, 0, 0.6);
    margin-bottom: 10px;
}

.hero-subtitle {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(20px, 4vw, 32px);
    letter-spacing: 10px;
    text-transform: uppercase;
    color: var(--court-wood);
    margin-bottom: 35px;
}

.hero-cta {
    display: inline-block;
    padding: 14px 48px;
    background: var(--accent);
    color: var(--white);
    text-decoration: none;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 22px;
    letter-spacing: 3px;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: background 0.2s ease;
}

.hero-cta:hover {
    background: #a02525;
}

/* ── SECTION COMMON ── */
section {
    padding: 80px 20px;
}

.section-inner {
    max-width: 960px;
    margin: 0 auto;
}

.section-heading {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 40px;
    letter-spacing: 4px;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 12px;
}

.section-rule {
    width: 60px;
    height: 3px;
    background: var(--accent);
    margin: 0 auto 40px;
    border: none;
}

/* ── INFO SECTION ── */
.info-section {
    background: #111;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.info-block {
    text-align: center;
    padding: 30px 20px;
    border: 1px solid rgba(255, 255, 255, 0.07);
}

.info-block .label {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 16px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--court-wood);
    margin-bottom: 10px;
}

.info-block .value {
    font-size: 20px;
    font-weight: 700;
}

.info-block .note {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.45);
    margin-top: 6px;
}

.info-block-cta {
    grid-column: 1 / -1;
    border-color: var(--accent);
    padding: 0;
}

.register-link {
    text-decoration: none;
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    padding: 30px 20px;
}

.register-link .value {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 24px;
    letter-spacing: 3px;
    transition: color 0.2s ease;
}

.register-link:hover .value {
    color: var(--court-wood);
}

/* ── ABOUT SECTION ── */
.about-section {
    background: #0d0d0d;
}

.about-section p {
    text-align: center;
    font-size: 17px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.7);
    max-width: 680px;
    margin: 0 auto;
}

/* ── DETAILS SECTION ── */
.details-section {
    background: #0d0d0d;
}

.details-list {
    list-style: none;
    max-width: 600px;
    margin: 0 auto;
}

.details-list li {
    padding: 14px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    font-size: 16px;
    color: rgba(255, 255, 255, 0.75);
    display: flex;
    gap: 14px;
    align-items: baseline;
}

.details-list li span.bullet {
    color: var(--accent);
    font-size: 10px;
    flex-shrink: 0;
    margin-top: 4px;
}

/* ── CONTACT SECTION ── */
.contact-section {
    background: #111;
}

.contact-row {
    display: flex;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
}

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

.contact-item .c-label {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 14px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--court-wood);
    margin-bottom: 8px;
}

.contact-item a,
.contact-item span {
    color: var(--white);
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
}

.contact-item a:hover {
    text-decoration: underline;
}

/* ── MOBILE MENU ── */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    flex-direction: column;
    gap: 5px;
}

.menu-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--white);
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.menu-toggle.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.menu-toggle.open span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
    display: none;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: rgba(10, 6, 2, 0.95);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.mobile-menu.open {
    display: flex;
}

/* ── FOOTER ── */
footer {
    text-align: center;
    padding: 30px 20px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.25);
    background: #090909;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

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

    .menu-toggle {
        display: flex;
    }

    .nav-inner {
        justify-content: space-between;
    }

    .hero-title {
        letter-spacing: 3px;
    }

    .hero-subtitle {
        letter-spacing: 5px;
    }

    .info-grid {
        grid-template-columns: 1fr;
    }

    .contact-row {
        gap: 30px;
    }

    section {
        padding: 60px 16px;
    }
}
