/* =========================================================
   THAT CLASSIC ROCK
   Main Stylesheet
   ========================================================= */

/* ---------------------------------------------------------
   CSS Variables
   --------------------------------------------------------- */

:root {
    --bg: #090909;
    --panel: #151515;
    --panel2: #1d1d1d;
    --text: #f5f5f5;
    --muted: #b5b5b5;
    --red: #d71920;
    --gold: #e3b341;
    --line: #303030;
}


/* ---------------------------------------------------------
   Global Styles
   --------------------------------------------------------- */

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: radial-gradient(
        circle at top,
        #202020 0,
        #090909 48%
    );
    color: var(--text);
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.6;
}

a {
    color: inherit;
    text-decoration: none;
}


/* ---------------------------------------------------------
   Layout
   --------------------------------------------------------- */

.container {
    width: min(1120px, 92%);
    margin: auto;
}


/* ---------------------------------------------------------
   Header & Navigation
   --------------------------------------------------------- */

header {
    position: sticky;
    top: 0;
    z-index: 20;
    background: rgba(5, 5, 5, 0.94);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid var(--line);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    min-height: 76px;
}

.logo {
    font-weight: 900;
    letter-spacing: 1px;
    font-size: 1.45rem;
}

.logo span {
    color: var(--red);
}

nav {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
}

nav a {
    color: #ddd;
    font-weight: 700;
    font-size: 0.94rem;
}

nav a:hover {
    color: var(--gold);
}


/* ---------------------------------------------------------
   Hero
   --------------------------------------------------------- */

.hero {
    padding: 90px 0 75px;
    text-align: center;
    border-bottom: 1px solid var(--line);
}

.kicker {
    color: var(--gold);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 3px;
}

h1 {
    font-size: clamp(2.8rem, 8vw, 6.2rem);
    line-height: 0.95;
    margin: 14px 0;
    text-transform: uppercase;
    text-shadow: 4px 4px 0 #000;
}

h2 {
    font-size: 2rem;
    margin-top: 0;
}

h3 {
    margin-bottom: 7px;
}

.hero p {
    max-width: 720px;
    margin: 20px auto;
    color: var(--muted);
    font-size: 1.1rem;
}


/* ---------------------------------------------------------
   Buttons
   --------------------------------------------------------- */

.btn {
    display: inline-block;
    background: var(--red);
    padding: 14px 24px;
    border-radius: 5px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 8px;
}

.btn:hover {
    filter: brightness(1.15);
}

.btn.alt {
    background: transparent;
    border: 1px solid #666;
}


/* ---------------------------------------------------------
   Sections
   --------------------------------------------------------- */

section {
    padding: 58px 0;
}


/* ---------------------------------------------------------
   Cards & Grid
   --------------------------------------------------------- */

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

.card {
    background: linear-gradient(
        145deg,
        var(--panel2),
        var(--panel)
    );
    border: 1px solid var(--line);
    border-radius: 10px;
    padding: 24px;
}

.card p {
    color: var(--muted);
}


/* ---------------------------------------------------------
   Badges
   --------------------------------------------------------- */

.badge {
    display: inline-block;
    background: #252525;
    border: 1px solid #444;
    border-radius: 30px;
    padding: 5px 10px;
    color: var(--gold);
    font-size: 0.8rem;
    font-weight: 800;
}


/* ---------------------------------------------------------
   Live Player
   --------------------------------------------------------- */

.player {
    background: #111;
    border: 1px solid #444;
    border-radius: 12px;
    padding: 28px;
    text-align: center;
    box-shadow: 0 12px 35px #0008;
}

.player-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.play {
    width: 82px;
    height: 82px;
    border-radius: 50%;
    border: 0;
    background: var(--red);
    color: #fff;
    font-size: 2rem;
    cursor: pointer;
}

.status {
    margin: 15px 0;
    color: var(--gold);
    font-weight: 800;
}


/* ---------------------------------------------------------
   Schedule
   --------------------------------------------------------- */

.schedule {
    width: 100%;
    border-collapse: collapse;
    background: #111;
    border: 1px solid var(--line);
    border-radius: 8px;
    overflow: hidden;
}

.schedule th,
.schedule td {
    padding: 14px;
    border-bottom: 1px solid var(--line);
    text-align: left;
}

.schedule th {
    color: var(--gold);
    background: #191919;
}

.schedule td {
    color: #ddd;
}


/* ---------------------------------------------------------
   Forms
   --------------------------------------------------------- */

form {
    display: grid;
    gap: 14px;
    max-width: 700px;
}

input,
textarea {
    width: 100%;
    padding: 14px;
    background: #101010;
    border: 1px solid #444;
    color: #fff;
    border-radius: 5px;
    font: inherit;
}

textarea {
    min-height: 150px;
}


/* ---------------------------------------------------------
   Page Headers & Small Text
   --------------------------------------------------------- */

.pagehead {
    padding: 65px 0 35px;
    text-align: center;
}

.small {
    font-size: 0.9rem;
    color: var(--muted);
}


/* ---------------------------------------------------------
   Footer
   --------------------------------------------------------- */

footer {
    border-top: 1px solid var(--line);
    padding: 30px 0;
    color: #aaa;
    text-align: center;
}


/* ---------------------------------------------------------
   Responsive Design
   --------------------------------------------------------- */

@media (max-width: 800px) {

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

    .nav {
        align-items: flex-start;
        padding: 15px 0;
        flex-direction: column;
    }

    nav {
        gap: 12px;
    }

    h1 {
        font-size: 3.2rem;
    }

    .player-container iframe {
        max-width: 100%;
    }

        .weather-section {
            padding: 60px 0 80px;
        }

        .weather-box {
            max-width: 740px;
            margin: 0 auto;
            background: #18120f;
            border: 1px solid rgba(229, 166, 73, 0.35);
            border-radius: 12px;
            padding: 20px;
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.35);
        }

        .weather-frame {
            width: 100%;
            overflow: hidden;
            border-radius: 8px;
        }

        .weather-frame iframe {
            display: block;
            width: 100%;
            height: 520px;
            border: 0;
        }

        .weather-link {
            position: relative;
            z-index: 1;
            display: block;
            height: 20px;
            text-indent: -9999em;
            margin: -20px 0 0 0;
        }

        .weather-intro {
            max-width: 800px;
            margin: 0 auto;
            text-align: center;
        }

        .weather-intro p {
            margin-top: 15px;
        }

        @media (max-width: 700px) {

            .weather-section {
                padding: 40px 15px 60px;
            }

            .weather-box {
                padding: 10px;
            }

            .weather-frame iframe {
                height: 520px;
            }
        }





