/* =========================
   BASIC WEBSITE SETTINGS
========================= */

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

html {
    scroll-behavior: smooth;
}

body {
    background-color: #080808;
    color: white;
    font-family: Arial, Helvetica, sans-serif;
}


/* =========================
   HEADER
========================= */

.site-header {
    background-color: #050505;
    border-bottom: 2px solid #d4af37;
    padding: 12px 5% 14px;
}


/* =========================
   BRAND / LOGO
========================= */

.brand {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo {
    width: 95px;
    height: 95px;
    object-fit: contain;
}

.brand-text h1 {
    color: #d4af37;
    font-size: 27px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.brand-text p {
    color: #cccccc;
    margin-top: 5px;
    font-size: 14px;
}


/* =========================
   NAVIGATION
========================= */

.main-nav {
    margin-top: 15px;
    display: flex;
    gap: 28px;
    flex-wrap: wrap;
}

.main-nav a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 14px;
    padding-bottom: 7px;
}

.main-nav a:hover {
    color: #d4af37;
}

.main-nav .active {
    color: #d4af37;
    border-bottom: 2px solid #d4af37;
}


/* =========================
   HERO
========================= */

.hero {
    min-height: 610px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 60px 8%;
    gap: 50px;

    background:
        radial-gradient(
            circle at center,
            #242424 0%,
            #111111 45%,
            #050505 100%
        );
}

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

.hero-small {
    color: #d4af37;
    letter-spacing: 5px;
    font-weight: bold;
    margin-bottom: 15px;
}

.hero h2 {
    font-size: 65px;
    line-height: 0.95;
    text-transform: uppercase;
}

.hero h2 span {
    color: #d4af37;
    display: block;
}

.hero-description {
    color: #cccccc;
    font-size: 18px;
    line-height: 1.6;
    margin-top: 25px;
    max-width: 550px;
}


/* =========================
   HERO BUTTONS
========================= */

.hero-buttons {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.button {
    display: inline-block;
    padding: 14px 25px;
    text-decoration: none;
    font-weight: bold;
    text-transform: uppercase;
    border-radius: 4px;
}

.gold-button {
    background-color: #d4af37;
    color: black;
}

.gold-button:hover {
    background-color: #f1d46a;
}

.outline-button {
    border: 2px solid #d4af37;
    color: #d4af37;
}

.outline-button:hover {
    background-color: #d4af37;
    color: black;
}


/* =========================
   HERO LOGO
========================= */

.hero-logo img {
    width: 430px;
    max-width: 100%;
}


/* =========================
   SECTION HEADINGS
========================= */

.section-heading {
    text-align: center;
    margin-bottom: 40px;
}

.section-heading p {
    color: #d4af37;
    font-size: 13px;
    font-weight: bold;
    letter-spacing: 4px;
    margin-bottom: 10px;
}

.section-heading h2 {
    font-size: 38px;
    text-transform: uppercase;
}


/* =========================
   TEAM CENTRAL
========================= */

.team-dashboard {
    background-color: #0b0b0b;
    padding: 75px 8%;
    border-top: 1px solid #222222;
}

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

.info-card {
    background:
        linear-gradient(
            145deg,
            #181818,
            #0d0d0d
        );

    border: 1px solid #2d2d2d;
    border-top: 3px solid #d4af37;
    padding: 25px;
    min-height: 260px;
    border-radius: 5px;
    transition: 0.2s ease;
}

.info-card:hover {
    border-color: #d4af37;
    transform: translateY(-4px);
}

.card-label {
    color: #d4af37;
    font-size: 12px;
    letter-spacing: 2px;
    font-weight: bold;
    margin-bottom: 15px;
}

.info-card h3 {
    font-size: 21px;
    margin-bottom: 18px;
}

.info-card p {
    color: #bbbbbb;
    line-height: 1.6;
    margin-bottom: 7px;
}

.info-card .card-date {
    color: white;
    font-weight: bold;
}

.info-card a {
    display: inline-block;
    margin-top: 15px;
    color: #d4af37;
    text-decoration: none;
    font-weight: bold;
}

.info-card a:hover {
    color: white;
}

.announcement-card {
    background:
        linear-gradient(
            145deg,
            #241d08,
            #111111
        );
}


/* =========================
   ROSTER
========================= */

.roster-section {
    background-color: #050505;
    padding: 80px 8%;
    border-top: 1px solid #242424;
}


/* =========================
   COACHES
========================= */

.coaches-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    max-width: 1000px;
    margin: 0 auto;
}

.coach-card {
    position: relative;

    background:
        linear-gradient(
            145deg,
            #1b1b1b,
            #090909
        );

    border: 1px solid #333333;
    border-radius: 6px;
    overflow: hidden;
    transition: 0.25s ease;
}

.coach-card:hover {
    transform: translateY(-5px);
    border-color: #d4af37;
}

.coach-role {
    position: absolute;
    top: 15px;
    left: 15px;

    background-color: #d4af37;
    color: black;

    padding: 8px 12px;
    border-radius: 4px;

    font-size: 12px;
    font-weight: bold;
    letter-spacing: 1px;

    z-index: 2;
}

.coach-photo {
    height: 280px;

    display: flex;
    justify-content: center;
    align-items: center;

    background:
        radial-gradient(
            circle,
            #292929,
            #101010
        );

    color: #666666;
    font-size: 12px;
    font-weight: bold;
    letter-spacing: 2px;
}

.coach-info {
    padding: 22px;
    border-top: 3px solid #d4af37;
    text-align: center;
}

.coach-info h3 {
    color: white;
    text-transform: uppercase;
    font-size: 22px;
    margin-bottom: 8px;
}

.coach-info p {
    color: #d4af37;
    font-size: 14px;
    font-weight: bold;
    text-transform: uppercase;
}


/* =========================
   PLAYERS
========================= */

.player-heading {
    margin-top: 90px;
}

.roster-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
}

