@charset "UTF-8";
/* ==========================================
   HEADER
========================================== */

.site-header{

    position:fixed;

    top:0;

    left:0;

    width:100%;

    background:#000;

    border-bottom:2px solid #c40000;

    z-index:9999;

}

.header-inner{

    max-width:1400px;

    margin:auto;

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:16px 40px;

}

.brand{

    display:flex;

    align-items:center;

    gap:16px;

    text-decoration:none;

}

.brand img{

    width:75px;

    height:auto;

}

.brand-text h1{

    margin:0;

    color:#fff;

    font-size:24px;

    letter-spacing:2px;

    font-weight:700;

}

.brand-text span{

    color:#bbb;

    font-size:12px;

    letter-spacing:4px;

}

.main-nav ul{

    display:flex;

    gap:34px;

    list-style:none;

    margin:0;

    padding:0;

}

.main-nav a{

    color:white;

    text-decoration:none;

    font-size:16px;

    letter-spacing:2px;

    transition:.3s; 
    
    font-weight:600;
}

.main-nav a:hover{

    color:#d60000;

}

.main-nav .active{

    color:#d60000;

}
/* Reset */

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

/* Page */

body {

    margin: 0;

    background:#000;

    color:white;

    font-family:Arial, Helvetica, sans-serif;

}
/*=========================================
                HERO
=========================================*/

.hero{

    width:100%;

    min-height:100vh;

    background-image:url("../images/hero.jpg");

    background-size:cover;

    background-position:center;

    background-repeat:no-repeat;

    position:relative;

}

/* Full-screen overlay */

.overlay{

    width:100%;

    min-height:100vh;

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

    position:relative;

}

/* Centered content container */

.hero-content{

    max-width:1400px;

    margin:0 auto;

    padding-top:210px;

    padding-left:5%;

    box-sizing:border-box;

}

/* Main headline */

.hero h1{

    font-size:72px;

    font-weight:700;

    line-height:1.05;

    margin-bottom:8px;

    color:#fff;

}

/* Second headline */

.hero h2{

    font-size:72px;

    font-weight:800;

    line-height:1;

    margin-bottom:18px;

    color:#fff;

}

/* Tagline */

.hero p{

    font-size:24px;

    line-height:1.5;

    color:#dddddd;

    max-width:500px;

}

/* Scroll Arrow */

.scroll-indicator{

    position:absolute;

    bottom:35px;

    left:50%;

    transform:translateX(-50%);

    color:#fff;

    font-size:28px;

    animation:scrollBounce 2.2s infinite;

}

@keyframes scrollBounce{

    0%,100%{
        transform:translateX(-50%) translateY(0);
    }

    50%{
        transform:translateX(-50%) translateY(10px);
    }

}
/* Story Section */

.story {

    background: #000;

    color: white;

    padding: 140px 8%;

}

.story-content{

    flex:1;
    max-width:760px;

}
.story-container{

    display:flex;

    align-items:center;

    justify-content:center;

    gap:40px;

    max-width:1500px;

    margin:auto;

}
.story-logo{

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

}

.story-logo img{

    width:100%;
    max-width:820px;
    height:auto;

    filter:
        drop-shadow(0 0 12px rgba(255,0,0,.95))
        drop-shadow(0 0 35px rgba(220,0,0,.90))
        drop-shadow(0 0 80px rgba(160,0,0,.65));

}

.story h2 {

    font-size: 68px;

    font-weight: 700;

    letter-spacing: 1px;

    margin-bottom: 35px;

}

.story p {

    font-size:26px;

    line-height:1.8;

    color:#c4c4c4;

    max-width:720px;

    margin-bottom:45px;

}

.story-button {

    display: inline-block;

    padding: 16px 34px;

    border: 2px solid white;

    color: white;

    text-decoration: none;

    letter-spacing: 2px;

    transition: .3s;

}

.story-button:hover {

    background: white;

    color: black;

}

/* Glacier Section */

.glacier {

    min-height:100vh;

    background-image:url("../images/glacier-section.jpg");

    background-size:cover;

    background-position:center;

    background-repeat:no-repeat;

}


.glacier-overlay{

    min-height:100vh;

    background:rgba(0,0,0,.30);

    display:flex;

    align-items:flex-start;

    justify-content:flex-start;

    padding-top:220px;

    padding-left:12%;

    box-sizing:border-box;

}

.glacier h2 {

    font-size: 78px;

    font-weight: 700;

    color: white;

    line-height: 1.05;

    max-width: 600px;

    text-shadow: 0 3px 12px rgba(0,0,0,.45);

}

/* Scroll Indicator */

.scroll-indicator{

    position:absolute;

    bottom:35px;

    left:50%;

    transform:translateX(-50%);

    color:white;

    font-size:28px;

    opacity:.95;

    animation:scrollBounce 2.2s infinite;

}



