:root{

    --bg:#050505;
    --card:#111111;
    --card-hover:#171717;
    --text:#ffffff;
    --muted:#9b9b9b;
    --border:rgba(255,255,255,.06);
    --radius:24px;

}

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

html{
    scroll-behavior:smooth;
}

body{

    background:var(--bg);
    color:var(--text);

    font-family:
    -apple-system,
    BlinkMacSystemFont,
    "SF Pro Display",
    sans-serif;

    overflow-x:hidden;

}


@media(max-width:768px){
.image-logo{
position:absolute;
top:20px;
width:100px;
}

.image-logo-bottom{
display: block;
  margin-left: auto;
  margin-right: auto;
margin-bottom:40px;
width:200px;
}


}

@media(min-width:768px){

.image-logo{
position:absolute;
top:30px;
width:300px;
}

.image-logo-bottom{


width:200px;
}

}

.section-intro{

    max-width:900px;

    margin:120px auto 80px;

    padding:0 30px;

    text-align:center;

}

.section-intro span{

    display:block;

    margin-bottom:15px;

    letter-spacing:3px;

    color:#888;

    font-size:12px;

}

.section-intro h2{

    font-size:
    clamp(2rem,5vw,4rem);

    line-height:1.1;

    margin-bottom:20px;

}

.section-intro p{

    max-width:700px;

    margin:auto;

    color:#999;

    font-size:1.1rem;

    line-height:1.8;

}

.quote-block{

    max-width:1000px;

    margin:120px auto;

    padding:0 30px;

    text-align:center;

}

.quote-block blockquote{

    font-size:
    clamp(1.8rem,4vw,3rem);

    line-height:1.4;

    font-weight:300;

    color:white;

}

.quote-block blockquote::before{

    content:'"';

    color:#666;

}

.quote-block blockquote::after{

    content:'"';

    color:#666;

}

.artists-hero{

    height:70vh;

    background:
    url('../images/artist-hero.jpg')
    center center / cover;

    position:relative;

}

.artists-hero::after{

    content:'';

    position:absolute;

    inset:0;

    background:
    linear-gradient(
        to top,
        #050505,
        rgba(0,0,0,.2)
    );

}

.hero-overlay{

    position:absolute;

    left:8%;
    bottom:10%;

    z-index:10;

}

.hero-overlay span{

    letter-spacing:4px;

    color:#999;

}

.hero-overlay h1{

    font-size:
    clamp(3rem,8vw,7rem);

}

.hero-overlay p{

    color:#ccc;

    max-width:600px;

}

.artists-grid{

    display:grid;

    grid-template-columns:
    repeat(auto-fit,minmax(300px,1fr));

    gap:30px;

    padding:80px 5%;

}

.artist-card{

    text-decoration:none;

    color:white;

    border-radius:28px;

    overflow:hidden;

    background:#111;

    transition:.35s;

}

.artist-card:hover{

    transform:
    translateY(-10px);

}

.artist-card img{

    width:100%;

    aspect-ratio:3/4;

    object-fit:cover;

}

.artist-info{

    padding:25px;

}

.artist-info h2{

    margin-bottom:8px;

}

.artist-info p{

    color:#999;

}

.artist-banner{

    height:70vh;

    position:relative;

    overflow:hidden;

}

.artist-banner img{

    width:100%;
    height:100%;

    object-fit:cover;

}

.artist-banner::after{

    content:'';

    position:absolute;

    inset:0;

    background:
    linear-gradient(
        to top,
        #050505,
        transparent
    );

}

.banner-overlay{

    position:absolute;

    left:8%;
    bottom:10%;

    z-index:5;

}

.banner-overlay h1{

    font-size:
    clamp(3rem,9vw,8rem);

}

.artist-header{

    width:min(1200px,90%);

    margin:-80px auto 60px;

    position:relative;

    z-index:20;

    display:flex;

    gap:30px;

    align-items:center;

}

.artist-avatar{

    width:180px;
    height:180px;

    border-radius:50%;

    object-fit:cover;

    border:6px solid #050505;

}

.artist-biography,
.artist-releases,
.artist-videos{

    width:min(1200px,90%);

    margin:80px auto;

}

.artist-biography p{

    color:#aaa;

    line-height:1.8;

}