.player-card {
    position: relative;

    background:
        linear-gradient(
            145deg,
            #171717,
            #0a0a0a
        );

    border: 1px solid #292929;
    border-radius: 6px;
    overflow: hidden;
    transition: 0.25s ease;
}

.player-card:hover {
    transform: translateY(-5px);
    border-color: #d4af37;
}

.player-number {
    position: absolute;
    top: 12px;
    left: 15px;

    background-color: #d4af37;
    color: black;

    font-size: 18px;
    font-weight: bold;

    padding: 8px 12px;
    border-radius: 4px;

    z-index: 2;
}

.player-photo {
    height: 260px;

    display: flex;
    justify-content: center;
    align-items: center;

    background:
        radial-gradient(
            circle,
            #252525,
            #101010
        );

    color: #666666;
    font-size: 12px;
    font-weight: bold;
    letter-spacing: 2px;
}

.player-info {
    padding: 20px;
    border-top: 2px solid #d4af37;
}

.player-info h3 {
    color: white;
    text-transform: uppercase;
    font-size: 21px;
    margin-bottom: 7px;
}

.player-info p {
    color: #d4af37;
    font-size: 14px;
}


/* =========================
   SCHEDULE
========================= */

.schedule-section {
    background:
        linear-gradient(
            180deg,
            #0c0c0c,
            #050505
        );

    padding: 85px 8%;
    border-top: 1px solid #242424;
}

.schedule-intro {
    max-width: 700px;
    margin: -15px auto 45px;
    text-align: center;
    color: #aaaaaa;
    font-size: 16px;
    line-height: 1.6;
}

.schedule-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
}

.game-card {
    display: flex;

    background:
        linear-gradient(
            145deg,
            #181818,
            #0b0b0b
        );

    border: 1px solid #303030;
    border-radius: 8px;
    overflow: hidden;
    transition: 0.25s ease;
}

.game-card:hover {
    border-color: #d4af37;
    transform: translateY(-4px);
}

.game-date {
    min-width: 105px;
    background-color: #d4af37;
    color: black;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    padding: 25px 15px;
}

.game-month {
    font-size: 14px;
    font-weight: bold;
    letter-spacing: 2px;
}

.game-day {
    font-size: 42px;
    font-weight: 900;
    margin-top: 4px;
}

.game-details {
    padding: 25px;
    width: 100%;
}

.game-status {
    display: inline-block;
    color: #d4af37;
    border: 1px solid #d4af37;

    padding: 5px 9px;
    border-radius: 3px;

    font-size: 10px;
    font-weight: bold;
    letter-spacing: 1.5px;

    margin-bottom: 15px;
}

.game-details h3 {
    font-size: 20px;
    line-height: 1.4;
    margin-bottom: 17px;
}

.game-details h3 span {
    color: #777777;
    font-size: 13px;
    margin: 0 5px;
    text-transform: uppercase;
}

.game-info-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 25px;
    margin-bottom: 17px;
}

.game-info-row p {
    color: #cccccc;
    font-size: 14px;
}

.game-location {
    border-top: 1px solid #292929;
    padding-top: 15px;
}

