/* =====================================================
   SOUTHERN DARK COUNTRY
   STYLE.CSS
   Version 1.0
===================================================== */


/* ==========================
   RESET
========================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{

    scroll-behavior:smooth;

}

body{

    background:#090909;

    color:#F4F4F4;

    font-family:'Inter',sans-serif;

    overflow-x:hidden;

}

img{

    display:block;

    max-width:100%;

}

a{

    text-decoration:none;

}

ul{

    list-style:none;

}


/* ==========================
   CONTAINER
========================== */

.container{

    width:min(1200px,92%);

    margin:auto;

}


/* ==========================
   COLORS
========================== */

:root{

    --bg:#090909;

    --surface:#141414;

    --surface2:#1A1A1A;

    --gold:#B68A4A;

    --text:#F4F4F4;

    --muted:#BBBBBB;

    --border:rgba(255,255,255,.08);

}


/* ==========================
   NAVBAR
========================== */

.navbar{

    position:fixed;

    top:0;

    left:0;

    width:100%;

    padding:18px 70px;

    display:flex;

    justify-content:space-between;

    align-items:center;

    background:rgba(9,9,9,.55);

    backdrop-filter:blur(14px);

    border-bottom:1px solid rgba(255,255,255,.06);

    z-index:999;

}

.logo{

    display:flex;

    align-items:center;

    gap:16px;

    color:white;

}

.logo img{

    width:58px;

    height:58px;

    border-radius:50%;

    transition:.35s;

}

.logo span{

    font-family:'Cinzel',serif;

    font-size:22px;

    letter-spacing:2px;

    color:white;

    transition:.3s;

}

.logo:hover span{

    color:var(--gold);

}

.nav-links{

    display:flex;

    gap:40px;

}

.nav-links li{

    position:relative;

}

.nav-links a{

    color:white;

    font-size:16px;

    font-weight:500;

    transition:.3s;

    padding:8px 0;

    letter-spacing:.5px;

}


/* Hover */

.nav-links a:hover{

    color:var(--gold);

}

.nav-links a::after{

    content:"";

    position:absolute;

    left:0;

    bottom:-6px;

    width:0;

    height:2px;

    background:var(--gold);

    transition:.3s;

}

.nav-links a:hover::after{

    width:100%;

}


/* ACTIVE */

.nav-links a.active{

    color:var(--gold);

}

.nav-links a.active::after{

    width:100%;

}

/* =====================================================
   HERO
===================================================== */

.hero{

    min-height:100vh;

    display:flex;

    align-items:center;

    background:
    radial-gradient(circle at right,
    rgba(120,0,0,.25),
    transparent 45%),
    #090909;

}

.hero .container{

    display:flex;

    justify-content:space-between;

    align-items:center;

    gap:80px;

    padding-top:120px;

}

.hero-text{

    flex:1;

}

.hero-text h1{

    font-family:'Cinzel',serif;

    font-size:82px;

    line-height:1.05;

    letter-spacing:3px;

    margin-bottom:25px;

}

.hero-text h2{

    font-size:28px;

    color:var(--gold);

    font-weight:400;

    margin-bottom:25px;

}

.hero-text p{

    color:var(--muted);

    font-size:19px;

    line-height:1.8;

    margin-bottom:45px;

    max-width:600px;

}

.hero-image{

    flex:1;

    display:flex;

    justify-content:center;

    align-items:center;

}

.hero-image img{

    width:100%;

    max-width:520px;

    border-radius:50%;

    box-shadow:0 0 70px rgba(120,0,0,.25);

    transition:.4s;

}

.hero-image img:hover{

    transform:scale(1.02);

}


/* =====================================================
   BUTTON
===================================================== */

.btn{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    gap:10px;

    padding:18px 38px;

    background:var(--gold);

    color:#111;

    font-weight:600;

    border-radius:50px;

    transition:.35s;

}

.btn:hover{

    transform:translateY(-4px);

    box-shadow:0 18px 35px rgba(182,138,74,.35);

}