/* ==========================================
   FEATURED COLLECTION
========================================== */

.featured{

    background:#000;

    color:#fff;

    padding:140px 8%;

    text-align:center;

}

.featured-title h2{

    font-size:58px;

    font-weight:300;

    letter-spacing:6px;

    text-transform:uppercase;

    margin-bottom:40px;

}

.featured-video{

    max-width:1400px;

    margin:0 auto 60px;


}

.featured video{

    width:85%;
    
    margin:0 auto;

    display:block;

    border-radius:12px;

    box-shadow:0 20px 60px rgba(255,255,255,.04);

}

.featured-text{

    max-width:720px;

    margin:0 auto;

}

.featured-text h3{

    font-size:34px;

    font-weight:500;

    letter-spacing:2px;

    margin-bottom:25px;

}

.featured-text p{

    font-size:24px;

    line-height:1.8;

    color:#bdbdbd;

    margin-bottom:35px;

}

.featured-text h4{

    font-size:30px;

    font-weight:500;

    margin-bottom:45px;

}

.shop-button{

    display:inline-block;

    padding:20px 60px;

    border:2px solid #fff;

    color:#fff;

    text-decoration:none;

    font-size:16px;

    letter-spacing:2px;

    text-transform:uppercase;

    transition:.35s ease;

}

.shop-button:hover{

    background:#fff;

    color:#000;

}


/* ==========================================
   SIGNATURE COLLECTIONS
========================================== */

.collection{

    background:#000;

    color:#fff;

    padding:160px 8%;

    text-align:center;

}

.collection-title{

    max-width:700px;

    margin:0 auto 80px;

}

.collection-title h2{

    font-size:58px;

    font-weight:300;

    letter-spacing:6px;

    text-transform:uppercase;

    margin-bottom:25px;

}

.collection-title p{

    font-size:24px;

    color:#bdbdbd;

    line-height:1.7;

}

.collection-grid{

    display:flex;

    gap:60px;

    justify-content:center;

}

.collection-card{

    background:#050505;

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

    border-radius:16px;

    padding:40px;

}

.collection-card img{

    width:100%;

    border-radius:12px;

    display:block;

    margin-bottom:30px;

}

.collection-card h3{

    font-size:34px;

    margin-bottom:20px;

    letter-spacing:2px;

}

.collection-card p{

    font-size:20px;

    line-height:1.7;

    color:#bdbdbd;

    margin-bottom:35px;

}

.collection-button{

    display:inline-block;

    padding:18px 42px;

    border:2px solid #fff;

    color:#fff;

    text-decoration:none;

    letter-spacing:2px;

    text-transform:uppercase;

    transition:.3s;

}

.collection-button:hover{

    background:#fff;

    color:#000;

}

/* COLLECTION HERO */

.collection-hero{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:40px;
    max-width:1400px;
    margin:00px auto;
    padding:30px 8% 90px;
}

.collection-hero-text{
    flex:1;
}

.collection-hero-text h2{
    font-size:72px;
    letter-spacing:4px;
    margin-bottom:30px;
}

.collection-hero-text p{
    font-size:28px;
    line-height:1.5;
    color:#d8d8d8;
}

.collection-hero-image{
    flex:1;
    display:flex;
    justify-content:center;
    align-items:center;
}

.collection-hero-image img{
    width:120%;
    max-width:1300px;
    height:auto;
    display:block;
}
.bundle{
    max-width:1400px;
    margin:0 auto;
    padding:100px 8%;
}

.bundle-title{
    text-align:center;
    margin-bottom:60px;
}

.bundle-title h2{
    font-size:48px;
    margin-bottom:15px;
    text-transform:uppercase;
    letter-spacing:2px;
}

.bundle-title p{
    font-size:20px;
    color:#bfbfbf;
    line-height:1.6;
}
.bundle-sale{
    display:inline-block;

    margin:35px auto 0;

    padding:18px 42px;

    border:2px solid rgba(255,255,255,.45);

    border-radius:999px;

    background:rgba(12,20,40,.85);

    color:#fff;

    font-size:22px;
    font-weight:700;
    letter-spacing:1px;

    box-shadow:0 10px 30px rgba(0,0,0,.45);
}

.bundle-sale strong{
    color:#ff3b30;
    font-size:32px;
    font-weight:800;
}
.bundle-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:50px;
}

.bundle-card{
    text-align:center;
}

.bundle-card img{
    width:100%;
    border-radius:12px;
    display:block;
}

.bundle-card h3{
    margin:25px 0 10px;
    font-size:28px;
}

.bundle-card p{
    color:#bfbfbf;
    margin-bottom:15px;
}

.bundle-card h4{
    font-size:34px;
    color:#ffffff;
    margin-bottom:30px;
}

