/* ==================================
   THE COLOURMIND - ALBUM PAGES
================================== */

:root{
    --bg:#16191d;
    --card:#1c1f24;
    --text:#ffffff;
    --muted:#c7c7c7;
    --blue:#39c7ff;
    --gold:#ffd54a;
    --orange:#ff8c2b;
}

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

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Montserrat',sans-serif;
    background:var(--bg);
    color:var(--text);
    overflow-x:hidden;
}

body::before{
    content:'';
    position:fixed;
    inset:0;
    z-index:-1;

    background:
        radial-gradient(circle at 10% 10%, rgba(255,140,43,.12), transparent 30%),
        radial-gradient(circle at 90% 5%, rgba(57,199,255,.12), transparent 30%),
        radial-gradient(circle at 50% 100%, rgba(255,140,43,.06), transparent 40%);
}

.container{
    width:90%;
    max-width:1400px;
    margin:auto;
}

/* ==========================
   NAVBAR
========================== */

.navbar{
    position:sticky;
    top:0;
    z-index:9999;

    background:rgba(25,25,25,.95);

    backdrop-filter:blur(15px);

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

    box-shadow:
        0 4px 20px rgba(0,0,0,.35);
}

.nav-container{
    display:flex;
    justify-content:space-between;
    align-items:center;

    padding:15px 0;
}

.nav-logo img{
    height:60px;
    width:auto;
}

.nav-links{
    display:flex;
    gap:25px;
    list-style:none;
}

.nav-links a{
    color:#fff;
    font-weight:700;
    letter-spacing:.5px;
    text-decoration:none;
    transition:.3s;
}

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

    text-shadow:
        0 0 10px rgba(255,213,74,.5);
}

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

.hero{
    padding:80px 0;
}

.album-header{
    display:grid;
    grid-template-columns:500px 1fr;
    gap:60px;
    align-items:center;
}

.album-cover img{
    width:100%;
    border-radius:20px;

    box-shadow:
        0 15px 40px rgba(0,0,0,.45);
}

.album-info h1{
    font-size:4rem;
    margin-bottom:20px;
}

.album-info p{
    color:var(--muted);
    line-height:2;
    margin-bottom:20px;
}

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

.btn{
    display:inline-block;

    padding:15px 28px;

    border-radius:8px;

    text-decoration:none;

    font-weight:700;

    margin-right:10px;

    transition:.3s;
}

.btn:hover{
    transform:translateY(-3px);
}

.youtube{
    background:var(--blue);
    color:#000;
}

.spotify{
    background:#1DB954;
    color:#fff;
}

/* ==========================
   TRACK LIST
========================== */

.section{
    padding:80px 0;
}

.section h2{
    text-align:center;
    margin-bottom:40px;
    font-size:2.5rem;
}

.track-list{
    background:var(--card);

    border-radius:20px;

    overflow:hidden;

    border:1px solid #2a2a2a;
}

.track{
    display:flex;
    justify-content:space-between;
    align-items:center;

    padding:20px 25px;

    border-bottom:1px solid #2a2a2a;

    transition:.3s;
}

.track:last-child{
    border-bottom:none;
}

.track:hover{
    background:#222831;
}

.track-number{
    width:60px;
    color:var(--gold);
    font-weight:700;
}

.track-name{
    flex:1;
}

.track-time{
    color:#999;
}

/* ==========================
   VIDEO
========================== */

.video iframe{
    width:100%;
    height:700px;

    border:none;

    border-radius:20px;

    box-shadow:
        0 15px 40px rgba(0,0,0,.35);
}

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

footer{
    text-align:center;

    padding:50px;

    border-top:1px solid #222;

    color:#888;
}

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

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

@media(max-width:900px){

    .nav-container{
        flex-direction:column;
        gap:15px;
    }

    .nav-links{
        flex-wrap:wrap;
        justify-content:center;
    }

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

    .album-info h1{
        font-size:2.5rem;
    }

    .video iframe{
        height:350px;
    }

    .track{
        padding:15px;
    }
}



.song-video{
    padding-top:80px;
    margin-top:80px;
    border-top:1px solid rgba(255,255,255,.08);
}

.song-video h2{

    text-align:center;

    margin-bottom:25px;

    color:#ffd54a;
}


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

.video-card{
    width:100%;
}

.video-card h3{
    color:#ffd54a;
    font-size:1.1rem;
    margin-bottom:10px;
}

.video-card iframe{
    width:100%;
    height:220px;
    border:none;
    border-radius:12px;
    display:block;
}

@media(max-width:1100px){
    .video-grid{
        grid-template-columns:repeat(2, 1fr);
    }
}

@media(max-width:700px){
    .video-grid{
        grid-template-columns:1fr;
    }

    .video-card iframe{
        height:240px;
    }
}