/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #f4e7d4;
  color: #3b2e2a;
  line-height: 1.6;
}

/* NAVBAR */
.navbar {
  background-color: #5c3d2e;
  color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  position: sticky;
  top: 0;
  z-index: 10;
}

.logo {
  font-size: 1.5rem;
  font-weight: bold;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}

.nav-links a {
  color: white;
  text-decoration: none;
  font-weight: 500;
}

.nav-links a:hover {
  text-decoration: underline;
}

/* HERO SECTION */
.hero {
  position: relative;
  text-align: center;
}

.hero-img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  filter: brightness(0.6);
}

.hero-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.6);
  padding: 0 1rem;
}

.hero-text h1 {
  font-size: 2.5rem;
}

.hero-text span {
  color: #f9c68f;
}

/* SECCIONES */
section {
  padding: 4rem 2rem;
  text-align: center;
  background-color: #fffaf5;
}

h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
}

/* MENÚ */
.menu-items {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 2rem;
}

.item {
  background-color: #fff3e0;
  padding: 1rem;
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.item h3 {
  margin-bottom: 0.5rem;
}

/* GALERÍA */
.galeria-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

.galeria-grid img {
  width: 100%;
  height: auto;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

/* UBICACIÓN */
.ubicacion .mapa {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.8rem 1.2rem;
  background-color: #5c3d2e;
  color: white;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
}

.ubicacion .mapa:hover {
  background-color: #3e271e;
}

/* CONTACTO */
form {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

input, textarea {
  padding: 0.8rem;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
}

button {
  padding: 1rem;
  background-color: #5c3d2e;
  color: white;
  border: none;
  font-weight: bold;
  border-radius: 6px;
  cursor: pointer;
}

button:hover {
  background-color: #3e271e;
}

/* FOOTER */
footer {
  background-color: #5c3d2e;
  color: white;
  text-align: center;
  padding: 1.5rem;
  margin-top: 3rem;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .nav-links {
    flex-direction: column;
    align-items: flex-end;
  }

  .hero-text h1 {
    font-size: 2rem;
  }

  .hero-text p {
    font-size: 1rem;
  }

  section {
    padding: 2.5rem 1rem;
  }
}
