/* Variables CSS para colores */
: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-default: #ff007b; /* Color principal para botones */
  --button-hover: #b80055; /* Color hover para botones */
  --whatsapp-green: #25d366; /* Verde WhatsApp */
  --whatsapp-green-hover: #1DA851; /* Verde WhatsApp hover */

  /* Variables específicas para modo claro (valores por defecto) */
  --news-item-bg: #fff;
  --news-item-shadow: rgba(0, 0, 0, 0.1);
  --news-item-border: rgba(0, 0, 0, 0.05);
  --news-item-hover-shadow: rgba(0, 0, 0, 0.2);
  --news-item-text-color: var(--text-dark);
  --news-item-paragraph-color: var(--text-dark-secondary);
}

/* Modo oscuro override de variables */
body.dark-mode {
  --background-light: var(--background-dark);
  --text-dark: var(--text-light);
  --text-dark-secondary: var(--text-light-secondary); /* Ajustado para modo oscuro */
  --header-footer-dark: #3a3a3a; /* Un tono un poco diferente para el dark mode header/footer */

  --news-item-bg: var(--header-footer-dark);
  --news-item-shadow: rgba(255, 255, 255, 0.08);
  --news-item-border: rgba(255, 255, 255, 0.1);
  --news-item-hover-shadow: rgba(255, 255, 255, 0.15);
  --news-item-text-color: var(--highlight-color); /* Un color que resalte */
  --news-item-paragraph-color: var(--text-light-secondary); /* Un gris más claro */
}


/* 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 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;
  flex-wrap: wrap;
  position: relative;
  z-index: 100;
}

.logo img.logo-img {
  height: 100px;
  width: auto;
  display: block;
}

.menu-toggle {
  display: none;
  font-size: 28px;
  cursor: pointer;
  color: #fff;
}

nav {
  display: flex;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 10px;
}

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;
  /* Fondo de imagen POR DEFECTO (fallback y visible al inicio) */
  background: linear-gradient(rgba(56, 0, 29, 0.5), rgba(56, 0, 29, 0.5)), url('images/Fefita_La_Grande.webp') no-repeat center center / cover;
  background-size: cover;
  background-attachment: scroll; /* Asegura que no sea fixed para mejor compatibilidad móvil */
}

.bg-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 0; /* Inicialmente oculto por opacidad */
  transition: opacity 1s ease-in-out; /* Transición suave para el fade-in */
  display: block; /* Asegura que el video esté en el flujo para la transición */
}

/* Cuando el video está cargado y debe mostrarse */
.bg-video.show {
  opacity: 0.5; /* Ajusta la opacidad deseada para el video */
}

.hero-content {
  padding: 20px;
  position: relative; /* Asegura que el contenido esté sobre el video */
  z-index: 1;
  display: flex; /* Añadido para apilar y centrar contenido */
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.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;
}

.hero-button-container {
  padding-top: 80px; /* Ajusta este valor para bajar el botón. Prueba con 80px, 100px, etc. */
  text-align: center; /* Asegura que el botón se centre dentro de este contenedor si es un elemento en línea */
  width: 100%; /* Opcional: asegura que ocupe todo el ancho para centrar */
}

.btn {
  margin-top: 20px; /* Ya no es necesario si usas hero-button-container padding-top */
  padding: 12px 25px;
  background-color: var(--button-default);
  color: white;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  transition: background 0.3s;
}

.btn:hover {
  background-color: var(--button-hover);
}

/* Estilos para el botón de YouTube en el Hero */
.hero-content .youtube-btn {
  background-color: #FF0000; /* Rojo de YouTube */
  border: 2px solid #FF0000;
  font-size: 1.1em;
  transition: background-color 0.3s, border-color 0.3s, transform 0.3s;
}

.hero-content .youtube-btn:hover {
  background-color: #CC0000; /* Rojo más oscuro al pasar el ratón */
  border-color: #CC0000;
  transform: translateY(-2px); /* Un pequeño efecto de levantamiento */
}

/* Modo oscuro para el botón de YouTube si es necesario */
body.dark-mode .hero-content .youtube-btn {
  background-color: #FF0000;
  border-color: #FF0000;
  color: white; /* Asegura el color del texto en modo oscuro */
}

body.dark-mode .hero-content .youtube-btn:hover {
  background-color: #CC0000;
  border-color: #CC0000;
}

