/* Propriedades globais */
body {
  background-color: #000000;
  background-image: url("./assets/underground_background.jpg");
  background-size: cover;
  font-family: 'VT323', monospace;
  color: #ffffff;
}

/* Componente Album Info */
.album-info {
  display: flex;
  flex-direction: row;
  align-items: center;
}

.album-info img {
  width: 40%;
  margin-right: 20px;
}

.album-info p {
  width: 60%;
  font-size: 1.5rem;
}

/* Animação Fade In */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease-out;
  will-change: opacity, transform;
}

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

/* Componente Navigation */
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
  background-color: #000000;
  font-family: 'Roboto Condensed', sans-serif;
}

nav h1 {
  font-size: 1.5rem;
  font-weight: bold;
  color: #ffffff;
  letter-spacing: 0.1rem;
  font-family: 'Monoton', cursive;
  text-transform: uppercase;
}

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

nav a {
  color: #ffffff;
  text-decoration: none;
  margin-left: 1.5rem;
  font-size: 1.2rem;
  letter-spacing: 0.1rem;
  transition: all 0.3s ease;
  font-family: 'Inconsolata', monospace;
}

nav a:hover {
  color: #b30000;
  border-bottom: 2px solid #b30000;
}

/* Elemento Main */
main {
  padding: 40px 20px;
  margin-top: -40px;
}

h2 {
  font-size: 24px;
  margin-top: 60px;
  border-bottom: 2px solid #b30000;
  font-family: 'Monoton', cursive;
  text-transform: uppercase;
}

img {
  width: 100%;
  max-width: 400px;
  margin-top: 20px;
  margin-bottom: 40px;
  border: 2px solid #ffffff;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

li {
  margin: 15px 0;
  display: flex;
  align-items: center;
  font-size: 1.5rem;
  font-family: 'VT323', monospace;
}

li span {
  font-weight: bold;
  margin-right: 10px;
  color: #b30000;
}

li:hover {
  color: #FF5A5F;
}

li:hover span {
  color: white;
}

/* Estilo para o footer */
footer {
  background-color: #000000;
  text-align: center;
  padding: 20px 0;
  font-family: 'Roboto Condensed', sans-serif;
}

.footer-content ul {
  list-style: none;
  padding: 0;
}

.footer-content li {
  display: inline;
  margin: 0 10px;
}

.footer-content a {
  text-decoration: none;
  color: #ffffff;
  font-size: 1.2rem;
  transition: color 0.3s ease; 
}

.footer-content a:hover {
  color: #b30000; 
}


/* Responsividade */
@media (max-width: 768px) {
  nav {
    flex-direction: column;
    align-items: flex-start;
  }

  nav ul {
    margin-top: 20px;
  }

  nav a {
    margin-left: 0;
    margin-right: 1.5rem;
  }

  main {
    padding: 20px;
  }

  h2 {
    margintop: 40px;
    font-size: 22px;
    border-bottom: 2px solid #ff4d4d;
    }
    
    img {
    width: 100%;
    margin-top: 10px;
    margin-bottom: 30px;
    border: 2px solid #ff4d4d;
    }
    
    li span {
    font-size: 16px;
    }
    
    li {
    margin: 10px 0;
    font-size: 16px;
    }

@media (max-width: 768px) {

 
  nav {
      flex-direction: column;
  }
  
  nav h1 {
      margin-bottom: 10px;
  }

  nav ul {
      display: flex;
      flex-direction: column;
      gap: 10px; 
  }

  
  .album-info {
      flex-direction: column;
      text-align: center;
  }

  .album-info img {
      width: 80%;
      margin-bottom: 20px;
      margin-right: 0; 
  }

  .album-info p {
      width: 100%; 
  }
}


@media (max-width: 480px) {
  body {
      font-size: 14px;
  }

  
  nav h1 {
      font-size: 1.2rem;
  }

  h2 {
      font-size: 1.4rem;
  }

  
  .album-info img {
      width: 100%
  }
}