.bundle-card .shop-button{
    display:inline-block;
}
@media (max-width:900px){

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

.bundle-title h2{
    font-size:34px;
}

}

.bundle-image{
    position:relative;
    overflow:hidden;
    border-radius:12px;
}
.sale-badge{
    position:absolute;

    bottom:28px;
    left:28px;

    background:#d60000;
    color:#fff;

    padding:12px 18px;

    border-radius:10px;

    text-align:center;

    box-shadow:0 8px 25px rgba(0,0,0,.45);

    z-index:10;
}

.sale-badge small{
    display:block;
    font-size:15px;
    font-weight:700;
    letter-spacing:1px;
    text-transform:uppercase;
    margin-bottom:2px;
}

.sale-badge span{
    display:block;
    font-size:30px;
    font-weight:800;
}
/* ==========================================
   FOUNDING MEMBERS
========================================== */

.founders{

    background:#000;

    color:#fff;

    padding:170px 8%;

    text-align:center;

}

.founders-title h2{

    font-size:62px;

    font-weight:700;

    letter-spacing:3px;

    text-transform:uppercase;

    margin-bottom:35px;

}

.founders-line{

    width:110px;

    height:3px;

    background:#d60000;

    margin:0 auto 45px;

}

.founders-title p{

    font-size:26px;

    color:#bdbdbd;

    line-height:1.8;

    margin-bottom:80px;

}

.founders-grid{

    display:grid;

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

    gap:22px;

    max-width:1300px;

    margin:0 auto 90px;

}

.founders-grid div{

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

    padding:20px;

    font-size:26px;

    transition:.3s;

}

.founders-grid div:hover{

    border-color:#d60000;

    color:#fff;

    box-shadow:0 0 18px rgba(214,0,0,.35);

}

.founders-footer p{

    font-size:24px;

    color:#bdbdbd;

    line-height:1.8;

    margin-bottom:50px;

}
/*=========================================
            ABOUT PAGE
=========================================*/

.about-section{
    background:#000;
    padding:110px 12%;
}

.about-section.dark{
    background:#080808;
}

.about-container{
    max-width:950px;
    margin:0 auto;
}

.about-container h2{
    color:#fff;
    font-size:56px;
    font-weight:700;
    text-transform:uppercase;
    letter-spacing:2px;
    margin-bottom:35px;
}

.about-container p{
    color:#cfcfcf;
    font-size:24px;
    line-height:1.9;
    margin-bottom:32px;
}

/*=========================================
            LOGO SECTION
=========================================*/

.about-logo{

    background:#050505;

    padding:170px 20px;

    text-align:center;

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

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

}

.about-logo-container{

    max-width:900px;

    margin:auto;

}

.about-logo img{

    width:360px;

    max-width:80%;

    margin-bottom:40px;

    filter:drop-shadow(0 0 40px rgba(255,255,255,.20));

    transition:.35s;

}

.about-logo img:hover{

    transform:scale(1.05);

}

.about-logo h2{

    color:#fff;

    font-size:56px;

    letter-spacing:8px;

    margin-bottom:25px;

}

.about-logo p{

    color:#bdbdbd;

    font-size:24px;

    line-height:1.8;

    max-width:700px;

    margin:auto;

}

/*=========================================
            QUOTE
=========================================*/

.about-quote{

    background:#111;

    padding:160px 10%;

    text-align:center;

}

.quote-container{

    max-width:1000px;

    margin:auto;

}

.about-quote h2{

    color:#fff;

    font-size:60px;

    font-weight:300;

    line-height:1.5;

    letter-spacing:1px;

    font-style:italic;

}

/*=========================================
            ENDING
=========================================*/

.about-ending{

    background:#000;

    padding:180px 20px;

    text-align:center;

}

.about-ending h2{

    color:#fff;

    font-size:64px;

    letter-spacing:6px;

    margin-bottom:45px;

}

.about-ending p{

    color:#cfcfcf;

    font-size:32px;

    margin:15px 0;

}

.about-ending h3{

    color:#fff;

    font-size:42px;

    letter-spacing:10px;

    margin-top:40px;

}
.ending-logo{
    width:150px;
    margin:45px auto 35px;
    display:block;
    opacity:.9;
    filter:drop-shadow(0 0 18px rgba(255,255,255,.18));
    transition:.3s ease;
}

.ending-logo:hover{
    transform:scale(1.05);
}

.about-ending h3{
    color:#fff;
    font-size:42px;
    letter-spacing:10px;
    margin-top:40px;
    margin-bottom:18px;
}

.copyright{
    color:#888;
    font-size:18px;
    letter-spacing:2px;
    text-transform:uppercase;

}
/* ==========================================
   ABOUT HERO ONLY
==========================================*/

