/* General */
body {
  font-family: 'Montserrat', sans-serif;
  margin: 0;
  padding: 0;
  background-color: #000000;
  color: #FFFFFF;
  user-select: none;
}
a {
  text-decoration: none;
  color: #FFFFFF;
}

/* Asegurar que cada sección ocupe toda la pantalla */
section {
  min-height: 100vh; /* Altura mínima igual al viewport */
  /*display: flex;*/
  align-items: center; /* Centrar verticalmente */
  justify-content: center; /* Centrar horizontalmente */
  text-align: center;
}
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
/* Menú de navegación */
nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
}

nav ul li a {
  font-size: 16px;
  color: #FFFFFF;
}
.hero, .about-section, .bookings {
  width: 100%;
}
.beatport-icon {
  width: 1.3em;
  height: 1.5em;
}
/* Texto blanco para los enlaces */
.navbar .nav-link, .navbar .navbar-brand {
  color: #fff !important;
}

/* Estilo responsivo para el logo */
.navbar-brand img {
  height: auto; /* Mantiene la proporción del logo */
  max-height: 45px; /* Tamaño máximo en pantallas grandes */
  max-width: 100%; /* Escala correctamente en pantallas pequeñas */
  width:220px
}

.nav-item a {
  text-decoration: none;
  color: #fff;
  font-size: 16px;
  position: relative;
  transition: color 0.3s ease; /* Transición para el color */
}

/* Animación de hover */
.nav-item a:hover {
  color: #021f59; /* Cambiar el color del texto */
}
/* Efecto de línea inferior al hacer hover */
.nav-item a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -2px; /* Posiciona la línea debajo del texto */
  width: 0;
  height: 1px;
  background-color: #FFF; /* Color de la línea */
  transition: width 0.3s ease; /* Transición para el ancho */
}

.nav-item a:hover::after {
  width: 100%; /* Línea se expande al 100% del ancho del texto */
}

.hero h1 {
  font-size: 60px;
}
.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='white' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-size: contain;
  width: 1.5em;
  height: 1.5em;
}
@media screen and (max-width: 768px) {
  .navbar-brand img {
    max-height: 40px; /* Tamaño más pequeño en dispositivos móviles */
    max-width: 9em;
  }
}

/* Header inicial */
 header {
   position: fixed;
   width: 100%;
   top: 0;
   left: 0;
   z-index: 999;
   background-color: transparent;
   transition: background-color 0.3s ease, box-shadow 0.3s ease;
   padding: 10px 0;
 }

 /* Header con fondo negro */
 header.scrolled {
   background-color: #000;
   box-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
 }

 /* Enlaces del menú */
 .navbar-nav .nav-link {
   color: #fff;
   transition: color 0.3s ease;
 }

 .navbar-nav .nav-link:hover {
   color: #021f59;
 }

 /* Contenido con desvanecimiento */
 .fade-content {
   /*opacity: 1; /* Opacidad inicial */
   transform: translateY(0); /* Posición inicial */
   transition: opacity 0.5s ease, transform 0.5s ease; /* Transición suave */
 }

 .fade-content.scrolled {
   /*opacity: 0.7; /* Reduce opacidad */
   transform: translateY(10px); /* Desplaza ligeramente hacia abajo */
 }

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

nav ul li a {
  font-size: 16px;
  color: #FFFFFF;
}

nav ul li a:hover {
  color: #fff; /* Azul en hover */
}

/* Hero Section */
.hero {
  background-image: url('../img/DSC01390-hero.png'); /* Imagen de fondo */
  background-size: cover;
  background-position: center;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #FFF;
}

.hero h1 {
  font-size: 60px;
  margin-bottom: 20px;
}

.hero p {
  font-size: 20px;
  margin-bottom: 30px;
}


.btn {
	line-height: 50px;
	height: 50px;
	text-align: center;
	width: 250px;
	cursor: pointer;
}
/*
========================
      BUTTON TWO
========================
*/
.btn-two {
	color: #FFF;
	transition: all 0.5s;
	position: relative;
}
.btn-two span {
	z-index: 2;
	display: block;
	position: absolute;
	width: 100%;
	height: 100%;
  right:0;
  top:0;
}
.btn-two::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
	transition: all 0.5s;
	border: 1px solid rgba(255,255,255,0.2);
	background-color: rgba(255,255,255,0);
}
.btn-two::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
	transition: all 0.5s;
	border: 1px solid rgba(255,255,255,0.2);
	background-color: rgba(255,255,255,0.1);
}
.btn-two:hover::before {
  transform: rotate(-45deg);
  background-color: rgba(255,255,255,0);
}
.btn-two:hover::after {
  transform: rotate(45deg);
  background-color: rgba(255,255,255,0);
}


.section {
  padding: 40px 00px;
  text-align: center;
}

/* Sección About */
.about-section {
  position: relative;
  display: flex;
  align-items: center;
  height: 100vh; /* Ocupa toda la pantalla */
  background: url('../img/about-full.png') no-repeat center center/cover;
  color: #fff;
}

/* Contenedor del contenido */
.about-content {
  background: rgba(0, 0, 0, 0.7); /* Fondo semitransparente */
  height: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: left; /* Alinear texto a la izquierda */
  border-radius: 8px;
}