.release-slider{

    display:flex;

    gap:20px;

    overflow-x:auto;

}

.release-card{

    min-width:220px;

}

.release-card img{

    width:100%;

    aspect-ratio:1;

    border-radius:20px;

}


@media (max-width:768px){

    .featured-videos{
        padding:40px 20px;
    }

    .video-grid{

        display:grid;
        grid-template-columns:1fr;

        gap:20px;

    }

    .video-card{

        width:100%;

        min-width:0;

    }

    .video-card iframe{

        width:100%;

        height:auto;

        aspect-ratio:16/9;

        border-radius:20px;

    }

social-links-mobile{display:block;}
social-links-desktop{display:none;}
}


@media (min-width:768px){
social-links-dektop{display:block;}
social-links-mobile{display:none;}
}

.video-grid{

    display:grid;

    grid-template-columns:
    repeat(auto-fit,minmax(200px,1fr));

    gap:25px;

}

.video-card{

    aspect-ratio:16/9;

    background:#111;

    border-radius:24px;

}

.page-hero.small{

    padding:140px 5% 60px;

    text-align:center;

}

.page-hero.small span{

    letter-spacing:4px;
    color:#888;

}

.page-hero.small h1{

    font-size:clamp(2.5rem,6vw,5rem);

}

.page-hero.small p{

    color:#aaa;

}

.release-grid{

    display:grid;

    grid-template-columns:
    repeat(auto-fit,minmax(260px,1fr));

    gap:30px;

    padding:60px 5%;

}

.release-card{

    text-decoration:none;

    color:white;

    background:#111;

    border-radius:28px;

    overflow:hidden;

    transition:.3s;

}

.release-card:hover{

    transform:translateY(-10px);

}

.release-card img{

    width:100%;

    aspect-ratio:1;

    object-fit:cover;

}

.release-info{

    padding:20px;

}

.release-info p{

    color:#999;

}

.release-hero{

    height:85vh;

    position:relative;

}

.release-hero img{

    width:100%;
    height:100%;

    object-fit:cover;

}

.release-hero::after{

    content:'';

    position:absolute;

    inset:0;

    background:
    linear-gradient(
        to top,
        #050505,
        transparent
    );

}

.release-overlay{

    position:absolute;

    bottom:10%;
    left:6%;

}

.release-overlay h1{

    font-size:clamp(3rem,8vw,7rem);

}

.release-overlay button{

    margin-top:20px;

    padding:14px 30px;

    border:none;

    border-radius:999px;

    background:white;

    cursor:pointer;

}

.release-details{

    width:min(1100px,90%);

    margin:80px auto;

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:60px;

}

.tracklist ol{

    color:#aaa;

    line-height:2;

}

.merch-grid{

    display:grid;

    grid-template-columns:
    repeat(auto-fit,minmax(260px,1fr));

    gap:30px;

    padding:60px 5%;

}

.merch-card{

    text-decoration:none;

    color:white;

    background:#111;

    border-radius:28px;

    overflow:hidden;

    transition:.3s;

}

.merch-card:hover{

    transform:translateY(-10px);

}

.merch-card img{

    width:100%;

    aspect-ratio:4/3;

    object-fit:cover;

}

.merch-info{

    padding:20px;

}

.merch-info p{

    color:#aaa;

}

.product-hero{

    height:90vh;

    display:grid;

    grid-template-columns:1fr 1fr;

}

.product-hero img{

    width:100%;
    height:100%;

    object-fit:cover;

}

.product-info{

    padding:80px;

    display:flex;

    flex-direction:column;

    justify-content:center;

    background:#0d0d0d;

}

.product-info h1{

    font-size:clamp(2.5rem,5vw,5rem);

}

.price{

    font-size:2rem;

    margin:20px 0;

}

.product-info button{

    padding:16px 30px;

    border:none;

    border-radius:999px;

    background:white;

    cursor:pointer;

}

.news-grid{

    display:grid;

    grid-template-columns:
    repeat(auto-fit,minmax(320px,1fr));

    gap:30px;

    padding:60px 5%;

}

.news-card{

    text-decoration:none;
    color:white;

    background:#111;

    border-radius:28px;

    overflow:hidden;

    transition:.3s;

}

.news-card:hover{
    transform:translateY(-10px);
}

.news-image{

    height:220px;
    overflow:hidden;

}