.about-page .hero-content{

    max-width:1400px;

    margin:0 auto;

    padding-top:210px;

    padding-left:5%;

    box-sizing:border-box;

}

/*=========================================
            COMMUNITY HERO
=========================================*/

.community-page .hero-content{

    max-width:1400px;

    margin:0 auto;

    padding-top:210px;

    padding-left:5%;

    box-sizing:border-box;

}
/*=========================================
              MUSIC HERO
=========================================*/

.music-page .hero-content{

    max-width:1400px;

    margin:0 auto;

    padding-top:210px;

    padding-left:5%;

    box-sizing:border-box;

}

.videos-page .hero-content {

    max-width: 1400px;

    margin: 0 auto;

    padding-top: 210px;

    padding-left: 5%;

    box-sizing: border-box;

}
/*=========================================
        COMMUNITY BANNER
=========================================*/

.community-banner{

    min-height:100vh;

    background-image:url("../images/beach_campfire.png");

    background-size:cover;

    background-position:center;

    background-repeat:no-repeat;

}

.community-banner .glacier-overlay{

    min-height:100vh;

    background:rgba(0,0,0,.30);

    display:flex;

    align-items:flex-start;

    justify-content:flex-start;

    padding-top:140px;

    padding-left:12%;

    box-sizing:border-box;

}

.community-banner h2{

    font-size:82px;

    font-weight:700;

    line-height:1.05;

    color:#fff;

    text-shadow:0 4px 18px rgba(0,0,0,.55);

}
/*=========================================
        COMMUNITY TEXT
=========================================*/

.community-text{

    text-align:center;

}

.community-text .about-container{

    max-width:900px;

    margin:0 auto;

}

.community-text h2{

    font-size:64px;

    margin-bottom:40px;

}

.community-text p{

    max-width:800px;

    margin:0 auto 38px;

    font-size:24px;

    line-height:1.8;

    color:#cfcfcf;

}
/*=========================================
     COMMUNITY CREATORS LOGO
=========================================*/

.community-page .about-logo img{

    width:550px;

    max-width:90%;

}
.music-banner{

    min-height:100vh;

    background-image:url("../images/unapologetic_american.png");

    background-size:cover;

    background-position:center;

    background-repeat:no-repeat;

}
/* ==========================================
   MUSIC RELEASES
========================================== */

.music-release{

    padding:120px 5%;

}

.music-container{

    max-width:1400px;

    margin:0 auto;

    display:flex;

    align-items:center;

    justify-content:space-between;

    gap:90px;

}

.music-cover{

    flex:1;

}

.music-cover img{

    width:100%;

    max-width:520px;

    display:block;

    margin:auto;

    border-radius:18px;

    box-shadow:0 0 35px rgba(0,0,0,.45);

    transition:.35s;

}

.music-cover img:hover{

    transform:scale(1.03);

}

.music-content{

    flex:1;

}

.music-label{

    display:inline-block;

    color:#888;

    letter-spacing:3px;

    font-size:14px;

    margin-bottom:18px;

}

.music-content h2{

    font-size:56px;

    margin-bottom:30px;

}

.music-content p{

    font-size:22px;

    line-height:1.8;

    color:#cfcfcf;

    margin-bottom:40px;

}

.music-button{

    display:inline-block;

    padding:16px 36px;

    border:2px solid #ffffff;

    color:#fff;

    text-decoration:none;

    font-weight:bold;

    letter-spacing:2px;

    transition:.25s;

}

.music-button:hover{

    background:#fff;

    color:#000;

}

.alt .music-container{

    flex-direction:row-reverse;

}
/* =====================================
FEATURED MUSIC
===================================== */

.music-library{

    padding:120px 5%;



}

.music-library .listen-container{
    max-width:1400px;
    margin:0 auto;
}
.music-library h2{

    text-align:center;

    font-size:56px;

    margin-bottom:70px;

}

.album-grid{

    display:grid;

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

    gap:60px;

    align-items:start;

}

.album-card{

    text-align:center;

}

.album-card img{

    width:100%;

    max-width:320px;

    aspect-ratio:1/1;

    object-fit:cover;

    display:block;

    margin:0 auto;

    border-radius:18px;

    box-shadow:0 0 35px rgba(0,0,0,.45);

    transition:.35s;

}

.album-card img:hover{

    transform:scale(1.03);

}

.album-type{

    display:block;

    margin-top:20px;

    color:#888;

    font-size:13px;

    letter-spacing:3px;

    text-transform:uppercase;

}

.album-card h3{

    margin-top:22px;

    font-size:28px;

    letter-spacing:2px;

}

.album-card p{

    margin-top:20px;
    font-size:18px;
    line-height:1.8;
    color:#cfcfcf;
    max-width:340px;
    margin-left:auto;
    margin-right:auto;

}

