@import url('https://fonts.googleapis.com/css2?family=Dancing+Script&display=swap');
body {
  margin: 0;
  font-family: 'Dancing Script', cursive;
  background-color: #f2e3c6;
}
.hero {
  background-image: url('images/fondo-lacucharadeana.jpg');
  background-size: cover;
  background-position: center;
  min-height: 100vh;
  padding: 2rem;
  text-shadow: 1px 1px 4px rgba(0,0,0,0.8);
}
.logo {
  max-width: 220px;
  height: auto;
}
.titulo {
  font-family: 'Dancing Script', cursive;
  font-weight: 700;
  font-size: 2.5rem;
  color: #3d0000;
}
.subtitulo {
  font-family: 'Dancing Script', cursive;
  font-size: 1.25rem;
  color: #3d0000;
}
.btn-accent {
  background-color: #3d0000;
  color: #ffffff;
  border-radius: 30px;
  padding: 0.75rem 1.5rem;
  font-weight: bold;
  text-transform: uppercase;
  border: none;
}
.btn-accent:hover {
  background-color: #ffffff;
  color: #000000;
}
.carousel-item img {
  width: 100%;
  height: auto;
  object-fit: contain;
  max-height: 90vh;
}
img.responsive {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}

/* Botón centrado entre la parte superior y el logo */
.lang-toggle {
  position: absolute;
  top: 2rem;                     /* ajusta según lo alto que lo quieras */
  left: 50%;
  transform: translateX(-50%);
}



/*  ─────────  Páginas a pantalla completa  ───────── */
html, body {
  height: 100%;                 /* que el 100 vh sea realmente todo el viewport */
}

.full-height {                  /* clase utilitaria para cualquier contenedor  */
  min-height: 100vh;            /* ocupa TODA la altura de la pantalla         */
  display: flex;                /* dispuestos como columna y centrados         */
  flex-direction: column;
  justify-content: center;      /* centra verticalmente el bloque interior     */
}

/* Ajustamos un poco las imágenes de carrusel
   para que nunca excedan el alto total */
.carousel-item img {
  max-height: 85vh;             /* cabe por completo en la pantalla            */
  object-fit: contain;
}


/* --- Footer fijo e informativo --- */
.footer-redes{
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background:#3d0000;          /* cámbialo a tu color de fondo */
  padding: 0.5rem 0;           /* alto aprox. 48-56 px */
  box-shadow: 0 -2px 6px rgba(0,0,0,.05);
  z-index: 1000;
  font-size: 0.95rem;
}

.footer-wrapper{
  display:flex;
  justify-content:center;
  align-items:center;
  gap: 1.5rem;                 /* espacio entre bloques */
  flex-wrap:wrap;              /* si la pantalla es muy angosta hace segunda línea */
}

.footer-wrapper a{
  display:flex;
  align-items:center;
  color:#f8f9fa;                  /* color de iconos/texto */
  text-decoration:none;
  transition:opacity .2s;
}
.footer-wrapper a:hover{opacity:.7;}

.footer-wrapper i{             /* tamaño de iconos */
  font-size:1.2rem;
  margin-right:4px;
}


/* separa carrusel del footer fijo */
.carrusel-espaciado {
  margin-bottom: 100px;     /* ajusta a tu gusto */
}
