/* =========================================
   GLOBAL
========================================= */

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

html {
    scroll-behavior: smooth;
}

body {
    background: #02060c;
    color: #eaf6ff;
    font-family: "Inter", Arial, sans-serif;
    overflow-x: hidden;
}

img {
    display: block;
    max-width: 100%;
}

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

button,
input {
    font-family: inherit;
}


/* =========================================
   VARIABLES
========================================= */

:root {

    --blue: #009dff;

    --blue-bright: #00c8ff;

    --blue-dark: #006bb0;

    --black: #02060c;

    --dark: #06111c;

    --dark-2: #091a28;

    --border: rgba(0, 157, 255, 0.3);

    --text: #eaf6ff;

    --muted: #8295a6;

    --max-width: 1200px;

}


/* =========================================
   TYPOGRAPHY
========================================= */

h1,
h2,
h3,
.logo,
.eyebrow,
.button,
.nav-link {
    font-family: "Orbitron", sans-serif;
}

h2 {
    font-size: clamp(32px, 5vw, 58px);
    line-height: 1;
    letter-spacing: 0.05em;
}

p {
    line-height: 1.7;
}


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

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;

    z-index: 1000;

    background:
        linear-gradient(
            rgba(2, 6, 12, 0.92),
            rgba(2, 6, 12, 0.55),
            transparent
        );

    backdrop-filter: blur(8px);
}

.header-inner {
    max-width: var(--max-width);

    margin: auto;

    height: 80px;

    padding: 0 25px;

    display: flex;

    align-items: center;

    justify-content: space-between;
}


/* LOGO */

.logo {
    font-size: 27px;

    font-weight: 800;

    letter-spacing: 0.15em;

    color: white;

    text-shadow:
        0 0 20px rgba(0, 157, 255, 0.5);
}


/* NAV */

.main-nav {
    display: flex;

    gap: 35px;
}

.nav-link {
    font-size: 11px;

    font-weight: 600;

    letter-spacing: 0.1em;

    color: #c8d6df;

    transition: 0.25s;
}

.nav-link:hover,
.nav-link.active {
    color: var(--blue);
}


/* MOBILE MENU */

.mobile-menu-button {
    display: none;

    width: 42px;
    height: 42px;

    background: transparent;

    border: 1px solid var(--border);

    cursor: pointer;

    padding: 8px;
}

.mobile-menu-button span {
    display: block;

    height: 2px;

    margin: 5px 0;

    background: var(--blue);
}


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

.hero {
    min-height: 100vh;

    position: relative;

    display: flex;

    align-items: center;

    overflow: hidden;
}


/* HERO IMAGE */

.hero-background {
    position: absolute;

    inset: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;

    object-position: center;
}


/* DARK OVERLAY */

.hero-overlay {
    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(2, 6, 12, 0.95) 0%,
            rgba(2, 6, 12, 0.65) 45%,
            rgba(2, 6, 12, 0.2) 100%
        );

    z-index: 1;
}


/* HERO CONTENT */

.hero-content {
    position: relative;

    z-index: 2;

    width: min(1100px, 90%);

    margin: auto;

    padding-top: 70px;
}

.eyebrow {
    color: var(--blue);

    font-size: 12px;

    font-weight: 600;

    letter-spacing: 0.25em;

    margin-bottom: 15px;
}


.hero h1 {
    font-size: clamp(55px, 9vw, 110px);

    line-height: 0.88;

    letter-spacing: 0.02em;

    max-width: 800px;
}

.hero h1 span {
    display: block;

    color: var(--blue);

    text-shadow:
        0 0 15px rgba(0, 157, 255, 0.5),
        0 0 50px rgba(0, 157, 255, 0.25);
}

.hero-subtitle {
    margin-top: 25px;

    font-family: "Orbitron", sans-serif;

    font-size: 14px;

    letter-spacing: 0.2em;

    color: #d8e9f5;
}


/* BUTTONS */

.hero-buttons {
    display: flex;

    gap: 15px;

    margin-top: 35px;
}

.button {
    display: inline-flex;

    align-items: center;

    justify-content: center;

    min-height: 48px;

    padding: 0 25px;

    border: 1px solid var(--blue);

    background: rgba(2, 15, 25, 0.75);

    color: white;

    font-size: 11px;

    font-weight: 600;

    letter-spacing: 0.1em;

    cursor: pointer;

    transition: 0.25s;
}