/* =====================================================
   FEATURED RELEASES
===================================================== */

.featured{

    padding:120px 0;

    background:#111111;

}

.section-title{

    text-align:center;

    margin-bottom:70px;

}

.section-title h2{

    font-family:'Cinzel',serif;

    font-size:52px;

    margin-bottom:15px;

    letter-spacing:2px;

}

.section-title p{

    color:var(--muted);

    font-size:18px;

}

.albums-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:35px;

}


/* CARD */

.album-card{

    background:#181818;

    border-radius:18px;

    overflow:hidden;

    border:1px solid rgba(255,255,255,.05);

    transition:.35s;

}

.album-card:hover{

    transform:translateY(-10px);

    border-color:var(--gold);

    box-shadow:0 25px 45px rgba(0,0,0,.45);

}

.album-card img{

    width:100%;

    transition:.35s;

}

.album-card:hover img{

    transform:scale(1.05);

}

.album-info{

    padding:24px;

}

.album-info h3{

    font-family:'Cinzel',serif;

    font-size:25px;

    margin-bottom:15px;

}

.album-info a{

    display:inline-block;

    color:var(--gold);

    font-weight:600;

    transition:.3s;

}

.album-info a:hover{

    color:white;

}

/* =====================================================
   LISTEN PAGE
===================================================== */

.listen-page{

    min-height:100vh;

    padding:180px 0 120px;

    background:var(--bg);

    text-align:center;

}

.listen-logo{

    width:180px;

    margin:0 auto 35px;

    border-radius:50%;

    box-shadow:0 0 45px rgba(120,0,0,.25);

}

.listen-page h1{

    font-family:'Cinzel',serif;

    font-size:60px;

    margin-bottom:18px;

}

.listen-page p{

    color:var(--muted);

    font-size:20px;

    margin-bottom:60px;

}

.platforms{

    max-width:720px;

    margin:auto;

    display:grid;

    gap:22px;

}

.platform{

    display:flex;

    justify-content:center;

    align-items:center;

    padding:22px;

    border-radius:16px;

    background:var(--surface);

    border:1px solid var(--border);

    color:white;

    font-size:22px;

    font-weight:600;

    transition:.3s;

}

.platform:hover{

    background:var(--gold);

    color:#111;

    transform:translateY(-5px);

}



/* =====================================================
   ABOUT HERO
===================================================== */

.about-hero h1{

    font-family:'Cinzel',serif;

    font-size:72px;

    line-height:1.1;

    max-width:900px;

    margin:auto;

}

.hero-description{

    max-width:700px;

    margin:35px auto 0;

    color:#B9B9B9;

    font-size:20px;

}

.about-logo{

    width:140px;

    margin:0 auto 35px;

    border-radius:50%;

    box-shadow:0 0 40px rgba(120,0,0,.25);

}

.about-hero h1{

    font-family:'Cinzel',serif;

    font-size:74px;

    letter-spacing:4px;

    margin-bottom:18px;

}

.about-tagline{

    color:var(--gold);

    font-size:24px;

}



/* =====================================================
   ABOUT CONTENT
===================================================== */

.about-content{

    padding:110px 0;

    background:#111111;

}

.about-block{

    margin-bottom:110px;

}

.about-block h2{

    font-family:'Cinzel',serif;

    font-size:46px;

    margin-bottom:35px;

}

.about-block p{

    max-width:900px;

    font-size:19px;

    color:#C8C8C8;

    line-height:2;

    margin-bottom:22px;

}


/*==================================
ABOUT PARAGRAPH
==================================*/

.story-content{

    max-width:760px;

}

.story-content p{

    color:#BDBDBD;

    font-size:18px;

    line-height:2;

    margin-bottom:28px;

}


/* =====================================================
   SOUND GRID
===================================================== */

.sound-grid{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:28px;

    margin-top:40px;

}

.sound-card{

    background:#161616;

    border:1px solid rgba(255,255,255,.07);

    border-radius:18px;

    padding:40px;

    transition:.35s;

}

