/* ============================================
   CLUSTERS OF GREY — styles.css
   Palette: Grey-blue tones from Canva mockup
   Fonts: Gill Sans (shadowed) for header,
          Bebas Neue + Ubuntu Condensed for body
   ============================================ */

:root {
    --bg-hero: #8a96a8;
    --bg-social: #474054;
    --bg-jukebox: #5a6577;
    --bg-about: #a6b2c4;
    --bg-confessions: #6b7a8d;
    --bg-subscribe: #2d3748;
    --bg-footer: #2d3748;
    --text-primary: #e2e8f0;
    --text-secondary: #cbd5e0;
    --text-muted: #a0aec0;
    --accent: #b8a9c9;
    --accent-hover: #d4c5e2;
    --player-bg: rgba(255, 255, 255, 0.12);
    --player-accent: #c4b0d6;
}

/* RESET */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Ubuntu Condensed', 'Gill Sans', 'Gill Sans MT', Calibri, sans-serif;
    color: #3f4654;
    background: #1a202c;
    line-height: 1.6;
    overflow-x: hidden;
}

.site-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

/* ============================================
   NAV
   ============================================ */
.main-nav {
    background: transparent;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 15px 20px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    max-width: 1200px;
    margin: 0 auto;
    z-index: 100;
    transition: background 0.3s ease, padding 0.3s ease;
}

.main-nav.scrolled {
    background: rgba(45, 40, 56, 0.95);
    backdrop-filter: blur(10px);
    padding: 10px 20px;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
}

.nav-links {
    display: flex;
    gap: 50px;
}

.nav-links a {
    color: var(--text-primary);
    text-decoration: none;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.3rem;
    letter-spacing: 0.1em;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--accent-hover);
}

.hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    flex-direction: column;
    gap: 5px;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 2px;
    background: var(--text-primary);
    transition: all 0.3s ease;
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #2d2838;
        flex-direction: column;
        align-items: center;
        gap: 0;
        padding: 10px 0;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links a {
        padding: 12px 20px;
        width: 100%;
        text-align: center;
    }

    .hamburger {
        display: flex;
        position: absolute;
        right: 20px;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }
}

/* ============================================
   HERO
   ============================================ */
.hero {
    background: url('assets/images/grey-clusters.png') center center / cover no-repeat;
    background-color: #b0b8c4;
    min-height: 70vh;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    text-align: center;
    padding: 0 20px 40px;
}

.hero-content {
    width: 100%;
}

.band-name {
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, sans-serif;
    font-size: clamp(1.8rem, 5vw, 4.5rem);
    font-weight: 300;
    letter-spacing: 0.3em;
    color: var(--text-primary);
    text-shadow:
        1px 2px 0px rgba(0, 0, 0, 0.4),
        2px 4px 0px rgba(0, 0, 0, 0.35),
        3px 6px 0px rgba(0, 0, 0, 0.3),
        4px 8px 0px rgba(0, 0, 0, 0.25),
        5px 10px 0px rgba(0, 0, 0, 0.2),
        6px 12px 0px rgba(0, 0, 0, 0.18),
        7px 14px 0px rgba(0, 0, 0, 0.15),
        8px 16px 0px rgba(0, 0, 0, 0.12),
        9px 18px 0px rgba(0, 0, 0, 0.1),
        10px 20px 0px rgba(0, 0, 0, 0.08);
    text-transform: uppercase;
    white-space: nowrap;
}

/* ============================================
   SOCIAL BAR
   ============================================ */
.social-bar {
    background: var(--bg-social);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
    padding: 30px;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-primary);
    text-decoration: none;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.825rem;
    letter-spacing: 0.1em;
    transition: color 0.3s ease;
}

.social-link:hover {
    color: var(--accent-hover);
}

.social-icon {
    width: 28px;
    height: 28px;
}

/* ============================================
   JUKE BOX
   ============================================ */
.jukebox {
    background: var(--bg-jukebox);
    padding: 50px 20px;
}

.jukebox-content {
    max-width: 700px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.jukebox-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.2rem;
    letter-spacing: 0.05em;
    color: var(--text-secondary);
}

.player {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.progress-container {
    position: relative;
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 2px;
    cursor: pointer;
}

.progress-bar {
    height: 100%;
    background: var(--player-accent);
    border-radius: 2px;
    width: 0%;
    transition: width 0.1s linear;
}

.progress-slider {
    position: absolute;
    top: -6px;
    left: 0;
    width: 100%;
    height: 16px;
    opacity: 0;
    cursor: pointer;
    -webkit-appearance: none;
    appearance: none;
}

.player-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.control-btn {
    background: none;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.3s ease, transform 0.2s ease;
    padding: 4px;
}

.control-btn:hover {
    color: var(--accent-hover);
    transform: scale(1.1);
}

.control-btn svg {
    width: 100%;
    height: 100%;
}

.play-btn {
    width: 48px;
    height: 48px;
    background: var(--player-accent);
    border-radius: 50%;
    color: var(--bg-jukebox);
    padding: 10px;
}

.play-btn:hover {
    background: var(--accent-hover);
    color: var(--bg-jukebox);
}

.now-playing {
    text-align: center;
}

.track-name {
    font-family: 'Ubuntu Condensed', sans-serif;
    font-size: 0.85rem;
    color: var(--text-muted);
    letter-spacing: 0.05em;
}

/* ============================================
   ABOUT
   ============================================ */
.about {
    background: var(--bg-about);
    padding: 60px 20px;
    text-align: center;
}

.section-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.8rem;
    letter-spacing: 0.1em;
    margin-bottom: 20px;
    color: #3f4654;
}

