body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #fff8f0;
  margin: 0;
  padding: 0;
}
h1, h2{
  font-family: 'Cormorant Garamond', serif;
  font-weight: 900;
}
/* Logo del navbar */
.logo {
  width: 30px;
  height: auto;
  margin-right: 5px;
}
.bg-marron {
  background-color: #2f251f;
}
/* Imagen de fondo de la portada */
.hero {
  height: 500px;
  margin: 40px 0;
  position: relative;
  overflow: hidden;
}
.carousel-item img {
  height: 30vh; /* Responsive: 60% del alto de pantalla */
  min-height: 250px;
  object-fit: cover;
  width: 100%;
}

.hero-img {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  object-fit: cover;
  z-index: -1;
}

/* Texto sobre la imagen */
.hero-text {
  z-index: 1;
}

.hero-title {
  font-size: 2.8rem;
  font-weight: bold;
  background-color: rgba(0, 0, 0, 0.7);
  padding: 10px 20px;
  border-radius: 10px;
  color: #ffc107;
  margin-bottom: 15px;
}

.hero-subtitle {
  font-size: 1.2rem;
  background-color: rgba(105, 24, 24, 0.5);
  padding: 10px 15px;
  border-radius: 10px;
}

.img-card-postre {
  height: 230px;
  object-fit: cover;
  width: 100%;
  border-top-left-radius: 0.375rem;
  border-top-right-radius: 0.375rem;
}

.btn-mariate {
  background-color: #9b4f1f;
  color: #fff;
  border: none;
}

.btn-mariate:hover {
  background-color: #522004;
  color: #ffffff;
}
 html, body {
    margin: 0;
    padding: 0;
  }
.footer {
  background-color: #2c211b;
  width: 100%;      /* ✅ MÁS SEGURO Y RESPONSIVO */
  padding: 20px 0;
}
  .footer .footer-content {
    max-width: 1200px;   /* Para centrar contenido sin limitar el fondo */
    margin: 0 auto;
    background-color: #2c211b;
  }
.hero-delipostres {
  background-image: url("img/fondo-postres.jpg");
  background-size: cover;
  background-position: center;
  min-height: 90vh;
  position: relative;
  padding: 3rem 2rem; /* Espacio interno general */
  overflow: hidden;
  margin: 40px auto;     /* ✅ Centrado con separación arriba y abajo */
}


.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
}

.hero-title {
  font-size: 3rem;
  font-weight: bold;
  background-color: rgba(255, 255, 255, 0.25);
  padding: 10px 20px;
  border-radius: 10px;
  color: #fcd255;
  margin-bottom: 15px;
}

.hero-subtitle {
  font-size: 1.25rem;
  background-color: rgba(255, 255, 255, 0.15);
  padding: 10px 15px;
  border-radius: 10px;
}

.card-hero {
  background-color: rgba(255, 255, 255, 0.9);
  border: none;
  border-radius: 15px;
  max-width: 500px;
  margin: auto;
}
.datos-contacto i {
  margin-bottom: 10px;
}

/* Tabla destacada */
table th, table td {
  vertical-align: middle;
}
.box-contacto {
  border: 1px solid #ddd;
  border-radius: 10px;
  background-color: #fff;
  height: 100%;
  box-shadow: 0 0 8px rgba(102, 42, 7, 0.03);
}
/* Footer */
.footer i:hover {
  color: #ffc107;
  transition: 0.3s;
}
@media (max-width: 576px) {
  .hero-delipostres {
    padding: 2rem 1rem;     /* Menos padding lateral en celular */
    border-radius: 0;       /* Sin bordes redondeados si quieres full ancho */
    margin: 20px 0;         
  }

  .hero-title {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }
}