body, html {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  background-color:black;
  overflow-x: hidden;
  }

.band-large{
  display: none;
  }

.logo{
  display: none;
}

.fixed-top{
    background-image: url(assets/tribalportada.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }
  
.navbar-toggler{
    border-color: transparent;
    background: transparent;
    border-radius: 5px;
  }
  
.navbar-toggler:hover {
    background-color: #0f9002;
  }

.navbar-toggler-icon::before {
    content: '\2630';
    font-size: 1.5rem;
    color: #fff;
  }

.nav-item a {
    text-decoration: none;
    color: white !important; /* Forzar color blanco */
    font-family: "Bebas Neue", sans-serif;
  }

.icons a {
    text-decoration: none;
    color: white;
  }

.carousel-inner .carousel-item{
    height: 100vh;
    object-fit: cover;
    position: relative;
  }

.carousel-inner .carousel-item img {
    height: 100%;
    object-fit: cover;
    filter: grayscale(0.05);
  }

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.502);
    z-index: 1;
    font-family: "SegundaFuente";
  }

.overlay h1{
    font-size: 3rem;
    color: #e3e3e3;
    text-align: center;
    font-family: "Bebas Neue", sans-serif;
    margin-bottom: 2rem;
  }
.overlay h2{
    text-align: center;
    color: #e3e3e3;
    font-family: "Bebas Neue", sans-serif;
  }
#new-section, #newvideo-section{
  padding-top: 0.3rem; /* Espaciado superior */
  min-height: 100vh; /* Ocupa al menos el 100% de la altura de la ventana */
  display: flex; /* Usamos flexbox para alinear elementos */
  align-items: center; /* Centra verticalmente */
  font-family: "Bebas Neue", sans-serif;
  background-image: url(assets/fondonew.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

#new-section h2, #newvideo-section h2, #music-section h2{
  font-size: 4rem;
  color:#e3e3e3;
}

#new-section p, #newvideo-section p, #music-section p{
  font-size: 1.5rem;
  color:#e3e3e3;
}

#new-section , #music-section{     
  padding: 4rem 0 2rem 0;
}

#music-section {
  padding-top: 4rem;
  background-image: url(assets/fondonew.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.fade-element {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.8s ease;
  will-change: opacity, transform;
}

.fade-element.show {
  opacity: 1;
  transform: translateY(0);
}

.album {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  margin-bottom: 20px;
}

.album img {
  width: 100%;
  transition: transform 0.3s ease;
}

/* Estilos del nombre del álbum */
.album-name {
  bottom: 0;
  left: 0;
  width: 100%;
  color: #e3e3e3;
  text-align: center;
  padding: 10px;
  font-size: 16px;
  font-family: "Bebas Neue", sans-serif;
}

/* Efecto al pasar el cursor */
.album:hover img {
  transform: scale(1.1);
}

#video-section {
  display: flex;
  flex-direction: column; /* Cambia la dirección a columna para que el contenido se apile verticalmente */
  justify-content: center;
  align-items: center;
  min-height: 700px;
  padding-top: 4rem;
  padding-bottom: 2rem;
  font-family: "Bebas Neue", sans-serif;
  background-image: url(assets/tribalvivo.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #e3e3e3;
  background-color: rgba(17, 94, 15, 0.668); /* Cambia el color y la opacidad a tu gusto */
  background-blend-mode: multiply;
  position: relative; /* Para posicionar el enlace de forma absoluta dentro de la sección */
}

#video-section h2{
  margin-bottom: 50px;
  font-size: 3rem;
}

#contacto {
  padding: 5rem 0;
  font-family: "Bebas Neue", sans-serif;
  background-image: url(assets/fondonew.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #e3e3e3;
}

/* Botones */
.cta-button {
    display: inline-block;
    background-color: #0f9002;
    color: white;
    padding: 0.3rem 1rem;
    font-weight: 500;
    transition: all 0.3s;
}

