/* styles.css */
@import url('https://fonts.googleapis.com/css2?family=Archivo+Black&display=swap');

:root {
  --bg: #0a0a0a;
  --accent: #e10600;
  --text: #f0f0f0;
  --fade: #aaaaaa;
}

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


body {
  font-family: 'Barlow Condensed', sans-serif;
  background-color: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  font-weight: bolder;
  text-shadow: rgba(0, 0, 0, 0.487) 1px 3px;

}

/* Mobile Nav */
.mobile-nav {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  width: 100%;
  background: var(--bg);
  padding: 1rem;
  display: none;
  justify-content: space-between;
  align-items: center;
}

/* Mobile Nav */
.menu-toggle {
    display: none;
  }
  

.slideout-menu {
  position: fixed;
  top: 0;
  left: -100%;
  width: 75%;
  height: 100vh;
  background: #111;
  display: flex;
  flex-direction: column;
  padding: 2rem;
  gap: 1.5rem;
  transition: left 0.3s ease;
  z-index: 999;
}

.slideout-menu.active {
  left: 0;
}

.slideout-menu a {
  color: var(--text);
  font-size: 1.5rem;
  text-decoration: none;
  border-left: 4px solid transparent;
  padding-left: 1rem;
  transition: border-color 0.3s;
}

.slideout-menu a:hover {
  border-color: var(--accent);
}

/* Hero */
.hero {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(to bottom right, #1a1a1a, #000);
  text-align: center;
  padding: 2rem;
  padding-top: 1px;
  padding-bottom: 100px;
  background-color: #000;
  background-image: url(/bgani2-ezgif.com-optimize.gif);
  background-size: cover;
  background-position: center top;

}





.logo {
  font-size: 4rem;
  color: var(--accent);
}

.tagline {
  font-size: 1.5rem;
  color: var(--fade);
  margin-bottom: 2rem;
}

.cta-button {
  padding: 0.75rem 2rem;
  background: var(--accent);
  color: var(--bg);
  text-decoration: none;
  font-size: 1.2rem;
  border-radius: 30px;
  transition: background 0.3s;
  text-shadow: none;
}

.cta-button:hover {
  background: #e7dede;
}

/* Sections */
section {
  padding: 4rem 2rem;
  text-align: center;
}

h2 {
  font-size: 2.5rem;
  margin-bottom: .2rem;
  color: var(--accent);
  opacity: 60%;
}

#music {

  background-image: url(/bg1.jpg);

  background-size: cover;
  background-position: left;

}

.embeds {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: center;
}

.embed {
  width: 100%;
  max-width: 100%;
  height: 515px;
  border: none;
}

@media (min-width: 968px) {

  .embed {
    width: 40%;
    max-width: 40%;
    height: 515px;
    border: none;
  }

}



/* Gallery */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1rem;
}

.gallery-img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  transition: transform 0.3s;
  cursor: pointer;
}

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

#about {
  background-image: url(/feltdat2-ezgif.com-optimize.gif);
  background-position: center top;
  background-size:cover;
  background-color: #101010;
}

/* About & Socials */
.about p {
  max-width: 600px;
  margin: 0 auto 2rem;
}

#bio {
  background-image: url(/bg1.jpg);
  background-position: center top;
  background-size:cover;
  background-color: #101010;
}

.bio p {
  max-width: 600px;
  margin: 0 auto 2rem;
}

.socials {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
}

#icon {

  width: 50px;

}

@media (max-width: 770px) {

  #icon {

    width: 30px;
  }

}

.socials a {
  color: var(--accent);
  font-size: 1.5rem;
  text-decoration: none;
  transition: color 0.3s;
}

.socials a:hover {
  color: #fff;
  opacity: 50%;
  transform:  scale(1.2) ;

}

/* Footer */
footer {
  background: rgb(0, 0, 0);
  padding: 2rem;
  padding-top: 16px;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.signup-form {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  max-width: 400px;
  margin: 0 auto 1rem;
}



.signup-form input {
  padding: 0.5rem;
  border: none;
  border-radius: 5px;
  font-size: 1rem;
}

.signup-form button {
  padding: 0.5rem;
  background: var(--accent);
  border: none;
  color: #000;
  font-weight: bold;
  border-radius: 5px;
  cursor: pointer;
  transition: background 0.3s;
}

.signup-form button:hover {
  background: #ff3020;
}

@media (min-width: 768px) {
  .embeds {
    flex-direction: row;
    justify-content: center;
  }
  .slideout-menu {
    display: none;
  }
  #menuToggle {
    display: block;
  }
}

.video-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 2rem;
  background-color: #000;
  background-image: url(/bg2.jpg);
  background-position: center;
  background-size: cover;
  color: white;
}

.video-container iframe {
  width: 800px;
  height: 450px;
  border: none;
}

/* Mobile Styles */
@media (max-width: 768px) {
  .video-container iframe {
    width: 515px;
    max-width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
  }
}

.visually-hidden {
  position: absolute;
  display: none;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
