/* --- Fuentes y colores --- */
:root {
  --color-bg: #fdfaf6;
  --color-primary: #7a4b26;
  --color-accent: #c07c40;
  --color-text: #3c2a1e;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Open Sans', sans-serif;
  background-color: var(--color-bg);
  color: var(--color-text);
  line-height: 1.6;
}

h1, h2, h3 {
  font-family: 'Playfair Display', serif;
  color: var(--color-primary);
}

/* --- Navegación --- */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: var(--color-bg);
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  z-index: 10;
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
}

.logo {
  font-size: 1.5rem;
  font-weight: bold;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 1.2rem;
}

.nav-links a {
  text-decoration: none;
  color: var(--color-text);
  font-weight: 600;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: var(--color-accent);
}

/* --- Hero --- */
.hero {
  height: 100vh;
  background: url('img/hero-placeholder.jpg') center/cover no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: white;
  background-color: #3c2a1e; /* fallback */
}

.hero-content {
  background: rgba(0, 0, 0, 0.5);
  padding: 2rem;
  border-radius: 12px;
}

.hero h2 {
  font-size: 2.5rem;
}

.hero p {
  font-size: 1.2rem;
}

/* --- Secciones --- */
.section {
  padding: 5rem 1rem;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
}

.section-title {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 2rem;
}

/* --- Carta --- */
.menu {
  display: grid;
  gap: 2rem;
}

.menu-group h3 {
  border-bottom: 2px solid var(--color-accent);
  padding-bottom: 0.5rem;
  margin-bottom: 1rem;
}

.menu-group ul {
  list-style: none;
}

.menu-group li {
  display: flex;
  justify-content: space-between;
  padding: 0.3rem 0;
}

/* --- Galería --- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
}

.gallery-item {
  background: #e0d5c2;
  height: 200px;
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-style: italic;
  color: #7a4b26;
}

/* --- Nosotros --- */
.about p {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  font-size: 1.1rem;
}

/* --- Contacto --- */
.contact-info {
  text-align: center;
  margin-bottom: 2rem;
}

.map-container {
  text-align: center;
}

.map-container iframe {
  width: 100%;
  height: 350px;
  border: none;
  border-radius: 12px;
}

/* --- Footer --- */
.footer {
  background: var(--color-primary);
  color: white;
  text-align: center;
  padding: 1rem 0;
}

/* --- Responsivo --- */
@media (max-width: 768px) {
  .nav-links {
    flex-direction: column;
  }

  .hero h2 {
    font-size: 2rem;
  }
}