.about-content, .row-pg {
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.about-content:hover {
  transform: scale(1.02);
  opacity: 0.95;
}
.music, .gallery, .events, .merch, .contact {
  background-color: #000000;
}

/* Footer */
.bookings, .events-section{
    position: relative;
    display: flex;
    align-items: center;
    height: 100vh; /* Ocupa toda la pantalla */
    color: #fff;
}

.music-container iframe {
  margin-bottom: 20px;
  border-radius: 10px;
}

/**** MEDIA QUERIES ******/

.img-footer{
  margin: 0 auto;
  width: 200px;
  padding: 20px;
}
.bookings {
  background-image: url('../img/footer.png'); /* Imagen de fondo */
  background-size: cover;
  background-position: 0;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

/* Iconos sociales */
   .social-links a {
     color: #fff;
     margin: 0 10px;
     font-size: 1.5rem;
     transition: transform 0.3s ease, color 0.3s ease;
     display: inline-block; /* Asegura que los iconos sean elementos bloque */
   }

   .social-links a:hover {
     transform: scale(1.2); /* Crecimiento en hover */
   }

/* Para dispositivos móviles (pantallas menores a 768px) */
@media screen and (max-width: 768px) {
  nav ul {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  nav ul li a {
    font-size: 14px;
  }

  .hero h1 {
    font-size: 40px;
  }

  .hero p {
    font-size: 16px;
  }

  .btn, .btn-outline {
    padding: 12px 25px;
  }

  /* Sección de música */
  .music-container iframe {
    width: 100%;
  }

}

/* Para tabletas (pantallas menores a 1024px) */
@media (max-width: 1024px) {
  .hero h1 {
    font-size: 50px;
  }

  .hero p {
    font-size: 18px;
  }

  .btn, .btn-outline {
    padding: 14px 30px;
  }
}
/**********************/


@media screen and (max-width: 768px) {
  .about-content {
    width: 100%; /* Ocupa todo el ancho en pantallas pequeñas */
    text-align: center; /* Texto centrado */
  }
  .about-section{
    background: url(../img/about-full.png) no-repeat -60px center / cover;
  }
}

.myImages {
  border-radius: 0px;
  cursor: pointer;
  transition: 0.3s;
  padding-bottom:10px
}

.myImages:hover {
  opacity: 0.7;
}

.modal {
  display: none; /* Ocultar por defecto */
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%; /* Ancho completo */
  height: 100%; /* Alto completo */
  overflow: auto; /* Scroll si el contenido es grande */
  background-color: rgba(0, 0, 0, 0.9); /* Fondo oscuro */
}

/* Imagen dentro del modal */
.modal-content {
  margin: auto;
  display: block;
  background-color:#000;
  max-width: 55%; /* La imagen ocupa máximo 80% del ancho */
  max-height: 55%; /* La imagen ocupa máximo 80% del alto */
  object-fit: contain; /* Mantener proporción */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5); /* Sombra opcional */
}
/* Texto del caption */
 #caption {
   color: #ccc;
   text-align: center;
   margin-top: 10px;
   font-size: 18px;
 }

 /* Botón de cierre */
 .close {
   position: absolute;
   top: 0px;
   right: 230px;
   color: white;
   font-size: 58px;
   font-weight: bold;
   cursor: pointer;
   transition: color 0.3s ease;
 }

 .close:hover,
 .close:focus {
   color: #999;
 }

.modal-content,
#caption {
  animation-name: zoom;
  animation-duration: 0.6s;
}

@keyframes zoom {
  from {
    transform: scale(0)
  }
  to {
    transform: scale(1)
  }
}


@media only screen and (max-width: 700px) {
  .modal-content {
    width: 100%;
  }
}

/* CUSTOM1 */
* {
  box-sizing: border-box;
}

.row-pg {
  display: -ms-flexbox; /* IE10 */
  display: flex;
  -ms-flex-wrap: wrap; /* IE10 */
  flex-wrap: wrap;
  padding: 0 4px;
  margin-left: auto;
  padding-left: 32px;
  padding-right: 32px;
}

/* Create four equal columns that sits next to each other */
.column-pg {
  -ms-flex: 25%; /* IE10 */
  flex: 25%;
  max-width: 25%;
  padding: 0 4px;
  flex-direction: column;
  column-gap: 25px;
}

.column img {
  margin-top: 8px;
  vertical-align: middle;
  width: 100%;
}
img.lazyloaded {
  opacity: 1;
}
/* Custom */
@media screen and (max-width: 600px) {
  .enap-gallery-img {
    padding-left: 5px;
    padding:right: 5px;
    padding-top: 5px;
    padding-bottom: 5px;
    }
}
/* Responsive layout - makes a two column-layout instead of four columns */
@media screen and (max-width: 800px) {
  .column-pg {
    -ms-flex: 50%;
    flex: 50%;
    max-width: 50%;
    column-gap: 5px;
    flex-direction: column;
  }
  .row-pg {
    padding-left: 0px;
    padding-right: 0px;
  }
}

/* Responsive layout - makes the two columns stack on top of each other instead of next to each other */
@media screen and (max-width: 600px) {
  .column-pg {
    -ms-flex: 100%;
    flex: 100%;
    max-width: 100%;
    column-gap: 10px;
    flex-direction: column;
  }
  .row-pg {
    padding-left: 15px;
    padding-right: 15px;
  }
}
