/* responsive.css actualizado para asegurar uso de fuente Dosis */

/* Asegura la fuente en todo el sitio */
body {
  font-family: 'Dosis', sans-serif;
}

.titulo, .subtitulo, h1, h2, h3, p, a, li, label, input, select, button {
  font-family: 'Dosis', sans-serif;
}

/* Estilos generales */
.container {
  max-width: 1200px;
  margin: auto;
  padding: 20px;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Grid para TikToks */
.tiktok-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  margin-top: 30px;
}

.tiktok-grid .tiktok-embed {
  flex: 1 1 300px;
  max-width: 330px;
  min-width: 280px;
}

/* Estilos para redes sociales */
.redes {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin-top: 40px;
}

.red-card {
  text-align: center;
  transition: transform 0.3s ease;
}

.red-card img {
  width: 80px;
  height: 80px;
}

.red-card:hover {
  transform: scale(1.05);
}

.red-card div {
  font-weight: bold;
  margin-top: 10px;
  color: #C62E3D;
  font-size: 1rem;
}

/* Responsive */
@media (max-width: 768px) {
  .container {
    padding: 10px;
  }
  .tiktok-grid {
    flex-direction: column;
    align-items: center;
  }
  .redes {
    flex-direction: column;
    align-items: center;
  }
  .red-card img {
    width: 60px;
    height: 60px;
  }
  .red-card div {
    font-size: 0.9rem;
  }
}


/* ===== Responsive styles ===== */

@media (max-width: 1200px) {
  .input-style {
    font-size: 1rem;
  }
}

@media (max-width: 768px) {
  /* General container adjustments */
  #form-reserva {
    padding: 20px;
  }

  .input-style {
    font-size: 0.95rem;
  }

  /* Footer columns stack vertically */
  footer > div {
    flex-direction: column;
    align-items: flex-start;
  }

  footer div[style*="display: flex"] > div {
    margin-bottom: 30px;
  }

  /* Banner height for mobile */
  .banner-slider img {
    width: 100vw;
    height: auto;
    max-height: 200px;
    object-fit: cover;
  }

  /* Navigation adjustments */
  nav .menu {
    flex-direction: column;
    gap: 1rem;
    align-items: center;
  }

  nav {
    flex-direction: column;
  }
}