.game-location strong {
    color: #d4af37;
    display: block;
    margin-bottom: 5px;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.game-location p {
    color: #aaaaaa;
    font-size: 14px;
}


/* =========================
   EVENTS
========================= */

.events-section {
    background-color: #0a0a0a;
    padding: 85px 8%;
    border-top: 1px solid #242424;
}

.events-intro {
    max-width: 720px;
    margin: -15px auto 45px;
    color: #aaaaaa;
    text-align: center;
    line-height: 1.7;
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    max-width: 1100px;
    margin: 0 auto;
}

.event-card {
    background:
        linear-gradient(
            145deg,
            #191919,
            #0b0b0b
        );

    border: 1px solid #303030;
    border-left: 4px solid #d4af37;
    border-radius: 6px;
    padding: 28px;
    transition: 0.25s ease;
}

.event-card:hover {
    border-color: #d4af37;
    transform: translateY(-4px);
}

.featured-event {
    background:
        linear-gradient(
            145deg,
            #241e0b,
            #0d0d0d
        );
}

.event-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
    margin-bottom: 22px;
}

.event-type {
    background-color: #d4af37;
    color: black;
    padding: 7px 10px;
    border-radius: 3px;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 1px;
}

.event-date {
    color: #d4af37;
    font-size: 12px;
    font-weight: bold;
    letter-spacing: 1px;
}