.button:hover {
    background: var(--blue);

    box-shadow:
        0 0 25px rgba(0, 157, 255, 0.35);

    transform: translateY(-2px);
}

.button-primary {
    background: var(--blue);

    color: white;
}

.button.small {
    min-height: 38px;

    padding: 0 15px;

    font-size: 10px;
}


/* SCROLL INDICATOR */

.scroll-indicator {
    position: absolute;

    z-index: 2;

    bottom: 30px;

    left: 50%;

    width: 25px;
    height: 40px;

    transform: translateX(-50%);
}

.scroll-indicator::before {
    content: "";

    position: absolute;

    left: 50%;

    top: 0;

    width: 1px;

    height: 35px;

    background: var(--blue);

    transform: translateX(-50%);
}

.scroll-indicator span {
    position: absolute;

    bottom: 0;

    left: 50%;

    width: 7px;
    height: 7px;

    border-right: 1px solid var(--blue);
    border-bottom: 1px solid var(--blue);

    transform:
        translateX(-50%)
        rotate(45deg);
}


/* =========================================
   GENERAL SECTIONS
========================================= */

.section {
    padding: 110px 25px;

    border-top: 1px solid rgba(0, 157, 255, 0.12);
}

.section-header {
    max-width: var(--max-width);

    margin: 0 auto 50px;
}

.section-header p:last-child {
    color: var(--muted);

    margin-top: 15px;
}

.center {
    text-align: center;
}


/* =========================================
   MUSIC
========================================= */

.music-section {
    background:
        radial-gradient(
            circle at 50% 0%,
            rgba(0, 157, 255, 0.09),
            transparent 45%
        );
}

.music-player-container {
    max-width: var(--max-width);

    margin: auto;

    display: grid;

    grid-template-columns:
        minmax(250px, 350px)
        1fr;

    gap: 60px;

    align-items: center;
}


/* ALBUM ART */

.album-art {
    position: relative;

    aspect-ratio: 1;

    border: 1px solid var(--border);

    background: #07131f;

    overflow: hidden;

    box-shadow:
        0 0 50px rgba(0, 157, 255, 0.1);
}

.album-art::after {
    content: "";

    position: absolute;

    inset: 10px;

    border: 1px solid rgba(0, 157, 255, 0.25);

    pointer-events: none;
}

.album-art img {
    width: 100%;
    height: 100%;

    object-fit: cover;
}


/* TRACK INFO */

.track-label {
    color: var(--blue);

    font-family: "Orbitron", sans-serif;

    font-size: 10px;

    letter-spacing: 0.2em;
}

.current-track h3 {
    margin-top: 8px;

    font-family: "Orbitron", sans-serif;

    font-size: 27px;
}

.current-track p:last-child {
    color: var(--blue);

    margin-top: 4px;
}


/* AUDIO PLAYER */

#audioPlayer {
    width: 100%;

    margin: 30px 0;

    accent-color: var(--blue);
}


/* PLAYLIST */

.playlist {
    border-top: 1px solid rgba(0, 157, 255, 0.2);
}

.playlist-item {
    width: 100%;

    display: flex;

    align-items: center;

    gap: 15px;

    padding: 15px 8px;

    background: transparent;

    color: #c8d6df;

    border: 0;

    border-bottom: 1px solid rgba(255, 255, 255, 0.05);

    text-align: left;

    cursor: pointer;

    transition: 0.2s;
}

.playlist-item:hover {
    background: rgba(0, 157, 255, 0.06);
}

.playlist-item.active {
    color: var(--blue);

    background: rgba(0, 157, 255, 0.08);
}

.playlist-number {
    width: 25px;

    color: var(--blue);

    font-family: "Orbitron", sans-serif;

    font-size: 11px;
}

.playlist-title {
    flex: 1;

    font-size: 14px;
}

.player-help {
    margin-top: 20px;

    font-size: 12px;

    color: var(--muted);
}


/* =========================================
   ABOUT
========================================= */

.about-section {
    max-width: 1400px;

    margin: auto;

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 70px;

    align-items: center;
}

.about-content {
    max-width: 550px;
}

.about-content p:not(.eyebrow) {
    margin-bottom: 20px;

    color: #9eb1c0;
}

.about-image {
    border: 1px solid var(--border);

    overflow: hidden;
}

