/* Reset básico */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body, html {
  height: 100%;
  font-family: 'Segoe UI', sans-serif;
}

/* HERO Section */
.hero {
  position: relative;
  height: 100vh;
  background: url("Fotos/mesa.png") no-repeat center center/cover;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: white;
  text-align: center;
}

/* Capa negra semitransparente */
.hero .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

/* Logo (para la hero si se usa) */
nav {
  position: absolute;
  top: 10px;
  left: 20px;
  z-index: 2;
}

.logo {
  height: 110px;
}

/* Texto principal */
.hero-content {
  position: relative;
  z-index: 2;
}

.hero-content h2 {
  font-size: 2.9rem;
  font-weight: 300;
  margin-bottom: 0.2em;
  font-family: 'Georgia', serif;
}

.hero-content h1 {
  font-size: 6rem;
  font-weight: bold;
  color: #00bfa6;
  margin-bottom: 1em;
}

/* Botones */
.buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  background-color: rgba(0, 0, 0, 0.711);
  color: white;
  padding: 0.8em 1.5em;
  border-radius: 25px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s;
}

.btn:hover {
  background-color: #00bfa6;
  color: #fff;
}

/* === Estilos generales para el menú === */
body {
  background-color: #035530;
  color: #333;
}

.menu-container {
  padding: 2rem 1rem;
  max-width: 800px;
  margin: auto;
  background-color: #6eff7862;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.menu-container h1 {
  text-align: center;
  margin-bottom: 2rem;
  color: #ffffff9c;
  font-size: 2.2rem;
}

.menu-section h2 {
  font-size: 1.4rem;
  color: #ffffff;
  border-bottom: 2px solid #e0e0e0;
  margin-top: 2rem;
  margin-bottom: 1rem;
  padding-bottom: 0.3rem;
}

.menu-section ul {
  list-style: none;
  padding-left: 0;
}

.menu-section li {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 0.6rem 0;
  border-bottom: 1px dashed #ccc;
  font-size: 1rem;
}

.menu-section li span:first-child {
  flex: 1;
}

.price {
  font-weight: bold;
  color: #e9e9e9;
  white-space: nowrap;
}

/* HEADER */
.site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  background-color: #1c3d2f;
  padding: 1rem 2rem;
  color: white;
}

.logo-container {
  display: flex;
  align-items: center;
}

.logo-container img {
  height: 50px;
  width: auto;
}

.main-nav {
  display: flex;
}

.main-nav ul {
  display: flex;
  gap: 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.main-nav a {
  color: white;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s;
}

.main-nav a:hover {
  color: #aee2b3;
}

/* FOOTER */
.site-footer {
  background-color: #1c3d2f;
  color: white;
  text-align: center;
  padding: 1.5rem 1rem;
  margin-top: 3rem;
}

.site-footer p {
  margin-bottom: 1rem;
  font-size: 0.9rem;
}

.site-footer .social-icons {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.site-footer .social-icons img {
  width: 24px;
  height: 24px;
  filter: brightness(0) invert(1);
  transition: transform 0.3s;
}

.site-footer .social-icons img:hover {
  transform: scale(1.1);
}

/* Responsive */
@media (max-width: 768px) {
  .site-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .main-nav ul {
    flex-direction: column;
    gap: 1rem;
    margin-top: 1rem;
  }

  .main-nav {
    width: 100%;
  }

  .menu-container {
    padding: 1rem;
  }

  .hero-content h1 {
    font-size: 3.5rem;
  }

  .hero-content h2 {
    font-size: 1.8rem;
  }

  .buttons {
    flex-direction: column;
  }
}

@media (max-width: 600px) {
  .menu-section li {
    flex-direction: column;
    align-items: flex-start;
  }

  .price {
    margin-top: 0.4rem;
  }

  .main-nav ul {
    align-items: flex-start;
  }

  .logo-container {
    margin-bottom: 1rem;
  }
}
