/* ============================================================
   CAVA 18 — cavadieciocho.ar
   Paleta y tratamiento tomados de las placas ya aprobadas
   (brochure-cava18.html): fondo #0d0d0d, dorado #c9a96e,
   texto cálido #f0ebe0. Se suman Playfair Display / Cormorant
   Garamond de Google Fonts para reforzar lo mismo en pantalla.
   ============================================================ */

:root {
  --bg: #0d0d0d;
  --bg-alt: #141414;
  --border: #2a2a2a;
  --gold: #c9a96e;
  --gold-soft: rgba(201, 169, 110, 0.35);
  --cream: #f0ebe0;
  --muted: #888074;
  --muted-2: #555;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--cream);
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 18px;
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }

h1, h2, h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 400;
  color: #fff;
}

a { color: inherit; text-decoration: none; }

.section {
  padding: 72px 24px;
  max-width: 1100px;
  margin: 0 auto;
}

.section-label {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 13px;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--gold);
  text-align: center;
  margin-bottom: 18px;
}

.center { text-align: center; }

.sep {
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-soft), transparent);
  margin: 32px auto;
}

/* ── botón / CTA ── */
.btn {
  display: inline-block;
  margin-top: 28px;
  padding: 14px 40px;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-family: 'Cormorant Garamond', serif;
  font-size: 15px;
  letter-spacing: 3px;
  text-transform: uppercase;
  transition: background 0.3s ease, color 0.3s ease;
}
.btn:hover { background: var(--gold); color: var(--bg); }

/* ── frase de cierre en inglés ── */
.closing {
  margin-top: 48px;
  text-align: center;
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 17px;
  color: var(--gold);
  position: relative;
}
.closing::before,
.closing::after {
  content: "";
  display: block;
  width: 32px;
  height: 1px;
  background: var(--gold-soft);
  margin: 14px auto;
}

/* nota interna: contenido pendiente de definir — se ve en la
   revisión, sacar antes de subir a Netlify */
.pending-note {
  display: inline-block;
  margin-top: 14px;
  padding: 4px 10px;
  border: 1px dashed var(--muted-2);
  color: var(--muted);
  font-size: 13px;
  letter-spacing: 1px;
}

/* ============================================================
   1. HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 24px;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.35) 45%, rgba(13,13,13,0.9) 100%),
              url('../img/hero.jpg') center 30% / cover no-repeat;
  z-index: 0;
}
.hero-content { position: relative; z-index: 1; width: 100%; max-width: 640px; }
.hero-logo { width: 92px; height: 92px; object-fit: contain; margin: 0 auto 20px; }
.hero-tagline {
  display: block;
  font-size: 13px;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 22px;
}
.hero-headline {
  font-size: 34px;
  line-height: 1.35;
}
.hero-subline {
  margin-top: 20px;
  font-size: 16px;
  letter-spacing: 1px;
  color: var(--muted);
}
.hero .closing { color: var(--gold); }

/* ============================================================
   2. NOSOTROS
   ============================================================ */
.nosotros { position: relative; overflow: hidden; }
.nosotros::before {
  content: "";
  position: absolute;
  inset: -20px;
  background: url('../img/nosotros.jpg') center / cover no-repeat;
  filter: blur(14px) brightness(0.32) saturate(0.9);
  transform: scale(1.1);
  z-index: 0;
}
.nosotros .section-inner {
  position: relative;
  z-index: 1;
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}
.nosotros-eje {
  font-size: 26px;
  margin-bottom: 26px;
}
.nosotros-parrafo {
  font-size: 19px;
  color: var(--cream);
}

/* ============================================================
   3. EXPERIENCIAS
   ============================================================ */
.experiencias-bloque { margin-bottom: 56px; }
.experiencias-bloque:last-of-type { margin-bottom: 0; }
.bloque-titulo {
  text-align: center;
  font-size: 24px;
  margin-bottom: 28px;
}
.tarjetas {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}
.tarjeta {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  padding: 18px 14px;
  text-align: center;
}
.tarjeta-dot {
  display: block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
  margin: 0 auto 10px;
}
.tarjeta-label {
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--muted);
}
.bebida-nota {
  text-align: center;
  margin-top: 36px;
  font-style: italic;
  color: var(--cream);
  font-size: 17px;
}

/* ============================================================
   4. GALERÍA  /  5. USTEDES
   ============================================================ */
.grid-fotos {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 6px;
}
.grid-fotos figure { aspect-ratio: 1 / 1; overflow: hidden; }
.grid-fotos img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.grid-fotos a:hover img { transform: scale(1.06); }

.grid-ustedes figure { border-radius: 6px; }

/* ============================================================
   6. RESERVAS
   ============================================================ */
.reservas { text-align: center; }
.reservas-texto {
  max-width: 560px;
  margin: 0 auto;
  font-size: 19px;
}
.reservas-datos {
  margin-top: 32px;
  font-size: 15px;
  letter-spacing: 1px;
  color: var(--muted);
}
.reservas-datos p + p { margin-top: 6px; }

/* ============================================================
   7. UBICACIÓN
   ============================================================ */
.ubicacion { text-align: center; }
.ubicacion-texto {
  max-width: 520px;
  margin: 0 auto;
  font-size: 18px;
  color: var(--cream);
}

/* ============================================================
   8. FOOTER
   ============================================================ */
footer {
  padding: 56px 24px 40px;
  text-align: center;
  border-top: 1px solid var(--border);
}
.footer-ig {
  font-size: 20px;
  letter-spacing: 3px;
  color: var(--gold);
}
.footer-tel {
  margin-top: 10px;
  font-size: 15px;
  color: var(--muted);
  letter-spacing: 1px;
}
.footer-tripadvisor {
  margin-top: 14px;
  font-size: 14px;
  letter-spacing: 1px;
}
.footer-tripadvisor a {
  color: var(--gold);
  border-bottom: 1px solid var(--gold-soft);
  padding-bottom: 2px;
  transition: color 0.3s ease;
}
.footer-tripadvisor a:hover { color: var(--cream); }
.footer-copy {
  margin-top: 28px;
  font-size: 12px;
  letter-spacing: 1px;
  color: var(--muted-2);
}

/* ============================================================
   MOBILE FIRST → ajustes desde tablet/desktop
   ============================================================ */
@media (min-width: 640px) {
  .tarjetas { grid-template-columns: repeat(3, 1fr); }
  .grid-fotos { grid-template-columns: repeat(3, 1fr); gap: 8px; }
}

@media (min-width: 768px) {
  .hero-headline { font-size: 44px; }
  .nosotros-eje { font-size: 30px; }
  .section { padding: 96px 24px; }
}

@media (min-width: 1024px) {
  .grid-fotos { grid-template-columns: repeat(4, 1fr); }
}