.cta-button:hover {
    background-color: rgba(17, 94, 15, 0.668);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.view-more-link {
  position: absolute;
  bottom: 0.5rem;
  right: 0.5rem;
  color: #e3e3e3;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.5rem;
  transition: transform 0.3s ease;
}

.view-more-link:hover {
  transform: scale(1.1);
  color: #0f9002;
}


.img-cover {
  width: 100%;              
  height: 200px;            
  object-fit: cover;         
}

.social-icons i{
  transition: transform 0.3s ease;
}

.social-icons i:hover{
  transform: scale(1.5);
  color: #0f9002;
}

.footer {
  background-image: url(assets/tribalportada.jpg);
  color: #fff; /* Texto blanco */
  padding: 20px;
  text-align: center;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.copyright {
  flex: 1;
  text-align: left;
  font-size: 14px;
  margin-right: 2px;
}

.footer-content .icons {
  display: flex;
  gap: 15px; /* Espacio entre íconos */
  margin-left: 1.5rem;
}

/*styles bio*/

/* Estilo para la sección con imagen de fondo */
.background-section{
  height: 100vh; /* Altura completa de la ventana */
  display: flex;
  background: url('assets/fondonew.jpg') no-repeat center center;
  background-size:cover; /* Ajusta según lo necesites */
  color: white;
  font-family: "Bebas Neue", sans-serif;
}

.container-text {
  position: static;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 20px;
}

.container-text p{
  width: 80%;
  max-width: 800px;
  padding: 20px;
  font-size: 1.2rem;
  line-height: 1.6;
}

/* Estilo general para la sección bio */
.background-section {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: url('assets/fondonew.jpg') no-repeat center center;
  background-size: cover;
  color: white;
  font-family: "Bebas Neue", sans-serif;
  padding: 3rem 0;
  position: relative;
}

/* Contenedor de texto centrado */
.container-text {
  width: 100%;
  max-width: 900px;
  margin: 30px auto;
  padding: 30px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.container-text p {
  width: 100%;
  max-width: 800px;
  padding: 10px 0;
  font-size: 1.2rem;
  line-height: 1.6;
  margin: 0 auto;
}

/* Responsivo para móviles */
@media (max-width: 770px) {
  .background-section {
    min-height: unset;
    padding-top: 1.5rem !important;
    padding-bottom: 1rem !important;
    display: block;
    background-position: center;
  }
  .container-text {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
    margin-top: 0 !important;
    border-radius: 10px;
    font-size: 1rem;
  }
  .container-text p {
    font-size: 1rem;
    padding: 5px 0;
    max-width: 100%;
  }
}

/* Styles para dispositivos mallor a 770px */

@media (min-width: 770px) {

  .fixed-top{
    background-image: url(assets/tribalportada-mobil.jpg);
    background-size: cover;
    background-position:top;
    background-repeat: no-repeat;
  }

  .logo{
    display: inline-block;
  }

  .nav-item a {
    text-decoration: none;
    color: white;
    font-family: "Bebas Neue", sans-serif;
    transition: transform 0.3s ease;
  }

.nav-item a:hover{
    transform: scale(1.2);
    color: #0f9002;
  }

.icons a {
    text-decoration: none;
    color: white;
    transition: transform 0.3s ease;
  }

.icons a:hover{
    transform: scale(1.2);
    color: #0f9002;
  }
  
  .band-small{
      display: none;
    }

  .band-large {
      display: flex;
      flex-wrap: wrap;
      height: 100vh; /* Contenedor de altura completa */
      filter: grayscale(0.5);
    }
    
  .band-member {
      position: relative;
      height: 100vh; /* Hace que cada imagen ocupe el 100% del alto del viewport */
      transition: transform 0.3s ease;
      cursor: pointer;
      overflow: hidden; /* Asegura que la imagen no se desborde */
    }
    
  .band-member img {
      width: 100%;
      height: 100%;
      object-fit: cover; /* Asegura que la imagen cubra el contenedor sin deformarse */
    }
    
  .band-member:hover {
      transform: none; /* Ajusta el tamaño según prefieras */
    }
    
  .member-info {
      position: absolute;
      bottom: 160px;
      left: 0;
      right: 0;
      background-color: rgba(0, 0, 0, 0.7);
      color: white;
      text-align: center;
      visibility: hidden;
      opacity: 0;
      transition: visibility 0s, opacity 0.3s ease;
      font-family: "Bebas Neue", sans-serif;
      font-size: 1.2rem;
      background-color: rgba(17, 94, 15, 0.668); /* Cambia el color y la opacidad a tu gusto */
    }
    
  .band-member:hover .member-info {
      visibility: visible;
      opacity: 1;
    }
    
  .large-screen {
      flex: 1 1 25%; /* Ajusta el valor según el número de imágenes */
      max-width: 25%; /* Ajusta el valor según el número de imágenes */
    }

    .album-name {
      position: absolute;
      bottom: 0;
      left: 0;
      width: 100%;
      background-color: rgba(17, 94, 15, 0.668);
      color: #e3e3e3;
      text-align: center;
      padding: 10px;
      opacity: 0;
      transition: opacity 0.3s ease;
      font-size: 16px;
      font-family: "Bebas Neue", sans-serif;
    }
    
    /* Efecto al pasar el cursor */
    .album:hover img {
      transform: scale(1.1);
    }
    
    .album:hover .album-name {
      opacity: 1;
    }

    #music-section{     
      padding: 4rem
    }

    .view-more-link{
      bottom: 3rem;
      right: 3rem;
    }

    /* Estilo para la sección con imagen de fondo */
   .background-section {
      background-position: 100% 35%;
    }
  
}