.sound-card:hover{

    transform:translateY(-8px);

    border-color:#C89B52;

}

.sound-card h3{

    font-family:'Cinzel',serif;

    font-size:28px;

    margin-bottom:25px;

    position:relative;

}

.sound-card h3::after{

    content:"";

    width:55px;

    height:2px;

    background:#C89B52;

    display:block;

    margin-top:14px;

}

.sound-card p{

    color:#BEBEBE;

    line-height:1.9;

}



/* =====================================================
   OFFICIAL PROJECT
===================================================== */

.official{

    background:#181818;

    border-radius:20px;

    padding:60px;

    border:1px solid var(--border);

}



/* =====================================================
   VERIFICATION BOX
===================================================== */

.verification-box{

    background:#121212;

    border:1px solid rgba(182,138,74,.25);

    border-left:6px solid var(--gold);

    border-radius:18px;

    padding:45px;

}

.verification-box h2{

    font-family:'Cinzel',serif;

    font-size:34px;

    margin-bottom:25px;

}

.verification-box p{

    color:#C9C9C9;

    line-height:2;

    margin-bottom:18px;

}

/* =====================================================
   FOOTER
===================================================== */

.footer{

    background:#090909;

    border-top:1px solid rgba(255,255,255,.06);

    padding:35px 0;

    text-align:center;

}

.footer p{

    color:#8F8F8F;

    font-size:15px;

    letter-spacing:.5px;

}


/* =====================================================
   SCROLLBAR
===================================================== */

::-webkit-scrollbar{

    width:10px;

}

::-webkit-scrollbar-track{

    background:#090909;

}

::-webkit-scrollbar-thumb{

    background:#3A3A3A;

    border-radius:30px;

}

::-webkit-scrollbar-thumb:hover{

    background:var(--gold);

}


/* =====================================================
   SECTION SPACING
===================================================== */

section{

    position:relative;

}


/* =====================================================
   TABLET
===================================================== */

@media(max-width:1024px){

    .navbar{

        padding:18px 40px;

    }

    .hero .container{

        flex-direction:column;

        text-align:center;

    }

    .hero-text{

        order:2;

    }

    .hero-image{

        order:1;

    }

    .hero-text h1{

        font-size:64px;

    }

    .hero-image img{

        max-width:420px;

    }

    .albums-grid{

        grid-template-columns:repeat(2,1fr);

    }

    .sound-grid{

        grid-template-columns:1fr;

    }

}


/* =====================================================
   MOBILE
===================================================== */

@media(max-width:768px){

    .navbar{

        flex-direction:column;

        gap:20px;

        padding:20px;

    }

    .logo{

        justify-content:center;

    }

    .logo span{

        font-size:18px;

    }

    .nav-links{

        flex-wrap:wrap;

        justify-content:center;

        gap:22px;

    }

    .hero{

        padding:160px 0 90px;

    }

    .hero .container{

        flex-direction:column;

        text-align:center;

        gap:40px;

    }

    .hero-text h1{

        font-size:46px;

        letter-spacing:2px;

    }

    .hero-text h2{

        font-size:22px;

    }

    .hero-text p{

        font-size:17px;

    }

    .hero-image img{

        max-width:320px;

    }

    .section-title h2{

        font-size:38px;

    }

    .albums-grid{

        grid-template-columns:1fr;

    }

    .album-info h3{

        font-size:22px;

    }

    .about-hero{

        padding-top:170px;

    }

    .about-hero h1{

        font-size:48px;

    }

    .about-tagline{

        font-size:20px;

    }

    .about-block h2{

        font-size:34px;

    }

    .about-block p{

        font-size:17px;

        line-height:1.9;

    }

    .sound-grid{

        grid-template-columns:1fr;

    }

    .sound-card{

        padding:30px;

    }

    .official{

        padding:35px;

    }

    .verification-box{

        padding:30px;

    }

    .listen-page h1{

        font-size:42px;

    }

    .platform{

        font-size:18px;

        padding:18px;

    }

}


