/* ================================
   SOMEONE'S GOTTA LOSE
   Main Website Styles
================================ */

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

body {
    background: #090a0c;
    color: #f5f5f5;
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.6;
}


/* HEADER */

.site-header {
    background: #050505;
    border-bottom: 4px solid #d4a017;
}

.league-brand {
    text-align: center;
    padding: 24px 20px 18px;
}

.league-brand h1 {
    font-size: 2.7rem;
    letter-spacing: 5px;
    line-height: 1;
}

.league-brand p {
    color: #9b9b9b;
    font-size: 0.85rem;
    letter-spacing: 6px;
    margin-top: 10px;
}


/* NAVIGATION */

.main-nav {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    background: #111317;
    border-top: 1px solid #282828;
}

.main-nav a {
    color: #e8e8e8;
    text-decoration: none;
    font-weight: bold;
    font-size: 0.78rem;
    letter-spacing: 1px;
    padding: 15px 18px;
    transition: 0.2s;
}

.main-nav a:hover {
    background: #d4a017;
    color: white;
}


/* HERO */

.hero {
    min-height: 440px;
    display: flex;
    align-items: center;
    padding: 60px 8%;
    background:
        linear-gradient(
        90deg,
        rgba(0,0,0,0.88) 0%,
        rgba(0,0,0,0.68) 45%,
        rgba(0,0,0,0.18) 100%
    ),
    url("../images/SGL Banner.png") center center / cover no-repeat;
        radial-gradient(
            circle at 80% 50%,
            #34373d,
            #0b0c0e 55%
        );
    border-bottom: 1px solid #292929;
}

.hero-content {
    max-width: 760px;
}

.section-label {
    color: #d4a017;
    font-weight: bold;
    letter-spacing: 3px;
    font-size: 0.75rem;
    margin-bottom: 8px;
}

.hero h2 {
    font-size: 3.4rem;
    line-height: 1;
    letter-spacing: -2px;
    margin-bottom: 18px;
}

.hero-description {
    font-size: 1.35rem;
    color: #c5c5c5;
    margin-bottom: 30px;
}

.hero-button {
    display: inline-block;
    background: #d4a017;
    color: white;
    padding: 12px 24px;
    text-decoration: none;
    font-weight: bold;
    letter-spacing: 1px;
}

.hero-button:hover {
    background: #f0b925;
}


/* MAIN SECTIONS */

.league-section {
    max-width: 1250px;
    margin: auto;
    padding: 55px 30px;
}

.league-section > h2 {
    font-size: 1.8rem;
    letter-spacing: 2px;
    margin-bottom: 25px;
    border-left: 5px solid #d4a017;
    padding-left: 15px;
}


/* NEWS */

.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.news-card {
    background: #131519;
    border: 1px solid #292c31;
    border-top: 3px solid #d4a017;
    padding: 28px;
    min-height: 190px;
    transition: transform 0.2s, border-color 0.2s;
}

.news-card:hover {
    transform: translateY(-5px);
    border-color: #d4a017;
    box-shadow: 0 8px 22px rgba(212, 160, 23, 0.15);
}

.news-card h3 {
    font-size: 1.45rem;
    margin-bottom: 10px;
}

.news-card p:last-child {
    color: #aeb0b4;
}
/* TEAMS */

.teams-intro {
    color: #c5c5c5;
    margin-bottom: 25px;
}

.teams-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.team-card {
    background: #131519;
    border: 1px solid #292c31;
    border-top: 3px solid #d4a017;
    padding: 22px;
    font-weight: bold;
    min-height: 90px;
    display: flex;
    align-items: center;
    text-decoration: none;
color: inherit;
    transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s;
}
.team-card:hover {
    transform: translateY(-5px);
    border-color: #d4a017;
    box-shadow: 0 6px 18px rgba(0,0,0,0.35);
}

/* DIVISIONS */

.divisions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.division-card {
    background: #131519;
    border: 1px solid #292c31;
    border-top: 3px solid #d4a017;
    padding: 24px;
}

.division-card h3 {
    color: #d4a017;
    font-size: 1.15rem;
    letter-spacing: 1.5px;
    margin-bottom: 14px;
}

.division-card p {
    color: #f5f5f5;
    padding: 8px 0;
    border-bottom: 1px solid #292c31;
}

.division-card p:last-child {
    border-bottom: none;
}
/* CONFERENCES */

.league-subnav {
    display: none;
}

.league-subnav a {
    display: inline-block;
    background: #131519;
    border: 1px solid #292c31;
    border-top: 3px solid #d4a017;
    color: #f5f5f5;
    text-decoration: none;
    font-size: 0.78rem;
    font-weight: bold;
    letter-spacing: 1px;
    padding: 10px 18px;
    transition: transform 0.2s, border-color 0.2s, color 0.2s;
}

.league-subnav a:visited {
    color: #f5f5f5;
}

.league-subnav a:hover {
    transform: translateY(-3px);
    border-color: #d4a017;
    color: #d4a017;
}

.conferences-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.conference-card {
    background: #131519;
    border: 1px solid #292c31;
    border-top: 3px solid #d4a017;
    padding: 28px;
}

.conference-card h3 {
    color: #d4a017;
    font-size: 1.35rem;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
}

.conference-division {
    background: #0d0f12;
    border: 1px solid #292c31;
    border-left: 3px solid #d4a017;
    padding: 16px 18px;
    margin-bottom: 12px;
}

.conference-division:last-child {
    margin-bottom: 0;
}

.conference-division h4 {
    color: #f5f5f5;
    font-size: 0.95rem;
    letter-spacing: 1px;
    margin: 0;
}

/* LEAGUE SNAPSHOT */

.snapshot-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.snapshot-card {
    text-align: center;
    background: #111317;
    border-top: 3px solid #d4a017;
    padding: 30px 10px;
    text-decoration: none;
color: inherit;
}

.snapshot-card span {
    display: block;
    font-size: 3rem;
    font-weight: 900;
    color: #d4a017;
}

.snapshot-card p {
    color: #92959a;
    font-size: 0.75rem;
    font-weight: bold;
    letter-spacing: 2px;
}


/* FOOTER */

footer {
    background: #050505;
    border-top: 1px solid #292929;
    color: #777;
    text-align: center;
    padding: 35px;
    font-size: 0.8rem;
}
.league-logo {
    width: 180px;
    height: auto;
    display: block;
    margin: 0 auto;
}

/* MOBILE */

@media (max-width: 800px) {

    .league-brand h1 {
        font-size: 1.8rem;
    }

    .hero {
        min-height: 360px;
    }

    .hero h2 {
        font-size: 2.5rem;
    }

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

    .snapshot-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}