@media (max-width:900px){

    .album-grid{
        grid-template-columns:1fr;
        gap:80px;
    }

}



/* =====================================
LISTEN EVERYWHERE
===================================== */

.listen-section{

    padding:120px 5%;

}

.listen-container{

    max-width:1200px;

    margin:0 auto;

    text-align:center;

}

.listen-container h2{

    font-size:64px;

    margin-bottom:25px;

}

.listen-copy{

    font-size:22px;

    color:#cfcfcf;

    margin-bottom:50px;

}

.stream-grid{

    display:flex;

    justify-content:center;

    align-items:center;

    flex-wrap:wrap;

    gap:20px;

}
.stream-grid a{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    min-width:150px;

    padding:16px 28px;

    border:1px solid #555;

    border-radius:12px;

    color:#fff;

    text-decoration:none;

    transition:.3s;

}

.stream-grid a:hover{

    border-color:#c40000;

    color:#fff;

    background:#c40000;

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

@media(max-width:900px){

.album-grid{

grid-template-columns:1fr;

}

.stream-grid{

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

}

.album-type{

    display:block;

    margin-top:25px;

    color:#888;

    font-size:13px;

    letter-spacing:3px;

    text-transform:uppercase;

}
  .listen-section{
    padding:120px 0;
    text-align:center;
}

.stream-grid{
    display:flex;
    flex-wrap:wrap;
    justify-content:center;
    gap:20px;
    margin-top:40px;
}

.stream-grid a{
    color:#fff;
    text-decoration:none;
    border:1px solid #444;
    padding:14px 28px;
    border-radius:40px;
    transition:.3s;
}

.stream-grid a:hover{
    border-color:#c40000;
    color:#c40000;
}  
 }     
    /*=========================================
              FEATURED VIDEO
=========================================*/

.video-featured{

    padding:140px 5%;

    background:#000;

}

.video-container{

    max-width:1400px;

    margin:0 auto;

    text-align:center;

}

.video-container h2{

    font-size:58px;

    margin-bottom:60px;

    letter-spacing:4px;

}

.video-container video{

    width:100%;

    max-width:1200px;

    aspect-ratio:16/9;

    object-fit:cover;

    display:block;

    margin:0 auto;

    border-radius:18px;


}

.video-description{

    max-width:820px;

    margin:50px auto 0;

}

.video-description h3{

    font-size:34px;

    margin-bottom:20px;

    letter-spacing:2px;

}

.video-description p{

    font-size:22px;

    line-height:1.8;

    color:#cfcfcf;

}

 .youtube-logo{
    transition:.3s ease;
}

.youtube-logo:hover{
    transform:scale(1.05);
    filter:drop-shadow(0 0 15px rgba(255,255,255,.25));


}

/*=========================================
            CONTACT PAGE
=========================================*/

.contact-page .hero{

    background-image:url("../images/contact.png");

}


.contact-section{

    background:#000;
    padding:140px 5%;

}

.contact-container{

    max-width:1400px;
    margin:0 auto;

}

.contact-container h2{

    text-align:center;
    font-size:58px;
    letter-spacing:4px;
    margin-bottom:35px;

}

.contact-intro{

    max-width:850px;
    margin:0 auto 80px;
    text-align:center;

    font-size:24px;
    line-height:1.8;
    color:#cfcfcf;

}

.contact-grid{

    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:40px;

}

.contact-card{

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

    border-radius:18px;

    padding:45px;

    transition:.3s;

}

.contact-card:hover{

    border-color:#c40000;
    transform:translateY(-4px);

}

.contact-card h3{

    font-size:30px;
    margin-bottom:20px;
    letter-spacing:2px;

}

.contact-card p{

    color:#cfcfcf;
    font-size:20px;
    line-height:1.8;

}

@media(max-width:900px){

.contact-grid{

    grid-template-columns:1fr;

}

}

/*=========================================
            CONTACT FORM
=========================================*/

.contact-form-section{

    background:#050505;
    padding:120px 5%;

}

.contact-form-container{

    max-width:900px;
    margin:0 auto;

}

.contact-form-container h2{

    text-align:center;
    font-size:54px;
    margin-bottom:25px;
    letter-spacing:3px;

}

.contact-form-container form{

    display:flex;
    flex-direction:column;
    gap:24px;
    margin-top:50px;

}

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

    width:100%;
    padding:18px 22px;

    background:#111;
    color:#fff;

    border:1px solid #333;
    border-radius:12px;

    font-size:18px;

}

.contact-form-container input:focus,
.contact-form-container select:focus,
.contact-form-container textarea:focus{

    outline:none;
    border-color:#c40000;

}

.contact-form-container textarea{

    resize:vertical;
    min-height:180px;

}

.contact-form-container .shop-button{

    align-self:center;
    margin-top:20px;

}

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