.event-card h3 {
    font-size: 24px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.event-details {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    padding-bottom: 20px;
    border-bottom: 1px solid #2b2b2b;
}

.event-details p {
    color: #bbbbbb;
    line-height: 1.5;
}

.event-details strong {
    color: white;
}

.event-description {
    color: #999999;
    line-height: 1.7;
    margin-top: 20px;
}


/* =========================
   PHOTOS
========================= */

.photos-section {
    background:
        linear-gradient(
            180deg,
            #050505,
            #101010
        );

    padding: 85px 8%;
    border-top: 1px solid #242424;
}

.photos-intro {
    max-width: 700px;
    margin: -15px auto 45px;
    text-align: center;
    color: #aaaaaa;
    line-height: 1.7;
}

.photo-grid {
    max-width: 1200px;
    margin: 0 auto;

    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.photo-card {
    background-color: #111111;
    border: 1px solid #292929;
    border-radius: 8px;
    overflow: hidden;
    transition: 0.25s ease;
}

.photo-card:hover {
    transform: translateY(-5px);
    border-color: #d4af37;
}

.photo-placeholder {
    height: 260px;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    gap: 12px;

    background:
        radial-gradient(
            circle at center,
            #292929 0%,
            #161616 50%,
            #0d0d0d 100%
        );

    color: #777777;
}

.photo-icon {
    font-size: 40px;
}

.photo-placeholder p {
    font-size: 12px;
    font-weight: bold;
    letter-spacing: 2px;
}

.photo-caption {
    padding: 20px;
    border-top: 2px solid #d4af37;
}

.photo-caption span {
    color: #d4af37;
    font-size: 11px;
    font-weight: bold;
    letter-spacing: 2px;
}

.photo-caption h3 {
    margin-top: 8px;
    font-size: 20px;
    text-transform: uppercase;
}

.featured-photo {
    grid-column: span 2;
}

.featured-photo .photo-placeholder {
    height: 340px;
}


/* =========================
   CONTACT COACH
========================= */

.contact-section {
    background:
        radial-gradient(
            circle at center,
            #181818 0%,
            #090909 55%,
            #050505 100%
        );

    padding: 90px 8%;
    border-top: 1px solid #242424;
}

.contact-intro {
    max-width: 720px;
    margin: -15px auto 50px;
    text-align: center;
    color: #aaaaaa;
    line-height: 1.7;
}

.contact-container {
    max-width: 1150px;
    margin: 0 auto;

    display: grid;
    grid-template-columns: 0.8fr 1.4fr;
    gap: 35px;
}


/* LEFT CONTACT INFORMATION */

.contact-info {
    background:
        linear-gradient(
            145deg,
            #1a1a1a,
            #0a0a0a
        );

    border: 1px solid #303030;
    border-top: 4px solid #d4af37;
    border-radius: 8px;

    padding: 35px;

    text-align: center;
}

.contact-logo {
    width: 180px;
    max-width: 100%;
    margin-bottom: 20px;
}

.contact-info h3 {
    color: #d4af37;
    font-size: 24px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.contact-info > p {
    color: #aaaaaa;
    line-height: 1.7;
    margin-bottom: 30px;
}

.contact-info-box {
    border: 1px solid #333333;
    background-color: #101010;
    padding: 18px;
    margin-top: 14px;
    border-radius: 5px;
    text-align: left;
}

.contact-info-box span {
    display: block;
    color: #d4af37;
    font-size: 10px;
    letter-spacing: 2px;
    font-weight: bold;
    margin-bottom: 6px;
}

.contact-info-box strong {
    color: white;
    font-size: 15px;
}

.contact-note {
    margin-top: 25px;
    padding: 18px;
    background-color: #191507;
    border-left: 3px solid #d4af37;
    text-align: left;
}

.contact-note strong {
    color: #d4af37;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 1px;
}

.contact-note p {
    color: #aaaaaa;
    margin-top: 7px;
    line-height: 1.5;
    font-size: 13px;
}


/* CONTACT FORM */

.contact-form-wrapper {
    background:
        linear-gradient(
            145deg,
            #171717,
            #090909
        );

    border: 1px solid #303030;
    border-radius: 8px;
    padding: 35px;
}

.contact-form {
    width: 100%;
}

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

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

.form-group label {
    display: block;
    color: #d4af37;
    font-size: 12px;
    font-weight: bold;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;

    background-color: #080808;

    color: white;

    border: 1px solid #383838;

    border-radius: 5px;

    padding: 14px;

    font-family: Arial, Helvetica, sans-serif;

    font-size: 15px;

    outline: none;
}

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

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #d4af37;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #666666;
}

.form-group select {
    cursor: pointer;
}

.send-button {
    width: 100%;

    background-color: #d4af37;
    color: black;

    border: none;

    border-radius: 5px;

    padding: 16px 25px;

    font-size: 14px;

    font-weight: 900;

    letter-spacing: 1px;

    text-transform: uppercase;

    cursor: pointer;

    transition: 0.2s ease;
}

.send-button:hover {
    background-color: #f1d46a;
    transform: translateY(-2px);
}

.form-notice {
    color: #777777;
    font-size: 12px;
    text-align: center;
    margin-top: 14px;
    line-height: 1.5;
}


/* =========================
   FOOTER
========================= */

.site-footer {
    background-color: #030303;

    border-top: 2px solid #d4af37;

    padding: 45px 20px;

    text-align: center;
}

.footer-logo {
    width: 100px;
    margin-bottom: 12px;
}

.site-footer h3 {
    color: #d4af37;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 7px;
}

.site-footer > p {
    color: #888888;
}

.footer-line {
    width: 80px;
    height: 2px;
    background-color: #d4af37;
    margin: 25px auto;
}

.site-footer .copyright {
    color: #555555;
    font-size: 12px;
}


/* =========================
   TABLET
========================= */

@media (max-width: 1100px) {

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

}


/* =========================
   SMALL TABLET
========================= */

@media (max-width: 900px) {

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

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

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

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

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

    .featured-photo {
        grid-column: span 2;
    }

    .contact-container {
        grid-template-columns: 1fr;
    }

}


/* =========================
   MOBILE
========================= */

@media (max-width: 850px) {

    .hero {
        flex-direction: column;
        text-align: center;
        padding-top: 50px;
    }

    .hero-content {
        order: 2;
    }

    .hero-logo {
        order: 1;
    }

    .hero-logo img {
        width: 280px;
    }

    .hero h2 {
        font-size: 45px;
    }

    .hero-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }

    .brand {
        justify-content: center;
        text-align: center;
    }

    .main-nav {
        justify-content: center;
    }

}


/* =========================
   PHONE
========================= */

@media (max-width: 600px) {

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

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

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

    .section-heading h2 {
        font-size: 30px;
    }

    .brand-text h1 {
        font-size: 21px;
    }

    .logo {
        width: 75px;
        height: 75px;
    }

    .game-card {
        flex-direction: column;
    }

    .game-date {
        min-width: 100%;
        flex-direction: row;
        gap: 10px;
        padding: 14px;
    }

    .game-day {
        font-size: 25px;
        margin-top: 0;
    }

    .event-top {
        align-items: flex-start;
        flex-direction: column;
    }

    .event-details {
        grid-template-columns: 1fr;
    }

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

    .featured-photo {
        grid-column: span 1;
    }

    .featured-photo .photo-placeholder {
        height: 260px;
    }

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

    .contact-form-wrapper {
        padding: 25px 18px;
    }

    .contact-info {
        padding: 25px 18px;
    }

}