/* ═══════════════════════════════════════════════
   Día del Amigo · Design Suites Buenos Aires
   amigo.css
═══════════════════════════════════════════════ */

/* ── VARIABLES ───────────────────────────────── */
:root {
  --black:      #09080a;
  --white:      #f0ece8;
  --orange:     #FE730E;
  --orange-lt:  #ff8f3e;
  --gold:       #c9a96e;
  --gold-dim:   #7a5e38;
  --warm:       #1a1410;
  --panel:      #121010;
  --deep:       #0e0c0b;
  --muted:      #6b5a48;
  --frost:      rgba(201,169,110,0.1);
}

/* ── RESET ───────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--black);
  color: var(--white);
  font-family: 'DM Sans', sans-serif;
  overflow-x: hidden;
}

/* ── HERO ─────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  grid-template-rows: auto 1fr auto;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('img/hero_desktop.jpg');
  background-size: cover;
  background-position: center 30%;
  filter: brightness(0.9) saturate(0.9);
  transform: scale(1.05);
  animation: zoomOut 14s ease forwards;
}

@media (max-width: 768px) {
  .hero-bg {
    background-image: url('img/hero_mobile.jpg');
    background-position: center center;
  }
}

.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(9,8,10,0.55) 0%,
    rgba(9,8,10,0.1) 40%,
    rgba(9,8,10,0.85) 100%
  );
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.06'/%3E%3C/svg%3E");
  opacity: 0.25;
  mix-blend-mode: overlay;
}

@keyframes zoomOut {
  from { transform: scale(1.08); }
  to   { transform: scale(1.00); }
}

/* ── NAV ─────────────────────────────────────── */
nav {
  position: relative;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 48px;
  animation: fadeDown 0.8s ease both;
}

@keyframes fadeDown {
  from { opacity: 0; transform: translateY(-16px); }
  to   { opacity: 1; transform: translateY(0); }
}

.nav-logo img { height: 80px; filter: none; }

.nav-cta {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--orange);
  padding: 10px 24px;
  text-decoration: none;
  transition: background 0.2s;
}
.nav-cta:hover { background: var(--orange-lt); }

/* ── HERO CENTER ─────────────────────────────── */
.hero-center {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  text-align: left;
  padding: 0 24px 0 48px;
  gap: 0;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(201,169,110,0.35);
  background: rgba(9,8,10,0.55);
  padding: 8px 22px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(16px, 2.5vw, 28px);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
  animation: fadeUp 0.7s 0.3s ease both;
}
.pill-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--orange); flex-shrink: 0; }

.event-tag {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 10px;
  animation: fadeUp 0.7s 0.4s ease both;
}

.hero-headline {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(48px, 8vw, 108px);
  line-height: 0.85;
  letter-spacing: -0.01em;
  color: var(--white);
  animation: fadeUp 0.8s 0.5s ease both;
}

.hero-headline em {
  font-style: normal;
  color: var(--orange);
  display: block;
}

.hero-artist {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(26px, 4.5vw, 48px);
  font-style: italic;
  font-weight: 300;
  color: var(--gold);
  margin-top: 16px;
  letter-spacing: 0.06em;
  animation: fadeUp 0.7s 0.6s ease both;
}

.hero-includes {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: flex-start;
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(16px, 2.5vw, 24px);
  font-weight: 300;
  color: rgba(240,236,232,0.85);
  margin-top: 20px;
  animation: fadeUp 0.7s 0.7s ease both;
}
.hero-includes .sep { color: var(--orange); }

.btn-primary {
  background: var(--orange);
  color: var(--white);
  padding: 18px 48px;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
  margin-top: 32px;
  animation: fadeUp 0.7s 0.85s ease both;
  display: inline-block;
}
.btn-primary:hover { background: #d85e0a; transform: translateY(-1px); }

.hero-location {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--orange);
  margin-top: 20px;
  animation: fadeUp 0.7s 0.9s ease both;
}
.hero-location svg { width: 14px; height: 14px; flex-shrink: 0; stroke: var(--orange); }