@media (max-width:900px){

    .header-inner{
        flex-direction:column;
        padding:15px;
    }

    .main-nav ul{
        flex-wrap:wrap;
        justify-content:center;
        gap:14px;
    }

    .hero-content{
        padding-top:180px;
        padding-left:28px;
        padding-right:28px;
        
     
    }

    .hero h1,
    .hero h2{
        font-size:44px;
    }

    .story-container{
        flex-direction:column;
    }

    .story-logo{
        justify-content:center;
    }

    .glacier h2{
        font-size:38px;
    }

/* Mobile hero images */

.hero{
    background-image:url("../images/hero_mobile.png");
}


/* CONTACT MOBILE */

.contact-page .hero{

    background-image:url("../images/contact-mobile.jpeg");
    background-repeat:no-repeat;
    background-size:contain;
    background-position:center top;
    background-color:#000;

    min-height:100vh;

}
.glacier{
    background-image:url("../images/index_glacier_mobile.png");
}

.community-banner{
    background-image:url("../images/community_campfire_beach_mobile.png");
}
/* COMMUNITY MOBILE */

.community-banner h2{
    font-size:56px;
}

.community-text h2{
    font-size:52px;
}

.about-container h2{
    font-size:42px;
}

.about-logo h2{
    font-size:42px;
    letter-spacing:3px;
}

.about-ending h2{
    font-size:42px;
    letter-spacing:1px;
}

.about-ending p{
    font-size:24px;
}

/* FOUNDERS */

.founders-grid{
    grid-template-columns:repeat(2,1fr);
    gap:16px;
}

.founders-grid div{
    font-size:20px;
    padding:18px 10px;
}
/* MUSIC MOBILE */

.music-library h2{
    font-size:42px;
}

.listen-container h2{
    font-size:42px;
}

.album-card h3{
    font-size:24px;
}

.album-card p{
    font-size:18px;
}

.listen-copy{
    font-size:20px;
}
}   /* <-- closes the @media block */

html,
body{
    overflow-x:hidden;
}

/* ==========================================
   SHOP PAGE
========================================== */

.shop-page{
    background:#000;
    -webkit-text-size-adjust:100%;
    text-size-adjust:100%;
}

.nav-toggle{
    display:none;
}

.shop-hero{
    min-height:760px;
    display:flex;
    align-items:center;
    position:relative;
    padding:170px 8% 90px;
    background:
        linear-gradient(90deg, rgba(0,0,0,.96) 0%, rgba(0,0,0,.78) 42%, rgba(0,0,0,.18) 100%),
        url("../images/13171-dual-hats-red-glow.webp") center right/cover no-repeat;
    border-bottom:1px solid rgba(255,255,255,.12);
}

.shop-hero-content{
    width:min(700px, 100%);
}

.shop-kicker,
.product-type{
    color:#d60000;
    font-weight:700;
    letter-spacing:4px;
    font-size:14px;
}

.shop-hero h1{
    margin:18px 0 28px;
    font-size:clamp(64px, 8vw, 118px);
    line-height:.88;
    letter-spacing:-3px;
}

.shop-hero-content > p:not(.shop-kicker){
    max-width:590px;
    color:#d0d0d0;
    font-size:23px;
    line-height:1.65;
    margin-bottom:38px;
}

.shop-intro{
    max-width:900px;
    margin:0 auto;
    padding:110px 25px 75px;
    text-align:center;
}

.shop-intro > p:first-child{
    color:#d60000;
    letter-spacing:5px;
    font-weight:700;
}

.shop-intro h2{
    font-size:clamp(38px, 5vw, 68px);
    letter-spacing:4px;
    margin:20px 0;
}

.shop-rule{
    width:90px;
    height:3px;
    margin:25px auto 30px;
    background:#c40000;
}

.shop-intro-copy{
    color:#aaa;
    font-size:21px;
    line-height:1.7;
}

.product-grid{
    width:min(1420px, 90%);
    margin:0 auto;
    display:grid;
    grid-template-columns:repeat(2, minmax(0, 1fr));
    gap:32px;
    padding-bottom:120px;
}

