/* style.css (General Styles) */

/* Variables CSS para colores - CENTRALIZADAS */
:root {
  --primary-color: #E94B3C; /* Rojo Fuerte / Principal */
  --secondary-color: #002D62; /* Azul Marino / Videos */
  --accent-color: #CE1126; /* Rojo oscuro / Contacto */
  --text-dark: #2c2c2c; /* Texto oscuro */
  --text-light: #fdf4fa; /* Texto claro */
  --background-light: #fdf4fa; /* Fondo claro */
  --background-dark: #121212; /* Fondo modo oscuro */
  --header-footer-dark: #1f1f1f; /* Fondo encabezado/pie modo oscuro */
  --highlight-color: #1eee17; /* Verde resaltado */
  --button-primary: #ff007b; /* Botón magenta */
  --button-hover: #b80055; /* Botón magenta hover */
  --whatsapp-green: #25d366; /* Verde WhatsApp */
  --cine-background: #fff6f8; /* Fondo específico para la sección de cine */
  --shadow-light: 0 4px 12px rgba(0,0,0,0.08); /* Sombra suave para elementos */
  --shadow-hover: 0 8px 18px rgba(0,0,0,0.15); /* Sombra más pronunciada al pasar el ratón */
}

/* Reset básico */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Roboto', sans-serif;
  line-height: 1.6;
  background-color: var(--background-light);
  color: var(--text-dark);
  transition: background-color 0.3s ease, color 0.3s ease;
}

/* Modo oscuro */
body.dark-mode {
  background-color: var(--background-dark);
  color: var(--text-light);
}

body.dark-mode header,
body.dark-mode footer {
  background-color: var(--header-footer-dark);
}

/* --- Encabezado --- */
header {
  background: var(--primary-color);
  color: #fff;
  padding: 15px 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 100;
}

.logo img.logo-img {
  height: 100px;
  width: auto;
  display: block;
}

/* Botón de menú hamburguesa (oculto por defecto en escritorio) */
.menu-toggle {
  display: none; /* Oculto en vista de escritorio */
  font-size: 30px;
  cursor: pointer;
  z-index: 101; /* Asegura que esté por encima del nav cuando se muestre */
}

nav {
  display: flex; /* Por defecto para escritorio */
  width: auto;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
}

nav a {
  text-decoration: none;
  color: #fff;
  font-weight: bold;
  transition: color 0.3s;
  padding: 5px 0;
}

nav a:hover {
  color: var(--highlight-color);
}

/* --- Sección Hero --- */
.hero {
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;
  background: linear-gradient(rgba(56, 0, 29, 0.5), rgba(56, 0, 29, 0.5)), url('images/banner.jpg') no-repeat center center/cover;
}

.bg-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
  opacity: 0.5;
}

.hero-content {
  padding: 20px;
}

.hero-content h1 {
  font-size: 60px;
  font-family: 'Playfair Display', serif;
  color: var(--text-light);
  margin-top: 0;
  padding-top: 0;
}

.hero-content p {
  margin-top: 10px;
  font-size: 18px;
}

.btn {
  margin-top: 20px;
  padding: 12px 25px;
  background-color: var(--button-primary);
  color: white;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  transition: background 0.3s;
}

.btn:hover {
  background-color: var(--button-hover);
}

/* --- Contenedor Global de Secciones --- */
.container {
  max-width: 1100px;
  margin: auto;
  padding: 40px 20px;
}

section h2, .videos h4 {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  margin-bottom: 20px;
  color: var(--text-dark);
  text-align: center;
}

/* --- Secciones y sus Fondos --- */
.biografia {
  background-color: var(--primary-color);
  padding-top: 60px;
  padding-bottom: 60px;
}

.biografia h2 {
  color: var(--text-light);
}

.biografia p {
  text-align: justify;
  font-size: 17px;
  margin-top: 10px;
  line-height: 1.7;
  color: #f0f0f0;
}

.biografia img {
  max-width: 100%;
  border-radius: 10px;
  margin-top: 20px;
  height: auto;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.videos {
  background-color: var(--secondary-color);
  padding-top: 60px;
  padding-bottom: 60px;
}

.videos h4 {
  color: var(--text-light);
  font-size: 40px;
  margin-bottom: 40px;
}

.galeria {
  background-color: var(--background-light);
  padding-top: 60px;
  padding-bottom: 60px;
}

.galeria h2 {
    color: var(--text-dark);
}

.contacto {
  background-color: var(--accent-color);
  padding-top: 60px;
  padding-bottom: 60px;
}

.contacto h2 {
  color: var(--text-light);
}

/* --- Swiper Carrusel --- */
.swiper-container {
  width: 100%;
  padding: 20px 0;
  overflow: hidden;
}

.swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 10px;
  overflow: hidden;
  max-width: 280px;
}

.swiper-slide a {
    display: block;
}

.swiper-slide img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  transition: transform 0.3s ease;
  border-radius: 10px;
}

/* Ajustes específicos para slides de imágenes (Galería) */
.galeria .swiper-slide {
  background: #fff;
  flex-direction: column;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  padding-bottom: 10px;
}