/* ── KEYFRAMES ───────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── SCROLL HINT ─────────────────────────────── */
.scroll-hint {
  position: relative;
  z-index: 10;
  padding: 28px 0 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  animation: fadeUp 1s 1.2s ease both;
}
.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, transparent, var(--gold));
  animation: scrollPulse 2s infinite;
}
@keyframes scrollPulse {
  0%,100% { opacity: 0.4; }
  50%     { opacity: 1; }
}
.scroll-hint span {
  font-size: 9px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ── EVENT BAR ───────────────────────────────── */
.event-bar {
  background: var(--orange);
  padding: 14px 24px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(14px, 2.5vw, 20px);
  letter-spacing: 0.2em;
  color: var(--white);
  overflow: hidden;
}
.marquee-track {
  display: inline-flex;
  gap: 60px;
  white-space: nowrap;
  animation: marquee 24s linear infinite;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── DETAILS STRIP ───────────────────────────── */
.details-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  border-bottom: 1px solid rgba(201,169,110,0.08);
  background: var(--deep);
}

.detail-item {
  padding: 40px 36px;
  border-right: 1px solid rgba(201,169,110,0.08);
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.detail-item:last-child { border-right: none; }

.detail-icon {
  width: 44px; height: 44px;
  color: var(--gold);
  margin-bottom: 4px;
}
.detail-icon svg { width: 100%; height: 100%; }

.detail-label {
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(201,169,110,0.75);
}
.detail-val {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px;
  letter-spacing: 0.1em;
  color: rgba(240,236,232,0.9);
}

/* ── SECTION LABELS / TITLES ──────────────────── */
.section-label {
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  text-align: center;
  margin-bottom: 16px;
}

.section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(40px, 6vw, 80px);
  text-align: center;
  letter-spacing: 0.04em;
  color: var(--white);
  margin-bottom: 16px;
}

.section-subtitle {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(16px, 2vw, 22px);
  font-style: italic;
  color: rgba(201,169,110,0.6);
  text-align: center;
  margin-bottom: 56px;
}

/* ── EXPERIENCE ──────────────────────────────── */
.exp-section {
  padding: 100px 48px;
  background: var(--black);
  position: relative;
  overflow: hidden;
}

.exp-section::before {
  content: 'AMIGOS';
  position: absolute;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 30vw;
  color: rgba(201,169,110,0.03);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  white-space: nowrap;
}

.exp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(201,169,110,0.08);
  max-width: 960px;
  margin: 0 auto;
  border: 1px solid rgba(201,169,110,0.08);
}

.exp-grid-4 {
  grid-template-columns: repeat(4, 1fr);
  max-width: 1120px;
}

.exp-card {
  background: var(--panel);
  padding: 52px 36px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
  transition: background 0.25s;
}
.exp-card:hover { background: #18120e; }

.exp-icon {
  width: 52px; height: 52px;
  color: var(--gold);
  margin-bottom: 4px;
}
.exp-icon svg { width: 100%; height: 100%; }

.exp-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 28px;
  letter-spacing: 0.12em;
  color: var(--white);
}
.exp-desc {
  font-size: 13px;
  font-weight: 300;
  color: rgba(201,169,110,0.55);
  line-height: 1.65;
  letter-spacing: 0.03em;
}

/* ── GALLERY ─────────────────────────────────── */
.gallery-section { padding: 80px 0 0; background: var(--warm); }
.gallery-section .section-label,
.gallery-section .section-title { color: var(--white); }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 300px 260px;
  gap: 3px;
  margin-top: 40px;
}
.g1 { grid-column: 1 / 3; grid-row: 1; }
.g2 { grid-column: 3;     grid-row: 1; }
.g3 { grid-column: 1;     grid-row: 2; }
.g4 { grid-column: 2;     grid-row: 2; }
.g5 { grid-column: 3;     grid-row: 2; }

.gallery-grid > div { overflow: hidden; }
.gallery-grid img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}
.gallery-grid img:hover { transform: scale(1.04); }

/* ── LIGHTBOX ────────────────────────────────── */
.lb-trigger { cursor: pointer; }
.lb-overlay {
  position: fixed;
  inset: 0; z-index: 1000;
  background: rgba(4,3,4,0.97);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  padding: 24px;
}
.lb-overlay.lb-active { opacity: 1; pointer-events: all; }
.lb-img-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: calc(100vw - 180px);
  max-height: calc(100vh - 80px);
}
.lb-img-wrap img {
  max-width: 100%;
  max-height: calc(100vh - 80px);
  object-fit: contain;
  display: block;
  transition: opacity 0.15s ease;
  box-shadow: 0 32px 80px rgba(0,0,0,0.9);
}
.lb-counter {
  position: absolute;
  bottom: -32px; left: 50%;
  transform: translateX(-50%);
  font-size: 11px;
  letter-spacing: 0.25em;
  color: var(--muted);
  white-space: nowrap;
}
.lb-close {
  position: fixed;
  top: 24px; right: 32px;
  background: none;
  border: 1px solid rgba(201,169,110,0.2);
  color: var(--white);
  font-size: 16px;
  width: 40px; height: 40px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.2s, color 0.2s;
  z-index: 10;
}
.lb-close:hover { border-color: var(--gold); color: var(--gold); }
.lb-arrow {
  background: none;
  border: 1px solid rgba(201,169,110,0.2);
  color: var(--white);
  font-size: 22px;
  width: 52px; height: 52px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: border-color 0.2s, color 0.2s, transform 0.15s;
}
.lb-arrow:hover { border-color: var(--gold); color: var(--gold); transform: scale(1.08); }

