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

html{
scroll-behavior:smooth;
}

body{
background:#000;
color:#fff;
font-family:'Oswald',sans-serif;
line-height:1.7;
}

nav{
position:fixed;
top:0;
left:0;
width:100%;
height:90px;
padding:0 4%;
display:flex;
justify-content:space-between;
align-items:center;
background:#000;
z-index:1000;
}

.logo{
font-size:1.6rem;
font-weight:700;
letter-spacing:3px;
color:#ff0000;
}

nav ul{
display:flex;
list-style:none;
gap:35px;
}

nav a{
color:white;
text-decoration:none;
font-size:1rem;
font-weight:500;
transition:.3s;
}

nav a:hover{
color:#ff0000;
}

.hero{
position:relative;
height:100vh;
overflow:hidden;
background:#000;
}

.hero-image{
position:absolute;
top:120px;
left:0;
width:68%;
height:calc(100vh - 120px);
object-fit:cover;
object-position:center 15%;
z-index:0;
filter:grayscale(100%) brightness(.85) contrast(1.08);
}

.hero::after{
content:"";
position:absolute;
top:120px;
left:0;
width:100%;
height:calc(100vh - 120px);
z-index:1;
pointer-events:none;
background:linear-gradient(
to right,
rgba(0,0,0,0) 0%,
rgba(0,0,0,.15) 35%,
rgba(0,0,0,.65) 52%,
rgba(0,0,0,.95) 66%,
#000 100%
);
}

.hero-content{
position:absolute;
top:55%;
right:4%;
transform:translateY(-50%);
width:52%;
z-index:5;
text-align:center;
}

.hero h1{
font-size:5.8rem;
line-height:1;
letter-spacing:7px;
font-weight:700;
text-transform:uppercase;
color:white;
text-shadow:0 0 25px rgba(0,0,0,.7);
margin-bottom:25px;
white-space:nowrap;
}

.hero-tagline{
font-size:1.15rem;
letter-spacing:6px;
color:#ff0000;
margin-bottom:35px;
}

.hero-description{
display:none;
}

.btn{
display:inline-block;
padding:15px 30px;
background:#ff0000;
color:white;
text-decoration:none;
margin-top:20px;
margin-right:15px;
transition:.3s;
}

.btn:hover{
opacity:.85;
}

.hero-socials{
display:flex;
justify-content:center;
align-items:center;
gap:45px;
margin-top:45px;
width:100%;
}

.hero-socials a{
font-size:3.2rem;
color:white;
text-decoration:none;
transition:.3s;
}

.hero-socials a:hover{
color:#ff0000;
transform:translateY(-4px);
}

.social-icons{
display:flex;
justify-content:center;
gap:25px;
margin-top:35px;
}

.social-icons a{
font-size:2rem;
color:white;
text-decoration:none;
transition:.3s;
}

.social-icons a:hover{
color:#ff0000;
transform:translateY(-3px);
}

section{
padding:20px 10%;
}

#shows,
#gallery,
#epk,
#contact{
border-top:1px solid rgba(255,255,255,.08);
}

h2{
font-size:3rem;
color:#ff0000;
margin-bottom:30px;
text-transform:uppercase;
letter-spacing:2px;
}

.calendar{
margin-top:30px;
border:1px solid #ff0000;
box-shadow:0 0 20px rgba(255,0,0,.25);
}

.calendar iframe{
width:100%;
}

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

.gallery a{
text-decoration:none;
}

.gallery img{
width:100%;
height:350px;
object-fit:cover;
border:2px solid #222;
transition:.3s;
}

.gallery img:hover{
transform:scale(1.03);
border-color:#ff0000;
}

.download-note{
margin-bottom:20px;
opacity:.8;
}

#contact{
text-align:center;
}

footer{
text-align:center;
padding:40px;
background:#050505;
border-top:1px solid #222;
}

#contact form{
max-width:700px;
margin:40px auto;
display:flex;
flex-direction:column;
gap:15px;
}

#contact form input,
#contact form textarea{
width:100%;
background:#111;
border:1px solid #333;
color:white;
padding:15px;
font-family:'Oswald',sans-serif;
font-size:1rem;
}

#contact form input:focus,
#contact form textarea:focus{
outline:none;
border-color:#ff0000;
}

#contact form button{
align-self:center;
margin-top:10px;
}

@media(max-width:768px){

nav{
height:auto;
padding:20px 7%;
flex-direction:column;
}

nav ul{
margin-top:15px;
flex-wrap:wrap;
justify-content:center;
gap:18px;
}

.hero-image{
left:0;
top:120px;
width:100%;
height:calc(100vh - 120px);
object-position:center top;
}

.hero::after{
top:120px;
height:calc(100vh - 120px);
background:rgba(0,0,0,.6);
}

.hero-content{
width:90%;
left:50%;
right:auto;
top:58%;
transform:translate(-50%,-50%);
text-align:center;
}

.hero h1{
font-size:3.2rem;
letter-spacing:3px;
white-space:normal;
}

.hero-tagline{
font-size:.85rem;
letter-spacing:2px;
}

.hero-socials a{
font-size:2.5rem;
}

section{
padding:80px 7%;
}

h2{
font-size:2.2rem;
}

.calendar iframe{
height:450px;
}

}