.galeria .swiper-slide img {
  height: 200px;
  border-radius: 10px 10px 0 0;
}

.swiper-slide img:hover {
  transform: scale(1.05);
}

.swiper-pagination {
    margin-top: 20px;
    position: relative !important;
    bottom: auto !important;
}

/* --- Formulario de Contacto --- */
form {
  display: flex;
  flex-direction: column;
  gap: 15px;
  max-width: 500px;
  margin: auto;
  padding: 0 15px;
}

form input,
form textarea {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 16px;
  width: 100%;
}

form button {
  padding: 12px;
  background-color: var(--primary-color);
  border: none;
  color: #fff;
  font-weight: bold;
  cursor: pointer;
  border-radius: 5px;
  transition: background 0.3s;
  width: 100%;
}

form button:hover {
  background-color: var(--highlight-color);
}

/* --- Redes Sociales --- */
.social {
  display: flex;
  justify-content: center;
  margin-top: 20px;
  gap: 15px;
}

.social img {
  width: 32px;
  height: 32px;
  filter: grayscale(100%);
  transition: filter 0.3s;
}

.social img:hover {
  filter: none;
}

/* --- Pie de Página --- */
footer {
  background-color: var(--header-footer-dark);
  color: #f8f8f8;
  text-align: center;
  padding: 20px;
  font-size: 14px;
  margin-top: 40px;
}

/* --- Efectos y Botones Flotantes --- */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.dark-toggle {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: var(--button-primary);
  color: white;
  border: none;
  border-radius: 30px;
  padding: 10px 15px;
  cursor: pointer;
  z-index: 999;
  font-size: 16px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.2);
  transition: background 0.3s ease;
}

.dark-toggle:hover {
    background: var(--button-hover);
}

#scrollTopBtn {
  position: fixed;
  bottom: 70px;
  right: 20px;
  display: none; /* Controlado por JS */
  background: var(--button-primary);
  color: white;
  border: none;
  border-radius: 50%;
  padding: 10px 15px;
  font-size: 20px;
  cursor: pointer;
  z-index: 999;
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 2px 5px rgba(0,0,0,0.2);
  transition: background 0.3s ease;
}

#scrollTopBtn:hover {
    background: var(--button-hover);
}

/* whatsapp.css */
/* Botón de WhatsApp */
.boton-whatsapp {
  position: fixed;
  bottom: 20px;
  left: 20px;
  background-color: var(--whatsapp-green);
  color: white;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  z-index: 1000;
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.boton-whatsapp:hover {
  transform: scale(1.1);
  background-color: #1DA851;
}

.boton-whatsapp img {
  width: 30px;
  height: 30px;
  filter: none;
}

/* cine.css (Specific Cine Section Styles) */

/* Modo oscuro para la sección de cine */
body.dark-mode .cine-fefita {
    background-color: var(--header-footer-dark);
    color: var(--text-light);
}

body.dark-mode .cine-fefita h2,
body.dark-mode .cine-fefita .intro,
body.dark-mode .pelicula .contenido p {
    color: var(--text-light);
}

body.dark-mode .pelicula {
    background-color: var(--background-dark);
    box-shadow: var(--shadow-light); /* Ajusta si tienes una variable para sombras oscuras */
}

body.dark-mode .pelicula h3 {
    color: var(--highlight-color);
}

/* --- Sección Fefita en el Cine --- */
.cine-fefita {
  background-color: var(--cine-background);
  padding: 80px 20px;
  color: var(--text-dark);
  transition: background-color 0.3s ease, color 0.3s ease;
}

.cine-fefita h2 {
  font-size: 44px;
  text-align: center;
  color: var(--primary-color);
  margin-bottom: 50px;
  font-family: 'Playfair Display', serif;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.05);
}

.cine-fefita .intro {
  max-width: 900px;
  margin: 0 auto 50px;
  text-align: center;
  font-size: 19px;
  line-height: 1.8;
}