.about-text {
    font-family: 'Ubuntu Condensed', sans-serif;
    font-size: 1.05rem;
    line-height: 1.8;
    max-width: 600px;
    margin: 0 auto;
    color: #3f4654;
}

/* ============================================
   CONFESSIONS
   ============================================ */
.confessions {
    background: var(--bg-confessions);
    padding: 60px 20px;
    text-align: center;
}

.coming-soon-label {
    font-family: 'Ubuntu Condensed', sans-serif;
    font-size: 1rem;
    letter-spacing: 0.15em;
    color: var(--accent);
    text-transform: uppercase;
    display: block;
    margin-bottom: 10px;
}

.album-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3rem;
    letter-spacing: 0.2em;
    color: var(--text-primary);
    margin-bottom: 30px;
}

.track-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.track-list li {
    font-family: 'Ubuntu Condensed', sans-serif;
    font-size: 1.15rem;
    color: var(--text-secondary);
    letter-spacing: 0.05em;
    transition: color 0.3s ease;
}

.track-list li:hover {
    color: var(--accent-hover);
}

/* ============================================
   SUBSCRIBE
   ============================================ */
.subscribe {
    background: var(--bg-subscribe);
    padding: 50px 20px;
}

.subscribe-content {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 15px;
}

.subscribe-label {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.5rem;
    color: var(--text-primary);
    letter-spacing: 0.05em;
    white-space: nowrap;
}

.subscribe-input {
    flex: 1;
    background: rgba(255, 255, 255, 0.12);
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding: 12px 16px;
    color: var(--text-primary);
    font-family: 'Ubuntu Condensed', sans-serif;
    font-size: 1rem;
    outline: none;
    transition: border-color 0.3s ease;
}

.subscribe-input::placeholder {
    color: var(--text-muted);
}

.subscribe-input:focus {
    border-bottom-color: var(--accent);
}

.subscribe-btn {
    background: var(--player-accent);
    color: var(--bg-subscribe);
    border: none;
    padding: 12px 24px;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.1rem;
    letter-spacing: 0.1em;
    cursor: pointer;
    transition: background 0.3s ease;
}

.subscribe-btn:hover {
    background: var(--accent-hover);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--bg-footer);
    padding: 20px 20px 30px;
    text-align: center;
}

.footer-line {
    border: none;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    margin-bottom: 20px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.copyright {
    font-family: 'Ubuntu Condensed', sans-serif;
    font-size: 0.85rem;
    color: var(--text-muted);
    letter-spacing: 0.05em;
}

.copyright a {
    color: var(--accent);
    text-decoration: none;
    transition: color 0.3s ease;
}

.copyright a:hover {
    color: var(--accent-hover);
}

/* ============================================
   TABLET (768px and below)
   ============================================ */
@media (max-width: 768px) {
    .hero {
        min-height: 50vh;
        padding: 0 15px 30px;
    }

    .band-name {
        letter-spacing: 0.15em;
    }

    .social-bar {
        gap: 25px;
        flex-wrap: wrap;
        padding: 20px 15px;
    }

    .social-link {
        font-size: 1.3rem;
    }

    .about {
        padding: 40px 20px;
    }

    .about-text {
        font-size: 0.95rem;
    }

    .jukebox {
        padding: 40px 15px;
    }

    .confessions {
        padding: 40px 15px;
    }

    .subscribe-content {
        flex-direction: column;
        text-align: center;
    }

    .subscribe-input {
        width: 100%;
    }

    .album-title {
        font-size: 2.5rem;
    }
}

/* ============================================
   MOBILE (480px and below)
   ============================================ */
@media (max-width: 480px) {
    .hero {
        min-height: 40vh;
        padding: 0 10px 20px;
    }

    .band-name {
        font-size: 1.5rem;
        letter-spacing: 0.08em;
        text-shadow:
            1px 2px 0px rgba(0, 0, 0, 0.4),
            2px 4px 0px rgba(0, 0, 0, 0.3),
            3px 6px 0px rgba(0, 0, 0, 0.2),
            4px 8px 0px rgba(0, 0, 0, 0.1);
    }

    .social-bar {
        gap: 20px;
        padding: 15px 10px;
    }

    .social-link span {
        display: none;
    }

    .social-icon {
        width: 36px;
        height: 36px;
    }

    .about {
        padding: 30px 15px;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .about-text {
        font-size: 0.9rem;
        line-height: 1.7;
    }

    .jukebox {
        padding: 30px 10px;
    }

    .jukebox-title {
        font-size: 1.8rem;
    }

    .player-controls {
        gap: 12px;
    }

    .play-btn {
        width: 40px;
        height: 40px;
        padding: 8px;
    }

    .confessions {
        padding: 30px 15px;
    }

    .album-title {
        font-size: 2rem;
        letter-spacing: 0.15em;
    }

    .track-list li {
        font-size: 1rem;
    }

    .subscribe {
        padding: 30px 15px;
    }

    .subscribe-label {
        font-size: 1.3rem;
    }

    .footer {
        padding: 15px 10px 20px;
    }
}