.news-image img{

    width:100%;
    height:100%;
    object-fit:cover;

    transition:.4s;
}

.news-card:hover img{
    transform:scale(1.05);
}

.news-info{

    padding:25px;

}

.news-tag{

    display:inline-block;

    padding:5px 12px;

    border-radius:999px;

    background:rgba(255,255,255,.08);

    font-size:12px;

    margin-bottom:10px;

}

.news-info h2{
    margin-bottom:10px;
}

.news-info p{
    color:#aaa;
    line-height:1.6;
}

.news-meta{
    margin-top:15px;
    color:#777;
    font-size:13px;
}

.news-hero{

    height:80vh;

    position:relative;

    overflow:hidden;

}

.news-hero img{

    width:100%;
    height:100%;

    object-fit:cover;

}

.news-hero::after{

    content:'';

    position:absolute;
    inset:0;

    background:
    linear-gradient(
        to top,
        #050505,
        transparent
    );

}

.news-overlay{

    position:absolute;

    left:6%;
    bottom:10%;

}

.news-overlay h1{

    font-size:clamp(3rem,8vw,7rem);

}

.news-content{

    width:min(900px,90%);

    margin:80px auto;

}

.news-text{

    color:#ccc;
    line-height:1.8;
    font-size:1.1rem;

}

.news-related{

    width:min(1200px,90%);
    margin:100px auto;

}

.related-grid{

    display:grid;

    grid-template-columns:
    repeat(auto-fit,minmax(250px,1fr));

    gap:20px;

}

.related-card{

    height:180px;

    background:#111;

    border-radius:24px;

}

.history-page{
    padding-bottom:120px;
}

/* HERO */
.page-hero.small{
    padding:140px 5% 60px;
    text-align:center;
}

.page-hero.small span{
    letter-spacing:4px;
    color:#888;
}

.page-hero.small h1{
    font-size:clamp(2.5rem,6vw,5rem);
}

.page-hero.small p{
    color:#aaa;
}

/* TIMELINE WRAPPER */
.timeline{

    width:min(900px,90%);
    margin:80px auto;

    position:relative;

    border-left:2px solid rgba(255,255,255,.08);

    padding-left:40px;

}

/* ITEM */
.timeline-item{

    margin-bottom:60px;

    position:relative;

}

/* DOT */
.timeline-item::before{

    content:'';

    position:absolute;

    left:-50px;
    top:8px;

    width:14px;
    height:14px;

    background:white;
    border-radius:50%;

}

/* YEAR */
.year{

    font-size:14px;
    color:#999;
    letter-spacing:2px;

    margin-bottom:8px;

}

/* CONTENT */
.content h2{

    font-size:1.6rem;

    margin-bottom:10px;

}

.content p{

    color:#aaa;
    line-height:1.8;

}

/* HOVER EFFECT */
.timeline-item:hover .content h2{
    color:white;
}

/* MOBILE */
@media(max-width:768px){

    .timeline{
        padding-left:25px;
    }

    .timeline-item::before{
        left:-35px;
    }

}


/* HERO */
.page-hero.small{
    padding:140px 5% 60px;
    text-align:center;
}

.page-hero.small span{
    letter-spacing:4px;
    color:#888;
}

.page-hero.small h1{
    font-size:clamp(2.5rem,6vw,5rem);
}

.page-hero.small p{
    color:#aaa;
}

/* GRID */
.contact-grid{

    width:min(1100px,90%);
    margin:80px auto;

    display:grid;
    grid-template-columns:1.2fr .8fr;

    gap:40px;

}

/* FORM */
.contact-form{

    display:flex;
    flex-direction:column;
    gap:15px;

}

.form-row{
    display:flex;
    gap:15px;
}

.contact-form input,
.contact-form textarea{

    width:100%;

    padding:16px 18px;

    background:#111;
    border:1px solid rgba(255,255,255,.08);

    border-radius:16px;

    color:white;

    outline:none;

}

.contact-form textarea{
    resize:none;
}

.contact-form button{

    padding:16px 25px;

    border:none;
    border-radius:999px;

    background:white;
    color:black;

    font-weight:600;

    cursor:pointer;

    transition:.3s;

}

.contact-form button:hover{
    transform:translateY(-2px);
}

