@import url('./fonts/inter.css');
@import url('./fonts/parisienne.css');

:root {
  --accent: #d6b15f;
  --ink: #f3ebda;
  --white: #fdf8ed;
  --gray: #181d26;
  --muted: #b8ad97;
  --border: #313846;
  --max: 1200px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }
img { max-width: 100%; display: block; }

body {
  margin: 0;
  font-family: Inter, "Helvetica Neue", Arial, sans-serif;
  background: radial-gradient(circle at top right, #2a2e36 0%, #090b10 55%, #020306 100%);
  color: var(--ink);
}

a { color: inherit; text-decoration: none; }
.container { width: min(88%, var(--max)); margin: 0 auto; }

/* ── Header ─────────────────────────────────────────────── */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  background: rgba(6, 8, 12, 0.9);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(8px);
}
.nav-row {
  min-height: 70px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1rem;
}
.logo img { height: 48px; width: auto; max-width: 100%; display: block; }
.nav-links { display: flex; justify-content: center; gap: 1rem; }
.nav-links a {
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  color: var(--ink);
  transition: color 0.15s;
}
.nav-links a:hover { color: var(--accent); }
.right-controls { display: flex; align-items: center; gap: 0.7rem; justify-self: end; }
.lang-switcher { display: inline-flex; }
.lang-flag {
  border: 1px solid var(--border);
  border-radius: 5px;
  width: 26px; height: 18px;
  padding: 0; line-height: 0;
  background: #161c25;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.2s ease, border-color 0.2s ease;
}
.lang-flag img { width: 100%; height: 100%; object-fit: cover; display: block; }

main { padding-top: 70px; }

h1, h2, h3 { margin: 0 0 1rem; line-height: 1.15; }
h1 {
  font-size: clamp(2.2rem, 5.5vw, 4.5rem);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
h2 { font-size: clamp(1.35rem, 2.8vw, 1.85rem); font-weight: 700; letter-spacing: 0.01em; }
h3 { font-size: 0.95rem; font-weight: 700; letter-spacing: 0.01em; }

.eyebrow {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.65rem;
}
.muted { color: var(--muted); }

/* ── Buttons ────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  padding: 12px 24px;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  border: 1px solid transparent;
}
.btn-dark {
  background: linear-gradient(120deg, #f5e7ae 0%, #d7b769 45%, #ab7b33 100%);
  color: #15181f;
  border-color: #c6a155;
}
.btn-light {
  background: rgba(8, 11, 16, 0.58);
  color: var(--ink);
  border-color: rgba(214, 177, 95, 0.65);
}

/* ── Footer ─────────────────────────────────────────────── */
footer { background: var(--gray); border-top: 1px solid var(--border); }
.footer-grid { padding: 54px 0 36px; display: grid; grid-template-columns: 1.2fr 1fr 1fr; gap: 1rem; }
.footer-title { margin: 0 0 0.65rem; font-size: 0.88rem; font-weight: 800; text-transform: uppercase; }
.footer-links ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 0.55rem; }
.footer-links a { color: var(--accent); font-size: 0.88rem; }
.footer-links a:hover { opacity: 0.75; }
.footer-bottom { border-top: 1px solid var(--border); padding: 0.8rem 0; display: flex; align-items: center; justify-content: center; gap: 1.5rem; }
.footer-bottom span { color: var(--muted); font-size: 0.74rem; }
.footer-bottom a { color: var(--muted); font-size: 0.74rem; opacity: 0.55; transition: opacity 0.2s; }
.footer-bottom a:hover { opacity: 1; }

/* ── WhatsApp Float ─────────────────────────────────────── */
.whatsapp-float {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, #25d366 0%, #159e4d 100%);
  box-shadow: 0 10px 24px rgba(0,0,0,0.35);
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.whatsapp-float:hover { transform: scale(1.08); box-shadow: 0 14px 32px rgba(0,0,0,0.45); }
.whatsapp-float svg { width: 26px; height: 26px; fill: #fff; display: block; }

/* ── Burger ─────────────────────────────────────────────── */
.burger { display: none; flex-direction: column; justify-content: center; gap: 5px; width: 40px; height: 40px; background: rgba(255,255,255,0.06); border: 1px solid var(--border); border-radius: 8px; cursor: pointer; padding: 0 10px; flex-shrink: 0; }
.burger span { display: block; width: 100%; height: 2px; background: var(--ink); border-radius: 2px; transition: transform 0.25s ease, opacity 0.2s ease; transform-origin: center; }
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Mobile Nav ─────────────────────────────────────────── */
.mobile-nav { position: fixed; top: 70px; left: 0; right: 0; z-index: 18; background: rgba(6,8,12,0.97); backdrop-filter: blur(16px); border-bottom: 1px solid var(--border); opacity: 0; visibility: hidden; transform: translateY(-6px); transition: opacity 0.22s ease, visibility 0.22s, transform 0.22s ease; pointer-events: none; }
.mobile-nav.open { opacity: 1; visibility: visible; transform: translateY(0); pointer-events: auto; }
.mobile-nav-inner { display: flex; flex-direction: column; }
.mobile-nav a { display: flex; align-items: center; padding: 1rem 1.25rem; font-size: 0.82rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink); border-bottom: 1px solid rgba(49,56,70,0.5); transition: color 0.15s, background 0.15s; }
.mobile-nav a:last-child { border-bottom: none; }
.mobile-nav a:hover { color: var(--accent); background: rgba(214,177,95,0.05); }

/* ── Tablet (≤ 900px) ───────────────────────────────────── */
@media (max-width: 900px) {
  .nav-row { grid-template-columns: 1fr auto; min-height: 64px; gap: 0; }
  .nav-links { display: none; }
  .burger { display: flex; }
  main { padding-top: 64px; }
  .mobile-nav { top: 64px; }
}

/* ── Mobile (≤ 600px) ───────────────────────────────────── */
@media (max-width: 600px) {
  .nav-row { min-height: 60px; }
  main { padding-top: 60px; }
  .mobile-nav { top: 60px; }
  .logo img { height: 40px; width: auto; }
  .footer-grid { grid-template-columns: 1fr; padding: 36px 0 20px; }
  .footer-bottom { flex-direction: column; gap: 0.4rem; text-align: center; }
}