/* --- 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;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.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 {
  flex-direction: column;
  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(--button-default);
  border: none;
  color: #fff;
  font-weight: bold;
  cursor: pointer;
  border-radius: 5px;
  transition: background 0.3s;
  width: 100%;
}

form button:hover {
  background-color: var(--button-hover);
}

/* --- 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-default);
  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;
  background: var(--button-default);
  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);
}

/* 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: var(--whatsapp-green-hover);
}

.boton-whatsapp img {
  width: 30px;
  height: 30px;
  filter: none;
}

/* --- Media Queries para Dispositivos Móviles --- */
@media (max-width: 768px) {
  /* Header adjustments */
  header {
    flex-wrap: nowrap;
    justify-content: space-between;
    padding: 10px 20px;
  }

  .logo img.logo-img {
    height: 80px;
  }

  .menu-toggle {
    display: block;
  }

  nav {
    position: absolute;
    top: 80px;
    right: 20px;
    background-color: rgba(110, 68, 93, 0.95);
    border-radius: 10px;
    overflow: hidden;
    display: none;
    flex-direction: column;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
    z-index: 100;
    width: calc(100% - 40px);
    max-width: 300px;
    transition: all 0.3s ease-in-out;
    transform: translateY(-20px);
    opacity: 0;
    pointer-events: none;
  }

  nav.active {
    display: flex;
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  nav ul {
    flex-direction: column;
    gap: 0;
  }

  nav li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  nav li:last-child {
    border-bottom: none;
  }

  nav a {
    color: #fff;
    padding: 15px 20px;
    display: block;
    text-align: center;
  }

  nav a:hover {
    background-color: rgba(158, 89, 122, 0.8);
  }

  /* Efecto de desenfoque para el menú hamburguesa */
  nav {
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
  }

  /* 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%; /* Ajusta esto en la inicialización de Swiper si usas slidesPerView: 'auto' */
    margin: 0 5%;
    max-width: none;
  }

  .galeria .swiper-slide {
    width: 85%;
    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;
  }

  .boton-whatsapp img {
    width: 25px;
    height: 25px;
  }
}

/* Animación slideUp (se activa con JavaScript) */
@keyframes slideUp {
  from {
    transform: translateY(100px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* --- Sección de Noticias - Más Elegante --- */
.noticias {
  background-color: var(--background-light); /* Un fondo claro que contraste con el contenido */
  padding: 80px 0; /* Más padding vertical para mayor espacio */
  position: relative; /* Para posibles efectos de fondo o superposiciones */
  overflow: hidden; /* Asegura que no haya desbordamientos */
}

/* Título de la sección */
.noticias h2 {
  font-family: 'Playfair Display', serif;
  font-size: 3.2em; /* Título más grande y prominente */
  color: var(--primary-color); /* Color principal para el título */
  text-align: center;
  margin-bottom: 60px; /* Más espacio debajo del título */
  position: relative;
  display: inline-block; /* Para que el pseudo-elemento se posicione correctamente */
  padding-bottom: 10px; /* Espacio para la línea decorativa */
}

/* Línea decorativa debajo del título */
.noticias h2::after {
  content: '';
  display: block;
  width: 80px; /* Ancho de la línea */
  height: 3px; /* Grosor de la línea */
  background-color: var(--highlight-color); /* Color de la línea */
  margin: 10px auto 0; /* Centra la línea */
  border-radius: 5px;
}

.noticias-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); /* Columnas responsivas, un poco más grandes */
  gap: 40px; /* Más espacio entre los artículos */
  max-width: 1200px; /* Limita el ancho máximo del grid para mejor legibilidad */
  margin: 0 auto; /* Centra el grid */
}

.noticia-item {
  background-color: var(--news-item-bg);
  border-radius: 15px; /* Bordes más redondeados */
  box-shadow: 0 8px 30px var(--news-item-shadow); /* Sombra más pronunciada y suave */
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.4s ease, box-shadow 0.4s ease; /* Transiciones más suaves */
  border: 1px solid var(--news-item-border); /* Borde sutil */
}

.noticia-item:hover {
  transform: translateY(-8px); /* Efecto de elevación más notable */
  box-shadow: 0 15px 40px var(--news-item-hover-shadow); /* Sombra más intensa al pasar el ratón */
}

/* Contenedor del video/imagen responsivo */
.noticia-item .video-responsive {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* Relación de aspecto 16:9 */
  height: 0;
  overflow: hidden;
  border-radius: 15px 15px 0 0; /* Bordes redondeados solo arriba, coincidiendo con el item */
  background-color: #000; /* Fondo negro para el video antes de cargar */
}

.noticia-item .video-responsive iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* Estilos para la imagen si se usa en lugar del video */
.noticia-item img {
  width: 100%;
  height: 250px; /* Altura un poco mayor para imágenes */
  object-fit: cover;
  border-radius: 15px 15px 0 0; /* Bordes redondeados solo arriba */
  display: block; /* Asegura que ocupe el ancho completo */
}


.noticia-item h3 {
  font-family: 'Playfair Display', serif;
  font-size: 24px; /* Título del artículo más grande */
  color: var(--news-item-text-color); /* Usando variable para modo oscuro */
  padding: 25px 30px 15px; /* Más padding interno */
  margin-bottom: 0;
  line-height: 1.3;
}

.noticia-item p {
  font-size: 17px; /* Texto un poco más grande para mejor legibilidad */
  line-height: 1.7; /* Mayor interlineado */
  color: var(--news-item-paragraph-color); /* Usando variable para modo oscuro */
  padding: 0 30px 20px; /* Más padding interno */
  flex-grow: 1;
}

.noticia-item .btn-noticia {
  display: inline-block;
  text-align: center;
  padding: 14px 25px;
  background-color: var(--primary-color);
  color: white;
  text-decoration: none;
  border-radius: 8px;
  transition: background-color 0.3s ease, transform 0.3s ease;
  margin: 0 30px 25px auto;
  align-self: flex-start;
}

.noticia-item .btn-noticia:hover {
  background-color: var(--highlight-color);
  transform: translateY(-2px);
}