.pelicula {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-bottom: 40px;
  align-items: center;
  background: #fff;
  border-radius: 12px;
  box-shadow: var(--shadow-light);
  padding: 25px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pelicula:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.pelicula img.poster {
  width: 200px;
  height: auto;
  min-width: 150px;
  border-radius: 10px;
  object-fit: cover;
  flex-shrink: 0;
}

.pelicula .contenido {
  flex: 1;
}

.pelicula h3 {
  font-size: 28px;
  color: var(--button-primary);
  margin-bottom: 12px;
  font-family: 'Playfair Display', serif;
}

.pelicula p {
  font-size: 17px;
  line-height: 1.7;
}

.cine-fefita .curioso {
  background: var(--cine-background);
  border: 1px dashed var(--primary-color);
  padding: 30px;
  margin-top: 60px;
  border-radius: 12px;
  text-align: center;
  font-size: 18px;
  line-height: 1.8;
  color: var(--text-dark);
}

body.dark-mode .cine-fefita .curioso {
    background-color: var(--background-dark);
    border-color: var(--highlight-color);
    color: var(--text-light);
}

.cine-fefita .curioso strong {
    color: var(--primary-color);
}

body.dark-mode .cine-fefita .curioso strong {
    color: var(--highlight-color);
}

/* Contenedor para el botón CTA */
.cta-wrapper {
    text-align: center;
    margin-top: 60px;
}

.cine-fefita .btn {
  background-color: var(--button-primary);
  color: var(--text-light);
  padding: 15px 35px;
  font-weight: bold;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.3s ease, transform 0.2s ease;
  display: inline-block;
  font-size: 18px;
}

.cine-fefita .btn:hover {
  background-color: var(--button-hover);
  transform: scale(1.03);
}

/* --- Media Queries para Responsividad --- */
@media (max-width: 768px) {
  /* Header adjustments */
  header {
      flex-wrap: nowrap; /* No envuelve el logo y el toggle */
      justify-content: space-between; /* Espacio entre logo y toggle */
      padding: 10px 20px;
  }

  .logo img.logo-img {
      height: 80px;
  }

  /* Mostrar el botón de menú hamburguesa */
  .menu-toggle {
      display: block;
      color: #fff;
  }

  /* Ocultar la navegación por defecto en móviles */
  nav {
      position: absolute;
      top: 100%; /* Debajo del header */
      left: 0;
      background-color: rgba(0, 0, 0, 0.9); /* Fondo oscuro semitransparente */
      width: 100%;
      max-height: 0; /* Oculto por defecto */
      overflow: hidden; /* Oculta el contenido desbordado */
      transition: max-height 0.4s ease-out, background-color 0.3s ease; /* Transición suave */
      flex-direction: column; /* Apila los ítems del menú */
      align-items: center; /* Centra los ítems */
  }

  /* Cuando el menú está activo (abierto) */
  nav.active {
      max-height: 500px; /* Un valor lo suficientemente grande para mostrar todo el menú */
      /* Añade backdrop-filter si quieres el efecto de desenfoque detrás del menú abierto */
      backdrop-filter: blur(5px);
      -webkit-backdrop-filter: blur(5px);
  }

  nav ul {
      flex-direction: column; /* Apila los ítems verticalmente */
      width: 100%;
      padding: 20px 0;
      gap: 0; /* Elimina el gap horizontal */
  }

  nav li {
      width: 100%; /* Cada ítem ocupa todo el ancho */
      text-align: center;
      border-bottom: 1px solid rgba(255, 255, 255, 0.1); /* Separador entre ítems */
  }

  nav li:last-child {
      border-bottom: none;
  }

  nav a {
      display: block; /* Hace que todo el enlace sea clicable */
      padding: 15px 0; /* Más padding vertical para facilitar el toque */
      font-size: 18px; /* Texto más grande */
  }

  nav a:hover {
      background-color: rgba(255, 255, 255, 0.1); /* Fondo al pasar el ratón */
  }

  /* Hero section adjustments */
  .hero-content h1 {
    font-size: 45px;
  }

  .hero-content p {
    font-size: 16px;
  }

  /* Section headings */
  section h2, .videos h4 {
    font-size: 28px;
  }

  /* Biografía image */
  .biografia img {
    margin: 20px auto;
  }

  /* Swiper adjustments for mobile */
  .swiper-container {
    padding: 10px 0;
  }

  .swiper-slide {
    width: 90% !important;
    margin: 0 5%;
    max-width: none;
  }

  .galeria .swiper-slide {
    width: 85% !important;
    margin: 0 7.5%;
  }

  /* Contact form */
  form {
    padding: 0 10px;
  }

  /* Floating buttons */
  .dark-toggle {
    right: 10px;
    bottom: 10px;
    padding: 8px 12px;
    font-size: 14px;
    width: auto;
    height: auto;
  }

  #scrollTopBtn {
    right: 10px;
    bottom: 65px;
    width: 45px;
    height: 45px;
    font-size: 18px;
  }

  .boton-whatsapp {
    left: 10px;
    bottom: 10px;
    width: 45px;
    height: 45px;
  }

  /* Cine section adjustments */
  .cine-fefita h2 {
    font-size: 36px;
    margin-bottom: 30px;
  }

  .cine-fefita .intro {
    font-size: 17px;
    margin-bottom: 30px;
  }

  .pelicula {
    flex-direction: column;
    text-align: center;
    padding: 20px;
    gap: 20px;
  }

  .pelicula img.poster {
    width: 100%;
    max-width: 250px;
    margin: 0 auto;
  }

  .pelicula h3 {
    font-size: 24px;
  }

  .pelicula p {
    font-size: 16px;
  }

  .cine-fefita .curioso {
    padding: 20px;
    margin-top: 40px;
  }

  .cine-fefita .btn {
    padding: 12px 25px;
    font-size: 16px;
  }

  .cta-wrapper {
      margin-top: 40px;
  }
}

@media (max-width: 480px) {
    .cine-fefita h2 {
        font-size: 32px;
    }
    .cine-fefita .intro {
        font-size: 16px;
    }
    .pelicula img.poster {
        max-width: 180px;
    }
    .pelicula h3 {
        font-size: 22px;
    }
}