.product-card{
    overflow:hidden;
    background:linear-gradient(145deg, #101010, #050505);
    border:1px solid rgba(255,255,255,.12);
    border-radius:16px;
    transition:transform .3s ease, border-color .3s ease;
}

.product-card:hover{
    transform:translateY(-6px);
    border-color:rgba(196,0,0,.75);
}

.product-image{
    aspect-ratio:4/3;
    overflow:hidden;
    background:#080808;
}

.product-image img{
    width:100%;
    height:100%;
    display:block;
    object-fit:cover;
    transition:transform .5s ease;
}

.product-card:hover .product-image img{
    transform:scale(1.025);
}

.product-info{
    padding:38px 38px 44px;
}

.product-info h2{
    font-size:clamp(27px, 3vw, 39px);
    letter-spacing:1px;
    margin:13px 0 17px;
}

.product-description{
    min-height:65px;
    color:#bcbcbc;
    font-size:18px;
    line-height:1.65;
}

.product-price{
    margin:26px 0;
    font-size:29px;
    font-weight:700;
}

.product-price span{
    display:block;
    margin-top:7px;
    color:#aaa;
    font-size:12px;
    letter-spacing:2px;
}

.product-price-sale .original-price{
    display:inline;
    margin:0 12px 0 0;
    color:#777;
    font-size:22px;
    letter-spacing:0;
    text-decoration:line-through;
}

.product-price-sale strong{
    color:#fff;
    font-size:29px;
}

.product-info .shop-button{
    width:100%;
    padding:17px 22px;
    text-align:center;
}

.shop-promise{
    display:grid;
    grid-template-columns:repeat(3, 1fr);
    gap:1px;
    background:#292929;
    border-top:1px solid #292929;
    border-bottom:1px solid #292929;
}

.shop-promise > div{
    padding:65px 30px;
    background:#080808;
    text-align:center;
}

.shop-promise i{
    color:#c40000;
    font-size:34px;
    margin-bottom:22px;
}

.shop-promise h3{
    letter-spacing:2px;
    margin-bottom:12px;
}

.shop-promise p{
    color:#999;
    line-height:1.5;
}

.shop-footer{
    padding:90px 25px 55px;
    text-align:center;
}

.shop-footer > img{
    width:90px;
    margin-bottom:20px;
}

.shop-footer h2{
    letter-spacing:4px;
}

.shop-footer > p:not(.copyright){
    margin-top:8px;
    color:#aaa;
    letter-spacing:4px;
    font-size:12px;
}

.store-cart-button{
    position:fixed;
    right:24px;
    bottom:24px;
    z-index:1200;
    display:flex;
    align-items:center;
    gap:10px;
    padding:14px 18px;
    color:#fff;
    background:#090909;
    border:1px solid #c40000;
    border-radius:4px;
    font:700 13px/1 Arial, sans-serif;
    letter-spacing:2px;
    cursor:pointer;
    box-shadow:0 12px 35px rgba(0,0,0,.5);
}

.store-cart-button span{
    display:grid;
    place-items:center;
    min-width:24px;
    height:24px;
    padding:0 6px;
    color:#fff;
    background:#c40000;
    border-radius:20px;
    letter-spacing:0;
}

.store-cart-overlay{
    position:fixed;
    inset:0;
    z-index:1300;
    background:rgba(0,0,0,.72);
    backdrop-filter:blur(3px);
}

.store-cart{
    position:fixed;
    top:0;
    right:0;
    bottom:0;
    z-index:1301;
    width:min(480px, 100%);
    display:flex;
    flex-direction:column;
    color:#fff;
    background:#080808;
    border-left:1px solid #292929;
    transform:translateX(105%);
    transition:transform .3s ease;
    box-shadow:-25px 0 60px rgba(0,0,0,.6);
}

.store-cart.is-open{
    transform:translateX(0);
}

body.cart-open{
    overflow:hidden;
}

.store-cart-header{
    display:flex;
    align-items:flex-start;
    justify-content:space-between;
    gap:20px;
    padding:30px;
    border-bottom:1px solid #292929;
}

.store-cart-header p{
    margin:0 0 8px;
    color:#e00000;
    font-size:11px;
    font-weight:700;
    letter-spacing:3px;
}

.store-cart-header h2{
    margin:0;
    font-size:25px;
    letter-spacing:2px;
}

.store-cart-close{
    padding:0;
    color:#fff;
    background:none;
    border:0;
    font-size:38px;
    line-height:.8;
    cursor:pointer;
}

.store-cart-items{
    flex:1;
    overflow:auto;
    padding:0 30px;
}

.store-cart-item{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:18px;
    padding:24px 0;
    border-bottom:1px solid #292929;
}

.store-cart-item-copy h3{
    margin:0 0 8px;
    font-size:16px;
    line-height:1.35;
}

.store-cart-item-copy p{
    margin:0;
    color:#aaa;
}

.store-cart-quantity{
    display:flex;
    align-items:center;
    gap:12px;
    flex:0 0 auto;
}

.store-cart-quantity button{
    width:34px;
    height:34px;
    color:#fff;
    background:#151515;
    border:1px solid #393939;
    border-radius:3px;
    font-size:20px;
    cursor:pointer;
}

.store-cart-empty{
    flex:1;
    padding:45px 30px;
    color:#999;
    font-size:17px;
}

.store-cart-summary{
    padding:26px 30px 30px;
    border-top:1px solid #292929;
    background:#050505;
}

.store-cart-summary > div{
    display:flex;
    justify-content:space-between;
    margin-bottom:12px;
    font-size:20px;
    letter-spacing:1px;
}

.store-cart-summary > p{
    margin:0 0 22px;
    color:#999;
    font-size:12px;
    line-height:1.5;
}

.store-checkout-button{
    width:100%;
    margin:0;
    color:#fff;
    background:#b90000;
    border-color:#e00000;
}

.store-checkout-button:disabled{
    opacity:.45;
    cursor:not-allowed;
}

.store-continue-button{
    width:100%;
    margin-top:12px;
    padding:13px;
    color:#bbb;
    background:none;
    border:0;
    font-size:11px;
    font-weight:700;
    letter-spacing:2px;
    cursor:pointer;
}

@media (max-width:900px){
    .shop-page .site-header{
        min-height:76px;
    }

    .shop-page .header-inner{
        min-height:76px;
        padding:10px 18px;
        flex-direction:row;
        justify-content:space-between;
    }

    .shop-page .brand{
        min-width:0;
        gap:10px;
    }

    .shop-page .brand img{
        width:46px;
    }

    .shop-page .brand-text h1{
        font-size:15px;
        letter-spacing:1.5px;
        white-space:nowrap;
    }

    .shop-page .brand-text span{
        display:block;
        margin-top:3px;
        font-size:8px;
        letter-spacing:2px;
        white-space:nowrap;
    }

    .shop-page .nav-toggle{
        width:44px;
        height:44px;
        padding:10px;
        display:flex;
        flex-direction:column;
        justify-content:center;
        gap:5px;
        flex:0 0 auto;
        border:1px solid #333;
        border-radius:6px;
        background:#080808;
        cursor:pointer;
    }

    .shop-page .nav-toggle span{
        width:100%;
        height:2px;
        display:block;
        background:#fff;
        transition:transform .25s ease, opacity .25s ease;
    }

    .shop-page.nav-open .nav-toggle span:nth-child(1){
        transform:translateY(7px) rotate(45deg);
    }

    .shop-page.nav-open .nav-toggle span:nth-child(2){
        opacity:0;
    }

    .shop-page.nav-open .nav-toggle span:nth-child(3){
        transform:translateY(-7px) rotate(-45deg);
    }

    .shop-page .main-nav{
        position:absolute;
        top:76px;
        left:0;
        right:0;
        max-height:0;
        overflow:hidden;
        background:rgba(0,0,0,.98);
        border-bottom:0 solid #c40000;
        transition:max-height .3s ease, border-width .3s ease;
    }

    .shop-page.nav-open .main-nav{
        max-height:520px;
        border-bottom-width:2px;
    }

    .shop-page .main-nav ul{
        display:block;
        padding:8px 20px 18px;
    }

    .shop-page .main-nav li{
        border-bottom:1px solid #202020;
    }

    .shop-page .main-nav a{
        display:block;
        padding:13px 6px;
        font-size:14px;
        letter-spacing:2px;
    }

    .shop-hero{
        min-height:640px;
        padding:145px 24px 65px;
        align-items:flex-end;
        background:
            linear-gradient(0deg, rgba(0,0,0,.98) 0%, rgba(0,0,0,.4) 72%, rgba(0,0,0,.25) 100%),
            url("../images/13171-dual-hats-red-glow.webp") center/cover no-repeat;
    }

    .shop-hero h1{
        font-size:52px;
        letter-spacing:-1px;
    }

    .shop-hero-content > p:not(.shop-kicker){
        font-size:18px;
    }

    .product-grid,
    .shop-promise{
        grid-template-columns:1fr;
    }

    .product-grid{
        width:min(620px, 92%);
        gap:24px;
    }

    .shop-intro{
        padding:72px 22px 52px;
    }

    .shop-intro h2{
        font-size:38px;
        letter-spacing:2px;
    }

    .shop-intro-copy{
        font-size:17px;
    }

    .product-image{
        aspect-ratio:1/1;
    }

    .product-image img{
        object-fit:contain;
    }

    .product-info{
        padding:28px 24px 34px;
    }

    .product-info h2{
        font-size:28px;
    }

    .product-description{
        font-size:17px;
    }

    .product-description{
        min-height:0;
    }

    .store-cart-button{
        right:14px;
        bottom:14px;
        padding:12px 14px;
    }

    .store-cart-header,
    .store-cart-summary{
        padding:22px 20px;
    }

    .store-cart-items{
        padding:0 20px;
    }
}
.social-icons{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:30px;
    margin:50px 0 35px;
}

.social-icons a{
    color:#fff;
    font-size:64px;
    transition:.3s ease;
}

.social-icons a:hover{
    color:#c40000;
    transform:scale(1.12);
}

@media (max-width:900px){

    .social-icons a{
        font-size:52px;
    }

}