/* ── CTA FINAL ───────────────────────────────── */
.cta-final {
  position: relative;
  min-height: 480px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 24px;
  overflow: hidden;
  background-image: url('img/cta.jpg');
  background-size: cover;
  background-position: center;
}
.cta-final::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(9,8,10,0.75);
  z-index: 0;
}
.cta-final > * { position: relative; z-index: 2; }

.cta-headline {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(48px, 9vw, 110px);
  line-height: 0.92;
  margin-bottom: 20px;
  color: var(--white);
}
.cta-headline span { color: var(--orange); }

.cta-sub {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(16px, 2.5vw, 24px);
  font-style: italic;
  color: rgba(201,169,110,0.7);
  margin-bottom: 8px;
}

.cta-valid {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 40px;
}

.cta-phone {
  font-size: 13px;
  letter-spacing: 0.18em;
  color: var(--gold);
  margin-top: 24px;
}
.cta-phone a { color: var(--gold); text-decoration: none; font-weight: 500; }
.cta-phone a:hover { color: var(--white); }

/* ── FOOTER ──────────────────────────────────── */
footer {
  background: #050404;
  padding: 32px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  border-top: 1px solid rgba(201,169,110,0.06);
}
footer img { height: 44px; filter: brightness(0) invert(0.45); }

.footer-right {
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.08em;
  text-align: right;
  line-height: 1.7;
}

.footer-mfc img {
  height: 36px;
  filter: none;
  opacity: 0.4;
  transition: opacity 0.2s;
}
.footer-mfc:hover img { opacity: 0.85; }

.footer-mfc-bar {
  background: #050404;
  padding: 16px 48px 90px;
  display: flex;
  justify-content: center;
  border-top: 1px solid rgba(201,169,110,0.04);
}

/* ── WHATSAPP ────────────────────────────────── */
.wa-btn {
  position: fixed;
  bottom: 28px; right: 28px;
  z-index: 999;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: transform 0.2s, box-shadow 0.2s;
}
.wa-btn:hover { transform: scale(1.1); box-shadow: 0 6px 28px rgba(37,211,102,0.6); }
.wa-btn svg { width: 30px; height: 30px; }

/* ── RESPONSIVE ──────────────────────────────── */
@media (max-width: 768px) {
  nav { padding: 20px 24px; }

  .hero-center { align-items: center; text-align: center; padding: 0 24px; }
  .hero-includes { justify-content: center; }

  .event-tag { font-size: 16px; letter-spacing: 0.28em; }
  .hero-artist { font-size: clamp(28px, 7vw, 40px); }

  .exp-grid, .exp-grid-4 { grid-template-columns: 1fr; }
  .exp-section { padding: 60px 24px; }
  .exp-desc { font-size: 16px; }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 220px 180px 180px;
  }
  .g1 { grid-column: 1 / 3; grid-row: 1; }
  .g2 { grid-column: 1;     grid-row: 2; }
  .g3 { grid-column: 2;     grid-row: 2; }
  .g4 { grid-column: 1;     grid-row: 3; }
  .g5 { grid-column: 2;     grid-row: 3; }

  .details-strip { grid-template-columns: repeat(2, 1fr); }
  .detail-item { border-right: none; border-bottom: 1px solid rgba(201,169,110,0.08); }

  footer { flex-direction: column; align-items: flex-start; }
  .footer-right { text-align: left; }
  .footer-right { font-size: 13px; }

  .hero-headline { font-size: clamp(44px, 12vw, 72px); }
}

@media (max-width: 600px) {
  .lb-img-wrap { max-width: 100vw; }
  .lb-arrow { width: 40px; height: 40px; font-size: 18px; }
  .lb-overlay { gap: 12px; padding: 16px; }
}
