@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700;900&family=Raleway:wght@300;400;600&family=Dancing+Script:wght@700&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --verde:   #2d6a4f;
  --rojo:    #c1121f;
  --dorado:  #e9c46a;
  --crema:   #fdf8ee;
  --oscuro:  #1a1208;
  --gris:    #4a4a4a;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Raleway', sans-serif;
  background: var(--crema);
  color: var(--oscuro);
  overflow-x: hidden;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem 2.5rem;
  background: rgba(26, 18, 8, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(233, 196, 106, 0.2);
}

.nav-logo {
  font-family: 'Dancing Script', cursive;
  color: var(--dorado);
  font-size: 1.6rem;
  text-decoration: none;
  letter-spacing: 0.5px;
}

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

.nav-links a {
  color: #f5efe6;
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--dorado); }

.nav-cta {
  background: var(--rojo);
  color: #fff !important;
  padding: 0.55rem 1.4rem;
  border-radius: 2px;
  transition: background 0.2s !important;
}
.nav-cta:hover { background: #9b0e18 !important; color: #fff !important; }

/* hamburger */
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--dorado); border-radius: 2px; transition: 0.3s; }

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 6rem 2rem 4rem;
  background:
    linear-gradient(to bottom, rgba(26,18,8,0.75) 0%, rgba(26,18,8,0.45) 60%, rgba(26,18,8,0.80) 100%),
    url('https://images.unsplash.com/photo-1565299585323-38d6b0865b47?w=1600&q=80') center/cover no-repeat;
  position: relative;
}

.hero-badge {
  display: inline-block;
  border: 1px solid var(--dorado);
  color: var(--dorado);
  font-size: 0.7rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 0.4rem 1.2rem;
  margin-bottom: 1.8rem;
  border-radius: 1px;
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.8rem, 7vw, 6rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.05;
  margin-bottom: 0.5rem;
  text-shadow: 0 2px 20px rgba(0,0,0,0.5);
}

.hero h1 span { color: var(--dorado); }

.hero-sub {
  font-size: 0.9rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  margin-bottom: 1.8rem;
}

.hero p {
  max-width: 580px;
  color: rgba(255,255,255,0.85);
  font-size: 1.05rem;
  line-height: 1.75;
  margin-bottom: 2.8rem;
}

.btn-group { display: flex; gap: 1rem; flex-wrap: wrap; justify-content: center; }

.btn {
  display: inline-block;
  padding: 0.85rem 2.2rem;
  font-family: 'Raleway', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 2px;
  transition: all 0.2s;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: var(--rojo);
  color: #fff;
}
.btn-primary:hover { background: #9b0e18; transform: translateY(-1px); }

.btn-outline {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.6);
}
.btn-outline:hover { border-color: var(--dorado); color: var(--dorado); }

.btn-dark {
  background: var(--oscuro);
  color: var(--dorado);
  border: 1px solid var(--dorado);
}
.btn-dark:hover { background: var(--dorado); color: var(--oscuro); }

/* scroll hint */
.scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  color: rgba(255,255,255,0.4);
  font-size: 0.65rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  animation: fadeUp 1.5s ease infinite alternate;
}
.scroll-hint::after {
  content: '';
  display: block;
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.4), transparent);
}
@keyframes fadeUp { from { opacity: 0.3; } to { opacity: 0.9; } }

/* ── STRIP ── */
.strip {
  background: var(--oscuro);
  color: var(--dorado);
  text-align: center;
  padding: 1rem;
  font-size: 0.75rem;
  letter-spacing: 3px;
  text-transform: uppercase;
}
.strip span { margin: 0 1.5rem; opacity: 0.5; }

/* ── SECTION COMMONS ── */
section { padding: 6rem 2rem; }

.section-label {
  display: block;
  font-size: 0.65rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--rojo);
  margin-bottom: 0.8rem;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--oscuro);
  margin-bottom: 1.4rem;
}