/* INFO */
.contact-info{

    padding:20px;

}

.contact-info h2{
    margin-bottom:20px;
}

.contact-info p{
    color:#aaa;
    margin-bottom:10px;
}

/* SOCIAL */
.contact-social{

    margin-top:20px;

    display:flex;
    gap:12px;

}

.contact-social a{

    padding:10px 14px;

    background:#111;

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

    border-radius:999px;

    color:white;

    text-decoration:none;

    font-size:14px;

    transition:.3s;

}

.contact-social a:hover{
    background:#1a1a1a;
}

/* MAP */
.contact-map{

    width:min(1100px,90%);
    margin:80px auto;

}

.map-placeholder{

    height:300px;

    background:#111;

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

    border-radius:24px;

    display:flex;
    align-items:center;
    justify-content:center;

    color:#777;

}

/* MOBILE */
@media(max-width:768px){



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

    .form-row{
        flex-direction:column;
    }

}

.legal-page{
    padding-bottom:120px;
}

/* HERO (shared style already used) */
.page-hero.small{
    padding:140px 5% 60px;
    text-align:center;
}

.page-hero.small span{
    letter-spacing:4px;
    color:#888;
    font-size:12px;
}

.page-hero.small h1{
    font-size:clamp(2.5rem,6vw,5rem);
}

.page-hero.small p{
    color:#aaa;
}

/* CONTENT */
.legal-content{

    width:min(900px,90%);
    margin:80px auto;

    line-height:1.9;

    color:#ccc;

}

/* HEADINGS */
.legal-content h2{

    margin-top:50px;
    margin-bottom:15px;

    font-size:1.4rem;

    color:white;

    letter-spacing:1px;

}

/* PARAGRAPHS */
.legal-content p{

    margin-bottom:15px;

    color:#aaa;

    font-size:1.05rem;

}

/* OPTIONAL VISUAL ACCENT */
.legal-content h2::before{

    content:'';
    display:inline-block;

    width:6px;
    height:6px;

    margin-right:10px;

    border-radius:50%;

    background:white;

    transform:translateY(-2px);

    opacity:.7;

}

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

.navbar{

    position:fixed;
    top:0;
    left:0;

    width:100%;
    z-index:1000;

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

    padding:20px 5%;

    backdrop-filter:blur(20px);
    background:rgba(5,5,5,.65);

}

@media(max-width:768px){

.navbar{height:70px;}
}

.logo{
    font-size:24px;
    font-weight:700;
    letter-spacing:2px;
}

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

.nav-links a{
    color:white;
    text-decoration:none;
    font-weight:500;
    transition:.25s;
}

.nav-links a:hover{
    opacity:.7;
}

.social-links{
    display:flex;
    gap:12px;
}

.social-links a{
    width:42px;
    height:42px;

    display:flex;
    align-items:center;
    justify-content:center;

    border-radius:50%;
    background:rgba(255,255,255,.08);

    color:white;
    text-decoration:none;

    transition:.25s;
}

.social-links a:hover{
    transform:translateY(-2px);
    background:rgba(255,255,255,.15);
}

.desktop-social{

    display:flex;
    gap:12px;

}

.mobile-social{

    display:none;

}


@media(max-width:768px){

    .desktop-social{
        display:none;
    }

    .mobile-social{

        display:flex;

        justify-content:center;
        gap:15px;

        margin-top:30px;
        padding-top:25px;

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

    }

    .mobile-social a{

        width:42px;
        height:42px;

        display:flex;
        align-items:center;
        justify-content:center;

        border-radius:50%;

        background:
        rgba(255,255,255,.08);

        color:white;

        text-decoration:none;

    }

}


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

.hero-slider{
    position:relative;
    height:100vh;
    overflow:hidden;
}

.hero-track{
    display:flex;
    height:100%;
    transition:transform .4s ease;
}

.hero-slide{
    min-width:100%;
    height:100%;
    position:relative;
}

.hero-slide img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.hero-slide::after{
    content:'';
    position:absolute;
    inset:0;
    background:linear-gradient(to top, rgba(0,0,0,.9), rgba(0,0,0,.2));
}

.hero-content{
    position:absolute;
    left:5%;
    bottom:10%;
    z-index:10;
}

