/* ===== RESET GERAL ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

a {
  color: white;
  text-decoration: none;
}

a:hover {
  opacity: 0.7;
}

/* ===== BODY ===== */
body {
  background: url("bg.jpg") no-repeat center center fixed;
  background-size: cover;
  background-attachment: fixed;
  background-color: #000;
  color: white;
  font-family: 'Roboto Mono', monospace;
  overflow-x: hidden;
}

/* ===== NAVBAR ===== */
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #000;
  height: 8vh;
  padding: 0 40px;
  border: none;
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 6px; /* aproxima a logo do texto */
}

#logo2 {
  height: 38px;
  width: auto;
  object-fit: contain;
}

.logo {
  font-size: 24px;
  text-transform: uppercase;
  letter-spacing: 4px;
  font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
}

/* MENU DE NAVEGAÇÃO */
.nav-list {
  list-style: none;
  display: flex;
}

.nav-list li {
  letter-spacing: 3px;
  margin-left: 32px;
}

.mobile-menu {
  display: none;
  cursor: pointer;
}

.mobile-menu div {
  width: 32px;
  height: 2px;
  background: #fff;
  margin: 8px;
}

/* --- Responsividade do menu --- */
@media (max-width: 999px) {
  .nav-list {
    position: absolute;
    top: 8vh;
    right: 0;
    width: 50vw;
    height: 92vh;
    background: #000000;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
    transform: translateX(100%);
    transition: transform 0.3s ease-in;
  }

  .nav-list li {
    margin-left: 0;
    opacity: 0;
  }

  .mobile-menu {
    display: block;
  }

  .nav-list.active {
    transform: translateX(0);
  }

  .nav-list.active li {
    opacity: 1;
    transition: opacity 0.3s ease-in;
  }

  #logo2 {
    height: 34px;
  }
}

/* ===== MAIN ===== */
main {
  min-height: 100vh;
  padding-bottom: 50px;
  color: white;
  margin-top: -2px; /* cola no header */
}

/* ===== SEÇÃO QUEM NÓS SOMOS ===== */
.texto {
  text-align: center;
  max-width: 800px;
  margin: 40px auto 60px;
  background: rgba(19, 18, 18, 0.856);
  padding: 30px 20px;
  border-radius: 12px;
  color: crimson;
}

.texto h1 {
  font-size: 32px;
  color: crimson;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.texto h3 {
  font-weight: 400;
  line-height: 1.6;
}

/* ===== SEÇÃO SHOWS ===== */
.shows {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 20px;
  color: white;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(3px);
  border-top: 2px solid crimson;
  border-bottom: 2px solid crimson;
}

.shows h2 {
  color: crimson;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 20px;
  font-size: 2rem;
}

.show-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
  max-width: 800px;
}

.show-item {
  background: rgba(0, 0, 0, 0.05);
  border-left: 4px solid crimson;
  padding: 20px;
  border-radius: 8px;
  transition: background 0.3s ease, transform 0.3s ease;
}

.show-item:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: scale(1.02);
}

.show-item h3 {
  margin-bottom: 8px;
  color: white;
  font-weight: bold;
}

.show-item p {
  color: #ccc;
  font-size: 0.95rem;
}

/* ===== SEÇÃO VÍDEOS ===== */
.videos {
  background: transparent;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 60px 20px;
  text-align: center;
}

.videos h2 {
  margin: 30px 0 15px;
  text-transform: uppercase;
  letter-spacing: 2px;
  background: rgba(0, 0, 0, 0.4);
  padding: 8px 16px;
  border-radius: 8px;
  color: crimson;
}

.video-group {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.video-group video {
  width: 45%;
  max-width: 600px;
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.6);
  background-color: rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
  .video-group video {
    width: 90%;
  }
}

/* ===== SEÇÃO INSPIRAÇÕES ===== */
.inspiracoes {
  background: rgba(0, 0, 0, 0.6);
  padding: 80px 40px;
  text-align: center;
  color: white;
  backdrop-filter: blur(3px);
}

.inspiracoes h2 {
  font-size: 2rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: crimson;
  margin-bottom: 50px;
}

/* Grade dos álbuns */
.album-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 30px;
  justify-items: center;
}

/* Cada álbum */
.album {
  position: relative;
  width: 180px;
  height: 180px;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.7);
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.4s ease;
}

.album:hover {
  transform: scale(1.08);
  box-shadow: 0 0 30px rgba(220, 20, 60, 0.6);
}

/* Capa */
.album img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.album:hover img {
  transform: scale(1.1);
}

/* Overlay */
.album-info {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  color: white;
  opacity: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.album:hover .album-info {
  opacity: 1;
}

/* Nome e artista */
.album-info h3 {
  color: crimson;
  font-size: 1rem;
  margin-bottom: 5px;
}

.album-info p {
  font-size: 0.9rem;
  color: #ddd;
}

/* Responsivo */
@media (max-width: 768px) {
  .inspiracoes {
    padding: 60px 20px;
  }
  .album {
    width: 150px;
    height: 150px;
  }
}

/* ===== FADE-IN ===== */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

.fade-in.show {
  opacity: 1;
  transform: translateY(0);
}

/* ===== FOOTER ===== */
footer {
  background-color: #000000;
  color: white;
  text-align: center;
  padding: 20px;
}

footer .social-buttons {
  margin-bottom: 15px;
}

button {
  background-color: crimson;
  border: none;
  border-radius: 8px;
  padding: 10px 20px;
  color: white;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
}

button:hover {
  background-color: #ff4d6d;
}


