/* RESET */

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

html{
    scroll-behavior:smooth;
}

body{
    font-family:Arial, sans-serif;
    background:#111;
    color:white;
    line-height:1.7;
}

/* NAVIGATION */

.navbar{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    background:rgba(0,0,0,0.9);
    padding:15px 25px;
    z-index:9999;
}

.logo-small{
    color:white;
    font-weight:bold;
    display:inline-block;
}

.burger{
    float:right;
    font-size:30px;
    color:white;
    cursor:pointer;
}

#menu{
    display:none;
    list-style:none;
    margin-top:15px;
}

#menu.active{
    display:block;
}

#menu li{
    margin:10px 0;
}

#menu a{
    color:white;
    text-decoration:none;
    font-weight:bold;
}

#menu a:hover{
    color:#ff8c00;
}

/* HERO */

#hero{
    height:100vh;
    background:
    linear-gradient(
    rgba(0,0,0,0.5),
    rgba(0,0,0,0.8)),
    url('sf-epk-images/hero.JPG');

    background-size:cover;
    background-position:center;

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

.overlay{
    text-align:center;
    max-width:900px;
    padding:20px;
}

h1{
    font-size:5rem;
    letter-spacing:4px;
}

#hero h2{
    color:#d8c79a;
    font-size:2rem;
}

.release{
    font-size:1.2rem;
    margin-top:20px;
}

#countdown{
    margin-top:20px;
    color:#ffcc00;
    font-size:1.5rem;
}

/* BUTTONS */

.buttons{
    margin-top:40px;
}

.btn{
    display:inline-block;
    padding:15px 30px;
    margin:10px;
    background:#ff8c00;
    color:white;
    text-decoration:none;
    border-radius:40px;
    transition:0.3s;
}

.btn:hover{
    background:#ffb347;
}

/* CONTENT SECTIONS */

.content,
.dark{
    padding:100px 10%;
}

.content{
    background:white;
    color:#222;
}

.dark{
    background:#111;
}

/* SINGLE */

.single-grid{
    display:grid;
    grid-template-columns:300px 1fr 1fr;
    gap:60px;
    align-items:center;
    max-width:1000px;
    margin:0 auto;
}

.artwork-container{
    text-align:center;
}

.artwork{
    width:300px;
    max-width:100%;
    height:auto;
    display:block;
    margin:0 auto;
    border-radius:12px;
    box-shadow:0 10px 30px rgba(0,0,0,0.5);
}

.release-info{
    color:white;
}

.release-info h2{
    font-size:2.5rem;
    margin-bottom:20px;
    color:#d8c79a;
}

/* AUDIO */

audio{
    width:100%;
    max-width:500px;
}

/* VIDEO */

video{
    width:100%;
    max-width:900px;
    display:block;
    margin:auto;
}

/* GALLERY */

.gallery{
    display:grid;
    grid-template-columns:
    repeat(auto-fit,minmax(250px,1fr));
    gap:20px;
}

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

/* PRESS QUOTES */

blockquote{
    font-size:1.2rem;
    margin:25px 0;
    padding-left:20px;
    border-left:4px solid #ff8c00;
    font-style:italic;
}

/* SOCIAL */

.social{
    display:flex;
    justify-content:center;
    flex-wrap:wrap;
    gap:25px;
}

.social a{
    text-decoration:none;
    color:#ff6600;
    font-weight:bold;
    font-size:1.1rem;
}

.social a:hover{
    color:#ff8c00;
}

/* COMING SOON BOX */

.coming-soon{
    background:#eee;
    color:#333;
    padding:30px;
    text-align:center;
    border-radius:12px;
    margin-top:20px;
}

/* FOOTER */

footer{
    background:#000;
    text-align:center;
    padding:30px;
    color:white;
}

/* MOBILE */

@media(max-width:768px){

    h1{
        font-size:3rem;
    }

    #hero h2{
        font-size:1.5rem;
    }

    .single-grid{
        grid-template-columns:1fr;
        text-align:center;
    }

    .artwork{
        width:250px;
    }
}