.hero-dots{
    position:absolute;
    bottom:30px;
    left:50%;
    transform:translateX(-50%);
    display:flex;
    gap:10px;
    z-index:20;
}

.hero-dot{
    width:10px;
    height:10px;
    border-radius:50%;
    background:rgba(255,255,255,.4);
    cursor:pointer;
}

.hero-dot.active{
    background:white;
}

/* ==========================
   CONTENT ROWS
========================== */

.content-row{
    padding:60px 5%;
}

.content-row h2{
    font-size:2rem;
    margin-bottom:25px;
}

/* ==========================
   HORIZONTAL SLIDER
========================== */

.horizontal-slider{

    display:flex;
    gap:18px;

    overflow-x:auto;
    scroll-snap-type:x mandatory;

    -webkit-overflow-scrolling:touch;
    scrollbar-width:none;

    padding-bottom:10px;
    cursor:grab;

}

.horizontal-slider::-webkit-scrollbar{
    display:none;
}

.horizontal-slider:active{
    cursor:grabbing;
}

/* ==========================
   CARD BASE
========================== */

.item-card{

    flex-shrink:0;

    scroll-snap-align:start;

    background:var(--card);

    overflow:hidden;

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

    transition:.3s;
    cursor:pointer;

}

.item-card:hover{
    background:var(--card-hover);
    transform:translateY(-8px);
    box-shadow:0 0 30px rgba(255,255,255,.08);
}

.item-card img{
    width:100%;
    display:block;
    object-fit:cover;

 
}

.item-card h3{
    padding:14px;
    font-size:15px;
    font-weight:600;
}



.item-card{

    overflow:hidden;
}

.item-card .image-wrapper{

    height:220px;
    overflow:hidden;

}

.item-card .image-wrapper img{

    width:100%;
    height:100%;

    object-fit:cover;

}

.item-bottom{

    display:flex;

    justify-content:space-between;
    align-items:center;

    margin-top:12px;

}

.add-cart{

    border:none;

    padding:8px 14px;

    border-radius:999px;

    background:#fff;
    color:#000;

    font-size:13px;
    font-weight:600;

    cursor:pointer;

    transition:.25s;

}

.add-cart:hover{

    transform:translateY(-2px);

}

/* ==========================
   RELEASES
========================== */

.releases-slider .item-card{
    min-width:160px;
}

.releases-slider .item-card img{
    aspect-ratio:1/1;
}

/* ==========================
   ARTISTS
========================== */

.artists-slider .item-card{
    min-width:220px;
}

.artists-slider .item-card img{
    aspect-ratio:3/4;
}

/* ==========================
   MERCH
========================== */

.merch-slider .item-card{
    min-width:280px;
}

.merch-slider .item-card img{
    aspect-ratio:4/3;
}

/* ==========================
   FEATURED GRID
========================== */

.featured-grid{

    padding:60px 5%;
    display:grid;

    grid-template-columns:2fr 1fr;
    gap:20px;

}

.large-card,
.small-card{
    overflow:hidden;
    position:relative;
}

.large-card{
    min-height:550px;
}

.small-column{
    display:grid;
    gap:20px;
}

.small-card{
    min-height:265px;
}

.featured-grid img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.overlay{
    position:absolute;
    inset:0;

    display:flex;
    align-items:flex-end;

    padding:30px;

    background:linear-gradient(transparent, rgba(0,0,0,.8));
}

/* ==========================
   NEWSLETTER
========================== */

.newsletter{

    margin:100px auto;
    width:min(1200px,90%);

    background:#101010;
    border:1px solid var(--border);
    border-radius:36px;

    padding:70px 40px;
    text-align:center;

}

.newsletter h2{
    font-size:clamp(2rem,4vw,3.5rem);
    margin-bottom:25px;
}

.newsletter input{

    width:420px;
    max-width:100%;

    padding:18px 24px;

    border:none;
    border-radius:999px;

    background:#1b1b1b;
    color:white;

    outline:none;
    font-size:16px;

}

.newsletter button{

    padding:18px 34px;
    margin-left:10px;

    border:none;
    border-radius:999px;

    background:white;
    color:black;

    font-weight:600;

    cursor:pointer;
    transition:.25s;

}

.newsletter button:hover{
    transform:translateY(-2px);
}

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

.footer{

    background:#050505;

    border-top:1px solid rgba(255,255,255,.06);

    padding:80px 5% 30px;

    margin-top:100px;

}

