:root{

    --bg:#050505;

    --bg-secondary:#111111;

    --gold:#C8A96A;

    --white:#FFFFFF;

    --text:#BDBDBD;

}

html{

    scroll-behavior:smooth;

}

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{

    background: linear-gradient(
        180deg,
        #050505,
        #0d0d0d,
        #050505
    );

    color:white;

    font-family:'Space Grotesk', sans-serif;

}


    /* ==========================
   LOADER
========================== */

#loader{

    position:fixed;

    inset:0;

    background:#050505;

    display:flex;

    flex-direction:column;

    justify-content:center;

    align-items:center;

    z-index:99999;

    transition:opacity .8s ease,
               visibility .8s ease;

}

#loader h1{

    font-size:64px;

    letter-spacing:6px;

    color:var(--gold);

    margin-bottom:20px;

}

#loader p{

    color:var(--text);

    font-size:20px;

}

#loader.hide{

    opacity:0;

    visibility:hidden;

}

#progress-bar{

    position:fixed;

    top:0;

    left:0;

    width:0%;

    height:3px;

    background:var(--gold);

    z-index:9999;

    transition:width .1s linear;

}

nav{

    position:fixed;

    width:100%;

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:25px 70px;

    background:rgba(9,9,9,.80);

    backdrop-filter:blur(10px);

    z-index:1000;
}

.logo{

    color:white;

    font-size:30px;

    letter-spacing:3px;
}

nav ul{

    display:flex;

    list-style:none;

    gap:40px;
}

nav a{

    position:relative;

    color:white;

    text-decoration:none;

    transition:.3s;

    padding-bottom:8px;

}

nav a::after{

    content:"";

    position:absolute;

    left:0;

    bottom:0;

    width:0;

    height:2px;

    background:#C8A96A;

    transition:.35s ease;

}

nav a:hover{

    color:#C8A96A;

}

nav a:hover::after{

    width:100%;

}

nav a.active{

    color:var(--gold);

}

nav a.active::after{

    width:100%;

}

.hero{

    min-height:100vh;

    padding:80px 8% 0;

    display:flex;

    justify-content:space-between;

    align-items:center;

    gap:60px;
}

.hero-text{

    flex:1;
}

.hero-image{

    flex:1;

    display:flex;

    justify-content:center;

    position:relative;
}

.hero-image::before{

    content:"";

    position:absolute;

    width:420px;

    height:520px;

    background:rgba(200,169,106,.18);

    border-radius:50%;

    filter:blur(90px);

    z-index:-1;
}

.hero-image img{

    width:540px;

    height:560px;

    object-fit:cover;

    object-position:center top;

    border-radius:30px;

    box-shadow:0 30px 60px rgba(0,0,0,.45);

    transition:.4s ease;

    animation: float 4s ease-in-out infinite;

    margin-top: -30px;

    border:2px solid rgba(200,169,106,.15);

}

.hero-image img:hover{

    transform:translateY(-10px);
}

.tagline{

    font-size:30px;

    margin:25px 0;

    color:white;
}

.genre{

    color:#bdbdbd;

    margin-bottom:35px;
}

.hero h1{

    font-size:96px;

    letter-spacing:5px;

    margin-bottom:20px;

    text-shadow:0 0 35px rgba(200,169,106,.15);
}

.hero p{

    font-size:22px;

    color:#bdbdbd;

    margin-bottom:35px;
}

.hero-btn{

    display:inline-block;

    background:#C8A96A;

    color:#000;

    text-decoration:none;

    padding:18px 42px;

    border-radius:12px;

    font-weight:700;

    letter-spacing:2px;

    transition:.35s;

}

.hero-btn:hover{

    transform:translateY(-6px) scale(1.05);

    box-shadow:
        0 0 20px rgba(200,169,106,.35),
        0 0 45px rgba(200,169,106,.15);

}

@keyframes float{

    0%{
        transform:translateY(0px);
    }

    50%{
        transform:translateY(-12px);
    }

    100%{
        transform:translateY(0px);
    }

}

/* ============================
   LATEST RELEASE
============================ */

.latest-release{

    padding:120px 8%;

 border-top:1px solid rgba(255,255,255,.06);
 
}

.latest-release h2{

    font-size:52px;

    margin-bottom:60px;

}

.release-card{

    display:flex;

    gap:50px;

    align-items:center;

   background:linear-gradient(
145deg,
#101010,
#161616
);

    padding:40px;

    border-radius:25px;

    transition:.35s;

    border:1px solid transparent;

}

.release-card:hover{

    transform:translateY(-8px);

    border:1px solid #C8A96A;

    box-shadow:0 20px 60px rgba(0,0,0,.45);

}

.release-card img{

    width:280px;

    border-radius:20px;

}

.release-info{

    flex:1;

}

.release-info h3{

    font-size:42px;

    margin-bottom:20px;

}

.release-info p{

    color:#aaa;

    margin-bottom:35px;

}

/* ====================================
   SCROLL ANIMATIONS
==================================== */

.hidden{

    opacity:0;

    transform:translateY(80px);

    transition:all .8s ease;

}

