/* ============================================================
   GLOBAL SITE THEME: Regional Challenger Tour
   Black / Rustic Gold / Stadium Atmosphere
   ============================================================ */

body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: #000;
    color: #fff;
}

/* ============================================================
   NAVIGATION BAR
   ============================================================ */

header {
    padding: 20px 40px 10px;
    background: #111;
    border-bottom: 2px solid #f0b90b;
    text-align: center;
}

header h1 {
    margin: 0;
    font-size: 32px;
    font-weight: 800;
    letter-spacing: 1px;
}

.navbar-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    margin-top: 15px;
}

/* CENTER MENU */
.nav-center {
    display: flex;
    align-items: center;
    gap: 25px;
    justify-content: center;
}

.nav-center a {
    color: #f0b90b;
    text-decoration: none;
    font-weight: bold;
    transition: 0.25s;
}

.nav-center a:hover {
    color: #fff;
}

/* SOCIAL ICONS */
.social-icons a {
    color: #f0b90b;
    font-size: 20px;
    margin-left: 10px;
    transition: 0.25s;
}

.social-icons a:hover {
    color: #fff;
}

/* RIGHT BUTTONS */
.nav-right {
    display: flex;
    justify-content: flex-end;
    gap: 15px;
}

.btn-register,
.btn-spectate {
    padding: 10px 18px;
    border-radius: 6px;
    font-weight: bold;
    text-decoration: none;
    background: #f0b90b;
    color: #000;
    transition: 0.25s;
}

.btn-register:hover,
.btn-spectate:hover {
    background: #fff;
    color: #000;
}

/* ============================================================
   HERO BANNER (OPTION B — FULL WIDTH, DARK OVERLAY)
   ============================================================ */

.hero {
    position: relative;
    width: 100%;
    height: 420px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55); /* dark overlay */
}

.hero-content {
    position: relative;
    text-align: center;
    z-index: 2;
}

.hero-title {
    font-size: 48px;
    font-weight: 900;
    color: #f0b90b;
    letter-spacing: 2px;
}

.hero-subtitle {
    font-size: 20px;
    margin-top: 12px;
    color: #fff;
}

/* ============================================================
   SECTION STYLE
   ============================================================ */

section {
    max-width: 900px;
    margin: auto;
    padding: 60px 20px;
}

h2 {
    color: #f0b90b;
    margin-bottom: 20px;
}

/* ============================================================
   FORMS
   ============================================================ */

input, textarea, select {
    width: 100%;
    padding: 12px;
    margin-top: 10px;
    border-radius: 6px;
    border: none;
    font-size: 16px;
}

.form-box {
    background: #111;
    padding: 20px;
    border-radius: 10px;
    border: 1px solid #333;
}

.btn {
    display: inline-block;
    padding: 12px 20px;
    background: #f0b90b;
    color: #000;
    border-radius: 6px;
    font-weight: bold;
    text-decoration: none;
    transition: 0.25s;
}

.btn:hover {
    background: #fff;
}

/* ============================================================
   COMPETITOR COUNTER
   ============================================================ */

.counter-box {
    border: 2px solid #f0b90b;
    padding: 10px;
    font-size: 20px;
    font-weight: bold;
    display: inline-block;
}

/* ============================================================
   PRIZE POOL MODULE
   ============================================================ */

.prize-container {
    background: #111;
    border: 2px solid #d4a017;
    border-radius: 10px;
    padding: 20px;
    max-width: 600px;
    margin: 40px auto;
    text-align: center;
}

.prize-amount {
    color: #d4a017;
    font-size: 2rem;
    font-weight: bold;
}

.milestone-info {
    display: flex;
    justify-content: space-between;
    margin: 15px 0;
}

.progress-bar {
    width: 100%;
    height: 18px;
    background: #333;
    border-radius: 10px;
    overflow: hidden;
}

#progressFill {
    height: 100%;
    width: 0%;
    background: #d4a017;
    transition: width 0.4s;
}

#progressMessage {
    font-size: 14px;
    color: #ccc;
    margin-top: 8px;
}

/* ============================================================
   FOOTER
   ============================================================ */

footer {
    width: 100%;
    background: #111;
    border-top: 2px solid #f0b90b;
    padding: 25px 20px;
    margin-top: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

footer p {
    margin: 0;
}

/* ============================================================
   MOBILE RESPONSIVE DESIGN
   ============================================================ */

@media (max-width: 900px) {

    header {
        padding: 15px;
    }

    header h1 {
        font-size: 22px;
    }

    .navbar-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto auto auto;
        row-gap: 10px;
    }

    .nav-left { display: none; }

    .nav-center {
        flex-wrap: wrap;
        gap: 15px;
    }

    .social-icons {
        display: flex;
        justify-content: center;
        width: 100%;
    }

    .nav-right {
        justify-content: center;
        width: 100%;
    }

    .btn-register, .btn-spectate {
        font-size: 14px;
        padding: 8px 14px;
    }

    .hero {
        height: 300px;
    }

    .hero-title {
        font-size: 32px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

}

/* ============================================================
   FIX: RESTORE GLOBAL PAGE SPACING & SECTION LAYOUT
   ============================================================ */

/* Ensures every page has proper breathing room */
main, section {
    display: block;
    width: 100%;
    max-width: 900px;
    margin: 60px auto;
    padding: 0 20px;
    box-sizing: border-box;
}

/* Fix spacing for headings across all pages */
h1, h2, h3 {
    margin-top: 0;
    margin-bottom: 20px;
}

/* Prevent content from hugging the navbar after hero */
.hero + section,
.hero + main {
    margin-top: 40px;
}

/* Fix counter spacing */
.counter-box {
    margin-top: 15px;
    background: #111;
    border-radius: 6px;
}

/* Fix prize container spacing & alignment */
.prize-container {
    margin-top: 40px;
    margin-bottom: 40px;
    padding: 25px;
}

/* Form box centering fix */
.form-box {
    margin-top: 25px;
    margin-bottom: 40px;
}

/* Force footer to stay separated from content */
body {
    padding-bottom: 60px;
}

/* ============================================================
   FIX: REGISTRATION FORM LABEL + CHECKBOX LAYOUT
   ============================================================ */

form label {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 15px;
    margin-bottom: 20px;
    font-size: 15px;
    line-height: 1.4;
}

form label input[type="checkbox"] {
    width: 18px;
    height: 18px;
}

/* Ensure form buttons always appear below fields */
form .btn {
    margin-top: 20px;
}
/* Merch Product Image Size */
.merch-image {
    max-width: 350px;      /* Change this number to make image bigger or smaller */
    width: 80%;
    display: block;
    margin: 0 auto 20px auto;
}