/* INNER GRID */
.footer-inner{

    display:grid;

    grid-template-columns:2fr 3fr 1fr;

    gap:60px;

    max-width:1200px;
    margin:auto;

}

/* BRAND */
.footer-brand h2{

    font-size:2rem;
    letter-spacing:3px;

}

.footer-brand p{

    color:#999;
    margin-top:15px;
    line-height:1.6;

}

/* LINKS */
.footer-links{

    display:grid;

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

    gap:40px;

}

.footer-links h3,
.footer-social h3{

    margin-bottom:15px;

    font-size:14px;
    letter-spacing:2px;

    color:#aaa;

    text-transform:uppercase;

}

/* ==========================
   FOOTER LINKS (FIXED)
========================== */

.footer a{

    color:#fff;
    text-decoration:none;

}

/* navigation links */
.footer-links a{

    display:block;

    margin-bottom:10px;

    color:#ffffff;

    text-decoration:none;

    opacity:.65;

    transition:.25s ease;

    font-size:14px;

}

.footer-links a:hover{

    opacity:1;
    transform:translateX(4px);

}

/* social links */
.social-icons a{

    width:40px;
    height:40px;

    display:flex;
    align-items:center;
    justify-content:center;

    border-radius:50%;

    background:rgba(255,255,255,.08);

    color:white;

    text-decoration:none;

    font-weight:600;

    font-size:12px;

    transition:.3s ease;

}

.social-icons a:hover{

    background:rgba(255,255,255,.16);
    transform:translateY(-3px);

}

/* SOCIAL */
.footer-social{

    text-align:left;

}

.social-icons{

    display:flex;
    gap:10px;

}

.social-icons a{

    width:40px;
    height:40px;

    display:flex;
    align-items:center;
    justify-content:center;

    border-radius:50%;

    background:rgba(255,255,255,.08);

    color:white;

    text-decoration:none;

    transition:.3s;

}

.social-icons a:hover{
    background:rgba(255,255,255,.15);
    transform:translateY(-3px);
}

/* BOTTOM BAR */
.footer-bottom{

    max-width:1200px;
    margin:60px auto 0;

    display:flex;
    justify-content:space-between;

    border-top:1px solid rgba(255,255,255,.06);

    padding-top:20px;

    color:#777;

    font-size:13px;

}

/* MOBILE */
@media(max-width:768px){

.footer{padding-top:40px;margin-top:0px;}

    .footer-inner{
        grid-template-columns:1fr;
        gap:40px;
    }

    .footer-links{
        grid-template-columns:1fr 1fr;
    }

    .footer-bottom{
        flex-direction:column;
        gap:10px;
        text-align:center;
    }

}

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

@media(max-width:768px){

.section-intro{

    margin:0px;

}

.newsletter{


    margin:0px;
margin-left:20px;
}

.quote-block{

    margin:0px;

}


    .hero-content{
        left:20px;
        right:20px;
        bottom:150px;
    }

    .hero-content h1{
        font-size:3rem;
    }

    .content-row{
        padding:40px 20px;
    }

    .content-row h2{
        font-size:1.5rem;
    }

    .nav-links{
        display:none;
    }

    .social-links a{
        width:36px;
        height:36px;
    }

    .releases-slider .item-card{
        min-width:140px;
    }

    .artists-slider .item-card{
        min-width:180px;
    }

    .merch-slider .item-card{
        min-width:220px;
    }

    .newsletter{
        padding:40px 20px;
    }

    .newsletter button{
        margin-top:15px;
        margin-left:0;
        width:100%;
    }

    .newsletter input{
        width:100%;
    }

    .menu-toggle{
        display:block;
    }

.hero-slide img{
    width:100%;
    height:90%;
    object-fit:cover;
}



.hero-dots{
    position:absolute;
    bottom:100px;
    left:50%;
    transform:translateX(-50%);
    display:flex;
    gap:10px;
    z-index:20;
}

}

/* ==========================
   DESKTOP OVERRIDES
========================== */

@media(min-width:900px){

    .releases-slider .item-card{
        min-width:160px;
    }

    .artists-slider .item-card{
        min-width:220px;
    }

    .merch-slider .item-card{
        min-width:280px;
    }

}