.about-image img {
    width: 100%;

    aspect-ratio: 1.3;

    object-fit: cover;
}


/* =========================================
   SHOWS
========================================= */

.shows-section {
    background:
        linear-gradient(
            rgba(3, 12, 21, 0.95),
            rgba(3, 12, 21, 0.95)
        );
}

.shows-grid {
    max-width: var(--max-width);

    margin: auto;

    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 15px;
}

.show-card {
    min-height: 230px;

    padding: 22px;

    display: flex;

    flex-direction: column;

    justify-content: space-between;

    border: 1px solid rgba(0, 157, 255, 0.25);

    background:
        linear-gradient(
            145deg,
            rgba(7, 23, 36, 0.95),
            rgba(2, 8, 15, 0.95)
        );

    transition: 0.25s;
}

.show-card:hover {
    border-color: var(--blue);

    transform: translateY(-4px);

    box-shadow:
        0 15px 50px rgba(0, 157, 255, 0.08);
}

.show-date span {
    display: block;

    color: var(--blue);

    font-family: "Orbitron", sans-serif;

    font-size: 11px;

    letter-spacing: 0.15em;
}

.show-date strong {
    display: block;

    margin-top: 3px;

    font-family: "Orbitron", sans-serif;

    font-size: 40px;
}

.show-info h3 {
    font-family: "Orbitron", sans-serif;

    font-size: 12px;

    letter-spacing: 0.05em;
}

.show-info p {
    color: var(--muted);

    font-size: 13px;

    margin-top: 6px;
}


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

.contact-section {
    max-width: var(--max-width);

    margin: auto;

    display: grid;

    grid-template-columns: 1fr auto;

    gap: 30px;

    align-items: end;
}

.contact-section > div p:last-child {
    color: var(--muted);

    margin-top: 10px;
}

.newsletter-form {
    display: flex;

    width: min(500px, 100%);
}

.newsletter-form input {
    flex: 1;

    min-width: 0;

    padding: 15px;

    border: 1px solid rgba(0, 157, 255, 0.25);

    background: #06111c;

    color: white;

    outline: none;
}

.newsletter-form input:focus {
    border-color: var(--blue);
}

.form-message {
    grid-column: 2;

    color: var(--blue);

    font-size: 12px;
}


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

.footer {
    padding: 60px 25px;

    border-top: 1px solid rgba(0, 157, 255, 0.15);

    text-align: center;

    background: #01050a;
}

.footer-logo {
    font-family: "Orbitron", sans-serif;

    font-size: 30px;

    font-weight: 800;

    letter-spacing: 0.15em;
}

.footer > p {
    color: var(--muted);

    font-size: 12px;

    margin-top: 10px;
}

.footer-links {
    display: flex;

    justify-content: center;

    flex-wrap: wrap;

    gap: 25px;

    margin: 30px 0;
}

.footer-links a {
    color: #aab9c5;

    font-family: "Orbitron", sans-serif;

    font-size: 10px;
}

.footer-links a:hover {
    color: var(--blue);
}

.copyright {
    opacity: 0.5;
}


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

@media (max-width: 900px) {

    .mobile-menu-button {
        display: block;
    }

    .main-nav {
        position: absolute;

        top: 80px;

        left: 20px;
        right: 20px;

        display: none;

        flex-direction: column;

        gap: 0;

        padding: 15px;

        background: rgba(2, 8, 15, 0.98);

        border: 1px solid var(--border);
    }

    .main-nav.open {
        display: flex;
    }

    .nav-link {
        padding: 15px;
    }

    .music-player-container {
        grid-template-columns: 1fr;

        max-width: 600px;
    }

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

    .about-content {
        max-width: none;
    }

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

}


@media (max-width: 600px) {

    .header-inner {
        height: 70px;
    }

    .hero {
        min-height: 90vh;
    }

    .hero-content {
        padding-top: 100px;
    }

    .hero h1 {
        font-size: 52px;
    }

    .hero-buttons {
        flex-direction: column;

        align-items: flex-start;
    }

    .section {
        padding: 80px 20px;
    }

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

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

    .newsletter-form {
        width: 100%;
    }

    .form-message {
        grid-column: auto;
    }

}


@media (max-width: 400px) {

    .hero h1 {
        font-size: 43px;
    }

    .hero-subtitle {
        font-size: 11px;
    }

}