/* === Tipografías === */
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;600&family=Playfair+Display:wght@400;600;700&display=swap');

/* === Estilos base === */
body {
  margin: 0;
  font-family: 'Playfair Display', serif;
  background-color: #fff8f2; /* fondo cálido */
  color: #2c2c2c;
  line-height: 1.6;
}

/* === Encabezado === */
header {
  background-color: #8B0000; /* rojo vino */
  color: #fff;
  padding: 10px 20px;
  position: relative;
}

.menu-toggle {
  display: none;
  font-size: 28px;
  cursor: pointer;
  color: #fff;
}

nav {
  display: flex;
  justify-content: center;
}

.nav-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 20px;
}

.nav-links li a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s;
  font-family: 'Oswald', sans-serif;
  letter-spacing: 0.5px;
}

.nav-links li a:hover {
  color: #ffcc66; /* dorado claro */
}

/* === Contenido principal === */
main.home-center {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  min-height: 80vh;
  text-align: center;
  padding: 20px;
}

.main-logo img {
  max-width: 250px;
  height: auto;
  margin-bottom: 30px;
}

h1 {
  font-family: 'Oswald', sans-serif;
  font-size: 2.8em;
  color: #8B0000;
  margin-bottom: 10px;
  letter-spacing: 1px;
}

h1 span {
  color: #D2691E; /* dorado rojizo */
}

p {
  max-width: 650px;
  margin: 0 auto 30px;
  font-size: 1.15em;
  color: #3a2f2f;
  font-weight: 500;
}

/* === Botón CTA === */
.btn-cta {
  background-color: #D2691E; /* dorado tostado */
  color: #fff;
  padding: 12px 28px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.15em;
  transition: background-color 0.3s, transform 0.2s;
  font-family: 'Oswald', sans-serif;
}

.btn-cta:hover {
  background-color: #b35414;
  transform: scale(1.05);
}

/* === Footer === */
footer {
  background-color: #8B0000;
  color: #fff;
  text-align: center;
  padding: 15px;
  margin-top: 40px;
  font-family: 'Playfair Display', serif;
  font-size: 0.95em;
}

footer p {
  color: #f5f5f5;
}

footer .socials a {
  color: #ffcc66;
  text-decoration: none;
  margin: 0 8px;
  transition: color 0.3s;
}

footer .socials a:hover {
  color: #fff;
}

/* === Responsive (menú hamburguesa para móviles) === */
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  nav {
    display: none;
    flex-direction: column;
    background-color: #8B0000;
    position: absolute;
    top: 60px;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 10px 0;
  }

  nav.active {
    display: flex;
  }

  .nav-links {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }
}


/* === Página de Menú === */
.menu-page {
  padding: 40px 20px;
  text-align: center;
}

.menu-header {
  margin-bottom: 40px;
}

.menu-header h1 {
  font-family: 'Oswald', sans-serif;
  color: #8B0000;
  font-size: 2.8em;
}

.menu-header p {
  font-family: 'Playfair Display', serif;
  font-size: 1.2em;
  color: #3a2f2f;
}

.menu-category {
  margin-bottom: 50px;
}

.menu-category h2 {
  color: #D2691E;
  font-family: 'Oswald', sans-serif;
  margin-bottom: 25px;
  font-size: 1.8em;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  justify-items: center;
}

.menu-item {
  background-color: #fff3e4;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 3px 6px rgba(0,0,0,0.1);
  transition: transform 0.3s, box-shadow 0.3s;
  max-width: 320px;
}

.menu-item:hover {
  transform: scale(1.03);
  box-shadow: 0 6px 12px rgba(0,0,0,0.15);
}

.menu-item h3 {
  margin: 0 0 10px;
  font-family: 'Oswald', sans-serif;
  font-size: 1.3em;
  color: #8B0000;
}

.menu-item p {
  font-family: 'Playfair Display', serif;
  font-size: 0.95em;
  color: #4a3a3a;
}

.menu-item .price {
  display: block;
  margin-top: 10px;
  font-weight: 700;
  font-size: 1.1em;
  color: #D2691E;
}

/* === Estilo especial para Paquetes === */
.menu-item p {
  white-space: pre-line; /* mantiene los saltos de línea */
}

.menu-item .serves {
  font-style: italic;
  font-size: 0.9em;
  color: #5a4747;
  margin-top: 5px;
}

.menu-item h3 {
  text-transform: uppercase;
  letter-spacing: 1px;
}

.menu-item {
  background: #fff9f3;
  border-left: 6px solid #D2691E;
}

.menu-category h2 {
  border-bottom: 2px solid #D2691E;
  display: inline-block;
  padding-bottom: 5px;
}