.show{

    opacity:1;

    transform:translateY(0);

}

/* ====================================
   STREAM MODAL
==================================== */

.modal{

    display:none;

    position:fixed;

    top:0;

    left:0;

    width:100%;

    height:100%;

    background:rgba(0,0,0,.75);

    backdrop-filter:blur(10px);

    justify-content:center;

    align-items:center;

    z-index:2000;

}

.modal-content{

    background:linear-gradient(
    145deg,
    #101010,
    #181818
    );

    width:420px;

    padding:40px;

    border-radius:25px;

    text-align:center;

    border:1px solid rgba(200,169,106,.25);

    position:relative;

}

.modal-content h2{

    margin-bottom:35px;

}

.modal-content a{

    display:block;

    text-decoration:none;

    color:white;

    background:#1b1b1b;

    margin:15px 0;

    padding:16px;

    border-radius:12px;

    transition:.3s;

}

.modal-content a:hover{

    background:#C8A96A;

    color:black;

}

.close{

    position:absolute;

    top:18px;

    right:22px;

    width:36px;

    height:36px;

    display:flex;

    justify-content:center;

    align-items:center;

    border-radius:50%;

    transition:.3s;

    cursor:pointer;

}

.close:hover{

    background:rgba(255,255,255,.08);

    transform:rotate(90deg);

}

/* ====================================
   THE SOUND
==================================== */

.sound-section{

    padding:120px 8%;

}

.sound-section h2{

    font-size:60px;

    margin-bottom:10px;

}

.sound-subtitle{

    color:var(--text);

    margin-bottom:60px;

    font-size:20px;

}

.sound-card{

    display:flex;

    align-items:center;

    gap:50px;

    padding:35px;

    margin-bottom:40px;

    border-radius:28px;

    background:linear-gradient(
        145deg,
        #111,
        #171717
    );

    border:1px solid rgba(255,255,255,.06);

    transition:.35s ease;

}

.sound-card:hover{

    transform:translateY(-8px);

    border-color:var(--gold);

    box-shadow:0 20px 60px rgba(0,0,0,.45);

}

.sound-card:hover img{

    transform:scale(1.05);

}

.cover{

    position:relative;

    width:260px;

    border-radius:20px;

    overflow:hidden;

}

.cover img{

    width:100%;

    display:block;

    transition:.45s ease;

}

.play-overlay{

    position:absolute;

    top:0;

    left:0;

    width:100%;

    height:100%;

    display:flex;

    justify-content:center;

    align-items:center;

    background:rgba(0,0,0,.55);

    color:white;

    letter-spacing:2px;

    font-size:20px;

    font-weight:600;

    opacity:0;

    transition:.35s ease;

}

.cover:hover .play-overlay{

    opacity:1;

}

.cover:hover img{

    transform:scale(1.08);

}

.sound-info{

    flex:1;

}

.sound-info h3{

    font-size:46px;

    margin-bottom:18px;

}

.sound-info p{

    font-size:18px;
    
    line-height:1.6;
}

/* ====================================
   THE STORY
==================================== */

.story-section{

    padding:140px 8%;

    display:flex;

    align-items:center;

    justify-content:space-between;

    gap:80px;

}

.story-text{

    flex:1;

}

.story-text h2{

    font-size:64px;

    margin-bottom:20px;

}

.story-intro{

    color:var(--gold);

    font-size:24px;

    margin-bottom:30px;

}

.story-text p{

    color:var(--text);

    font-size:20px;

    line-height:1.9;

}

.story-quote{

    margin-top:40px;

    color:var(--gold);

    font-size:28px;

    font-style:italic;

    font-weight:700;

}

.story-image{

    flex:1;

    display:flex;

    justify-content:center;

    position:relative;

}

.story-image::before{

    content:"";

    position:absolute;

    width:420px;

    height:420px;

    background:rgba(200,169,106,.15);

    border-radius:50%;

    filter:blur(90px);

    z-index:-1;

}

.story-image img{

    width:420px;

    border-radius:28px;

    transition:.4s ease;

    box-shadow:0 30px 60px rgba(0,0,0,.45);

}

.story-image img:hover{

    transform:translateY(-10px);

}

/* ====================================
   GALLERY
==================================== */

.gallery-section{

    padding:140px 8%;

}

.gallery-section h2{

    font-size:64px;

    margin-bottom:20px;

}

.gallery-subtitle{

    color:var(--text);

    font-size:22px;

    margin-bottom:60px;

}

.gallery-grid{

    display:grid;

    grid-template-columns:2fr 1fr 1fr;

    grid-auto-rows:260px;

    gap:20px;

}

.gallery-grid img{

    width:100%;

    height:100%;

    object-fit:cover;

    border-radius:22px;

    cursor:pointer;

    transition:.4s ease;

}

.gallery-grid img:first-child{

    grid-row:span 2;

}

.gallery-grid img:hover{

    transform:scale(1.04) rotate(.3deg);

    box-shadow:0 25px 60px rgba(0,0,0,.45);

}
/* ====================================
   LIGHTBOX
==================================== */