/* =====================================================
   SMALL MOBILE
===================================================== */

@media(max-width:480px){

    .hero-text h1{

        font-size:38px;

    }

    .hero-image img{

        max-width:260px;

    }

    .logo img{

        width:50px;

        height:50px;

    }

    .section-title h2{

        font-size:30px;

    }

    .about-logo{

        width:110px;

    }

    .listen-logo{

        width:140px;

    }

}

/*=====================================================
MEET THE CREATOR
=====================================================*/

.creator{

    padding:140px 0;

    background:#0C0C0C;

}

.creator .container{

    display:grid;

    grid-template-columns:300px minmax(0,700px);

    justify-content:center;

    gap:70px;

    align-items:start;

}

.creator-image{

    display:flex;

    justify-content:center;

}

.creator-image img{

    width:100%;

    max-width:280px;

    border-radius:20px;

    border:1px solid rgba(255,255,255,.08);

    box-shadow:0 30px 70px rgba(0,0,0,.45);

    transition:.35s;

    filter:saturate(.92) contrast(1.05);

}

.creator-image img:hover{

    transform:scale(1.03);

}

.creator-content{

    max-width:720px;

}

.creator-label{

    display:inline-block;

    color:var(--gold);

    letter-spacing:3px;

    font-size:14px;

    font-weight:700;

    margin-bottom:15px;

}

.creator-content h2{

    font-family:'Cinzel',serif;

    font-size:52px;

    margin-bottom:15px;

}

.creator-role{

    margin:30px 0 40px;

    padding:0;

    list-style:none;

}

.creator-role li{

    position:relative;

    padding-left:28px;

    margin-bottom:18px;

    color:#D5D5D5;

    font-size:18px;

    letter-spacing:.5px;

}

.creator-role li::before{

    content:"◆";

    position:absolute;

    left:0;

    color:var(--gold);

}

.creator-content p{

    color:#BEBEBE;

    font-size:18px;

    line-height:2;

    margin-bottom:22px;

}

.creator-ending{

    margin-top:35px;

    color:white;

    font-style:italic;

    border-left:3px solid var(--gold);

    padding-left:20px;

}

.creator-grid{

    display:grid;

    grid-template-columns:320px 1fr;

    gap:90px;

    align-items:center;

}

.creator-image{

    text-align:center;

}

.creator-image img{

    width:100%;

    max-width:300px;

    border-radius:18px;

    box-shadow:0 30px 70px rgba(0,0,0,.45);

}

.creator-content{

    max-width:700px;

}

.creator-content h3{

    font-family:'Cinzel',serif;

    font-size:52px;

    margin-bottom:10px;

}

.creator-title{

    color:#C89B52;

    margin-bottom:35px;

    letter-spacing:2px;

}

.creator-role{

    list-style:none;

    padding:0;

    margin:0 0 35px;

}

.creator-role li{

    color:#D2D2D2;

    margin-bottom:16px;

    padding-left:24px;

    position:relative;

}

.creator-role li::before{

    content:"◆";

    position:absolute;

    left:0;

    color:#C89B52;

}

.creator-content p{

    color:#BEBEBE;

    line-height:2;

    font-size:18px;

}

@media(max-width:768px){

    .about-hero{

        padding:130px 0 80px;

    }

    .about-hero h1{

        font-size:42px;

    }

    .hero-description{

        font-size:18px;

    }

    .section-heading h2{

        font-size:34px;

    }

    .creator-grid{

        grid-template-columns:1fr;

        gap:50px;

        text-align:center;

    }

    .creator-image img{

        max-width:220px;

    }

    .creator-role{

        display:inline-block;

        text-align:left;

    }

}

.listen-layout{

    display:grid;

    grid-template-columns:1.2fr .8fr;

    gap:70px;

    align-items:center;

}

.listen-info{

    text-align:left;

}

.platforms{

    display:grid;

    gap:18px;

}

@media(max-width:900px){

    .listen-layout{

        grid-template-columns:1fr;

    }

    .listen-info{

        text-align:center;

    }

}