.section-title.light { color: #fff; }

.section-text {
  max-width: 560px;
  line-height: 1.85;
  color: var(--gris);
  font-size: 0.97rem;
}

/* ── NOSOTROS ── */
.nosotros {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}

.nosotros-img {
  position: relative;
}

.nosotros-img img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  display: block;
  border-radius: 2px;
}

.nosotros-img::before {
  content: '';
  position: absolute;
  top: -16px; left: -16px;
  right: 16px; bottom: 16px;
  border: 2px solid var(--dorado);
  border-radius: 2px;
  z-index: -1;
}

.nosotros-badge {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  background: var(--rojo);
  color: #fff;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  text-align: center;
  line-height: 1.2;
  box-shadow: 0 4px 20px rgba(193,18,31,0.4);
}
.nosotros-badge strong { font-size: 1.6rem; }
.nosotros-badge span { font-size: 0.55rem; letter-spacing: 1.5px; text-transform: uppercase; opacity: 0.85; }

.nosotros-content .section-text { margin-bottom: 2rem; }

.divider {
  width: 48px;
  height: 3px;
  background: var(--rojo);
  margin: 1.2rem 0 1.8rem;
  border-radius: 2px;
}

/* ── ESPECIALIDADES ── */
.especialidades {
  background: var(--oscuro);
  text-align: center;
}

.especialidades .section-label { color: var(--dorado); }

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  max-width: 1100px;
  margin: 3.5rem auto 0;
}

.card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(233,196,106,0.12);
  border-radius: 4px;
  overflow: hidden;
  text-align: left;
  transition: transform 0.2s, border-color 0.2s;
}

.card:hover { transform: translateY(-4px); border-color: rgba(233,196,106,0.35); }

.card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  filter: brightness(0.9);
  transition: filter 0.3s;
}
.card:hover img { filter: brightness(1); }

.card-body { padding: 1.5rem; }

.card-tag {
  font-size: 0.6rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--dorado);
  opacity: 0.7;
  display: block;
  margin-bottom: 0.5rem;
}

.card-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  color: #fff;
  margin-bottom: 0.6rem;
}

.card-desc {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
}

/* ── MENU PREVIEW ── */
.menu-preview {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.menu-preview .section-label,
.menu-preview .section-title,
.menu-preview .section-text { text-align: left; }

.menu-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: #e8e0d0;
  border: 1px solid #e8e0d0;
  margin: 3rem 0;
  border-radius: 2px;
  overflow: hidden;
}

.menu-cat {
  background: #fff;
  padding: 2rem 2.5rem;
}

.menu-cat h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  color: var(--oscuro);
  border-bottom: 1px solid var(--dorado);
  padding-bottom: 0.6rem;
  margin-bottom: 1.2rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.menu-cat h3::before {
  content: '';
  display: inline-block;
  width: 8px; height: 8px;
  background: var(--rojo);
  border-radius: 50%;
  flex-shrink: 0;
}

.menu-item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 0.5rem 0;
  border-bottom: 1px dashed rgba(0,0,0,0.07);
  gap: 1rem;
}

.menu-item:last-child { border-bottom: none; }

.menu-item-name {
  font-size: 0.88rem;
  color: var(--gris);
}

.menu-item-price {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--rojo);
  white-space: nowrap;
}

/* ── RESERVACION ── */
.reservacion {
  background:
    linear-gradient(to right, rgba(26,18,8,0.88), rgba(26,18,8,0.65)),
    url('https://images.unsplash.com/photo-1414235077428-338989a2e8c0?w=1600&q=80') center/cover no-repeat fixed;
  text-align: center;
  padding: 8rem 2rem;
}

.reservacion .section-label { color: var(--dorado); }

.reservacion-info {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin: 2.5rem 0 3rem;
  flex-wrap: wrap;
}

.info-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
}

.info-icon {
  font-size: 1.4rem;
  margin-bottom: 0.2rem;
}

.info-label {
  font-size: 0.6rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}

.info-value {
  font-size: 0.95rem;
  color: #fff;
  font-weight: 600;
}