.lightbox{

    position:fixed;

    inset:0;

    background:rgba(0,0,0,.92);

    display:flex;

    justify-content:center;

    align-items:center;

    opacity:0;

    visibility:hidden;

    transition:.35s ease;

    z-index:9999;

}

.lightbox.active{

    opacity:1;

    visibility:visible;

}

.lightbox img{

    width:80%;

    max-width:900px;

    max-height:85vh;

    border-radius:20px;

    box-shadow:0 30px 80px rgba(0,0,0,.6);

    transform:scale(.9);

    transition:.35s ease;

}

.lightbox.active img{

    transform:scale(1);

}

.lightbox-close{

    position:absolute;

    top:30px;

    right:40px;

    font-size:48px;

    color:white;

    cursor:pointer;

    transition:.3s;

}

.lightbox-close:hover{

    color:var(--gold);

}

/* ====================================
   CONNECT
==================================== */

.connect-section{

    padding:140px 8%;

    text-align:center;

}

.connect-section h2{

    font-size:64px;

    margin-bottom:20px;

}

.connect-subtitle{

    color:var(--text);

    font-size:22px;

    margin-bottom:60px;

}

.social-links{

    display:flex;

    flex-wrap:wrap;

    justify-content:center;

    gap:20px;

}

.social-links a{

    width:70px;

    height:70px;

    display:flex;

    justify-content:center;

    align-items:center;

    text-decoration:none;

    color:var(--white);

    font-size: 32px;

    border:1px solid rgba(200,169,106,.3);

    border-radius:18px;

    transition:.35s;

}

.social-links a:hover{

    transform:translateY(-8px) scale(1.08);

    background:var(--gold);

    color:#000;

    cursor:pointer;

    box-shadow:
        0 0 20px rgba(200,169,106,.35),
        0 0 45px rgba(200,169,106,.15);

}

/* ====================================
   FOOTER
==================================== */

.footer{

    padding:80px 8%;

    text-align:center;

    border-top:1px solid rgba(255,255,255,.08);

    background:#080808;

}

.footer h2{

    font-size:48px;

    letter-spacing:5px;

    margin-bottom:20px;

}

.footer-quote{

    color:#cfcfcf;

    font-size:20px;

    margin-bottom:25px;

    font-style:italic;

}

.copyright{

    font-size:14px;

    color:#666;

}

.menu-toggle{

    display:none;

    flex-direction:column;

    gap:6px;

    cursor:pointer;

}

.menu-toggle span{

    width:30px;

    height:3px;

    background:white;

    border-radius:5px;

    transition:.3s;

}

.menu-toggle.active span:nth-child(1){

    transform:translateY(9px) rotate(45deg);

}

.menu-toggle.active span:nth-child(2){

    opacity:0;

}

.menu-toggle.active span:nth-child(3){

    transform:translateY(-9px) rotate(-45deg);

}

.menu-toggle:hover span{

    background:var(--gold);

}

/* ====================================
   RESPONSIVE DESIGN
==================================== */

@media (max-width:768px){

    .hero{

    min-height:auto;

    flex-direction:column;

    justify-content:center;

    align-items:center;

    text-align:center;

    padding:120px 20px 60px;

    gap:40px;

}

.hero-text{

    width:100%;

}

.hero-image{

    width:100%;

    display:flex;

    justify-content:center;

}

    .hero h1{

    font-size:48px;

    letter-spacing:2px;

}

    .hero-image img{

        width:100%;

        max-width:340px;

        height:auto;

        margin-top:0;

    }

    .hero p{

        font-size:20px;

    }

    .gallery-grid{

    grid-template-columns:1fr;

    grid-auto-rows:auto;

}

.gallery-grid img{

    width:100%;

    height:auto;

}

.gallery-grid img:first-child{

    grid-row:span 1;

}

.sound-card{

    flex-direction:column;

    text-align:center;

    gap:25px;

}

.cover{

    width:100%;

    max-width:280px;

}

.story-section{

    flex-direction:column;

    text-align:center;

    gap:50px;

}


    nav{

    padding:20px 24px;

    display:flex;

    justify-content:space-between;

    align-items:center;

}

nav ul{

    gap:18px;

}

.nav-links a{

    font-size:20px;

    letter-spacing:2px;

    padding:8px 0;

}

.logo{

    font-size:22px;

}

*{

    max-width:100%;

}

body{

    overflow-x:hidden;

}

.release-card{

    flex-direction:column;

    text-align:center;

    gap:30px;

}

.release-card img{

    width:100%;

    max-width:260px;

}

.release-info h3{

    font-size:34px;

}

.release-info{

    display:flex;

    flex-direction:column;

    align-items:center;

}

.menu-toggle{

    display:flex;

}


.nav-links.active{

    opacity:1;

    visibility:visible;

    transform:translateY(0);

}

.nav-links{

    position:absolute;

    top:100%;

    left:0;

    width:100%;

    background:#111;

    flex-direction:column;

    align-items:center;

    gap:30px;

    padding:30px 0;

    display:flex;

    opacity:0;

    visibility:hidden;

    transform:translateY(-20px);

    transition:.35s ease;

}

}

