:root {
  --azul: #11182F;
  --rojo1: #860F2B;
  --rojo2: #DE1130;
  --gris: #C5C8DC;
  --dorado: #DEAF5D;
}

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

.fondo {
  width: 100%;
  min-height: 100vh;
  background-image: url("../imgs/fondos/fondo4v2.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  margin-top: 0;
  padding-bottom: 50px;
}

/* CSS de la pagina listarPelicualas.php, hace que aparezca el link con el hoover sobre la foto*/
.img-container {
  position: relative;
}

.img-container .overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
  border-radius: 8px;
}

.img-container:hover .overlay {
  opacity: 1;
}

.img-container img {
  border-radius: 8px;
}

/* Final del css de listarPeliculas */

.descuento {
  margin: 0;
  text-align: center;
  font-family: Vegur, 'PT Sans', Verdana, sans-serif;
  background-color: var(--azul);
  color: white;
}

/* Estilos para la pagina de contacto. */

.titulo {
  color: #0B3B67;
}

.desc {
  color: black;
}

.contact {
  color: #518EAE;
}

.ubi {
  color: #896666;
}
/* Estilo pagina sobreNosostros */
.m-30{
  margin-top: 10%;
  margin-bottom: 8%;
}

@media (max-width: 768px) {
  .m-30{
    margin-top: 8%;
    margin-bottom: 6%;
  }
}

@media (min-width: 1024px) {
  .m-30{
    margin-top: 4%;
    margin-bottom: 2%;
  }
}

/* Header */
.fondoHeader{
  content: url("../imgs/logo/logo_2.png");
  width: 100px; 
  height: 50px;
 }
 
 header nav a {
   font-family: 'Arial', serif;
   font-size: 12px;
   color: #8c8c8e;
   text-transform: uppercase;
   letter-spacing: 2px;
   text-decoration: none;
   margin: 0 18px;
 }
 
 .nav-item.active a {
  border-bottom: 2px solid white;
}

 .cerrarSesion {
   background-color: #860F2B; 
   padding: 8px 12px; 
   margin-left: 0px; 
   border-radius: 2px;
 }

 /* Estilos para el listado del index */

 .pelicula {
  position: relative; /* Asegura que la capa overlay se posicione correctamente */
  border: 1px solid #ccc;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
  background-color: white;
  text-align: center;
  transition: transform 0.3s ease-in-out;
}

.pelicula:hover {
  transform: scale(1.05);
}

/* Overlay para TODAS las películas */
.pelicula .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
  border-radius: 10px;
}

.pelicula:hover .overlay {
  opacity: 1;
}

/* Estilos del enlace dentro del hover */
.pelicula .overlay a {
  color: white;
  font-size: 18px;
  font-weight: bold;
  text-decoration: none;
  background-color: var(--rojo1);
  padding: 8px 12px;
  border-radius: 5px;
  transition: background-color 0.3s ease-in-out;
}

.pelicula .overlay a:hover {
  background-color: var(--rojo2);
}

.taquillera, .estreno {
  width: 200px;
}

.pelicula img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 30px;
}

.badge-estreno {
  position: absolute;
  top: 5px;
  left: 5px;
  background-color: red;
  color: white;
  padding: 3px 8px;
  font-size: 12px;
  font-weight: bold;
  border-radius: 5px;
}

h5 {
  font-size: 16px;
}

.titulo-seccion {
  font-size: 22px;
  font-weight: bold;
  color: white;
  text-align: center;
  position: absolute;
  top: -40px;
  left: 22%;
  transform: translateX(-50%);
}

.mb-5 {
  margin-bottom: 70px !important;
}

.mt-5 {
  margin-top: 70px !important;
}

.margen-carrusel {
  margin-top: 65px;
}

.hola {
max-height: 100%;
}

@media (max-width: 768px) {
  .titulo-seccion {
      font-size: 18px;
      top: -30px;
      left: 50%;
  }

  .taquillera, .estreno {
      width: 150px;
  }

  .pelicula img {
      height: 200px;
  }

  .descuento {
      font-size: 14px;
      text-align: center;
  }
}

@media (max-width: 500px) {
  .titulo-seccion {
      font-size: 18px;
      top: -50px;
      left: 45%;
  }

  .taquillera, .estreno {
      width: 150px;
      margin-bottom: 20px;
  } 
}