/* ── UBICACION ── */
.ubicacion {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  max-width: 100%;
  padding: 0;
}

.ubicacion-info {
  padding: 5rem 4rem;
  background: var(--oscuro);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.ubicacion-info .section-label { color: var(--dorado); }
.ubicacion-info .section-title { color: #fff; }

.ubicacion-details {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}

.detail-row {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.detail-icon { font-size: 1.1rem; flex-shrink: 0; margin-top: 1px; }

.detail-label {
  font-size: 0.6rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--dorado);
  opacity: 0.7;
  margin-bottom: 0.2rem;
}

.detail-value {
  color: rgba(255,255,255,0.8);
  font-size: 0.9rem;
  line-height: 1.5;
}

.detail-value a {
  color: rgba(255,255,255,0.8);
  text-decoration: none;
}
.detail-value a:hover { color: var(--dorado); }

.ubicacion-map { min-height: 400px; }
.ubicacion-map iframe { width: 100%; height: 100%; border: none; display: block; min-height: 400px; }

/* ── FOOTER ── */
footer {
  background: #0f0a04;
  color: rgba(255,255,255,0.45);
  text-align: center;
  padding: 2rem;
  font-size: 0.78rem;
  letter-spacing: 0.5px;
  border-top: 1px solid rgba(233,196,106,0.1);
}

footer strong { color: var(--dorado); }

/* ── MENU PAGE ── */
.menu-page {
  padding-top: 7rem;
  min-height: 100vh;
  background: var(--crema);
}

.menu-hero {
  background:
    linear-gradient(to bottom, rgba(26,18,8,0.8), rgba(26,18,8,0.6)),
    url('https://images.unsplash.com/photo-1551504734-5ee1c4a1479b?w=1600&q=80') center/cover no-repeat;
  text-align: center;
  padding: 5rem 2rem 4rem;
  margin-top: -1px;
}

.menu-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 5vw, 4rem);
  color: #fff;
  font-weight: 900;
}

.menu-hero p {
  color: rgba(255,255,255,0.7);
  margin-top: 0.8rem;
  font-size: 0.9rem;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.menu-sections {
  max-width: 900px;
  margin: 0 auto;
  padding: 4rem 2rem 6rem;
}

.menu-section { margin-bottom: 4rem; }

.menu-section-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  color: var(--oscuro);
  padding-bottom: 0.8rem;
  border-bottom: 2px solid var(--dorado);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.menu-section-title .dot {
  width: 10px; height: 10px;
  background: var(--rojo);
  border-radius: 50%;
  flex-shrink: 0;
}

.menu-full-item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 0.85rem 0;
  border-bottom: 1px dashed rgba(0,0,0,0.1);
  gap: 1.5rem;
}

.menu-full-item:last-child { border-bottom: none; }

.menu-full-name {
  font-size: 0.97rem;
  color: var(--gris);
  font-weight: 500;
}

.menu-full-price {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--rojo);
  white-space: nowrap;
}

.menu-note {
  text-align: center;
  margin-top: 3rem;
  padding: 2rem;
  background: rgba(193,18,31,0.05);
  border: 1px solid rgba(193,18,31,0.15);
  border-radius: 4px;
  font-size: 0.85rem;
  color: var(--gris);
  line-height: 1.7;
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .nav-links { display: none; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: rgba(26,18,8,0.97); padding: 1.5rem; gap: 1.2rem; }
  .nav-links.open { display: flex; }
  .hamburger { display: flex; }

  .nosotros { grid-template-columns: 1fr; gap: 4rem; }
  .nosotros-img::before { display: none; }
  .nosotros-img img { height: 320px; }
  .nosotros-badge { width: 90px; height: 90px; bottom: -1rem; right: -0.5rem; }
  .nosotros-badge strong { font-size: 1.3rem; }

  .menu-grid { grid-template-columns: 1fr; }
  .ubicacion { grid-template-columns: 1fr; }
  .ubicacion-info { padding: 3rem 2rem; }
  .reservacion-info { gap: 1.5rem; }
}
