/* ═══════════════════════════════════════════════════
   SO.ONPOLE — Global Stylesheet
   Palette: Dark #130810 · Maroon #4a0e2a · Pink #FF3D9A · Cream #FFF8F4
═══════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,700;1,400;1,500;1,700&family=DM+Sans:opsz,wght@9..40,300;9..40,400;9..40,500&display=swap');

:root {
  --pink:       #FF3D9A;
  --pink-soft:  #ff6db3;
  --pink-light: #FFD6EC;
  --pink-pale:  #FFF0F7;
  --dark:       #130810;
  --maroon:     #4a0e2a;
  --maroon-mid: #6b1a3e;
  --cream:      #FFF8F4;
  --white:      #ffffff;
  --text:       #1e0c18;
  --muted:      #7a4a62;
  --border:     rgba(255,61,154,0.12);
  --border-dark: rgba(255,255,255,0.08);
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--cream);
  color: var(--text);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ── TYPOGRAPHY ─────────────────────────────────── */
.serif { font-family: 'Playfair Display', serif; }

h1, h2, h3, h4 { font-family: 'Playfair Display', serif; font-weight: 400; line-height: 1.1; }

.section-label {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 18px;
  display: block;
}

.section-title {
  font-size: clamp(36px, 5.5vw, 64px);
  color: var(--dark);
  line-height: 1.05;
}

.section-title em { font-style: italic; color: var(--maroon); }
.section-title.light { color: #fff; }
.section-title.light em { color: var(--pink); }

/* ── LAYOUT ─────────────────────────────────────── */
.container { max-width: 1060px; margin: 0 auto; padding: 0 32px; }
section { padding: 100px 32px; }

/* ── BUTTONS ─────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  border-radius: 100px;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  letter-spacing: 0.2px;
}

.btn-primary {
  background: var(--pink);
  color: #fff;
  box-shadow: 0 0 32px rgba(255,61,154,0.35);
}
.btn-primary:hover {
  background: var(--pink-soft);
  transform: translateY(-2px);
  box-shadow: 0 0 48px rgba(255,61,154,0.55);
}

.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1.5px solid var(--border);
}
.btn-outline:hover {
  border-color: var(--pink);
  color: var(--pink);
}

.btn-outline-white {
  background: transparent;
  color: rgba(255,255,255,0.65);
  border: 1.5px solid var(--border-dark);
}
.btn-outline-white:hover {
  border-color: rgba(255,255,255,0.5);
  color: #fff;
}

.btn-ghost {
  background: transparent;
  color: var(--pink);
  padding: 15px 0;
  border-radius: 0;
  border-bottom: 1.5px solid var(--pink);
}
.btn-ghost:hover { gap: 16px; }

/* ── NAV ─────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  padding: 22px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.4s ease;
}

.nav.scrolled {
  background: rgba(19,8,16,0.96);
  backdrop-filter: blur(16px);
  padding: 14px 48px;
}

.nav.light-nav {
  padding: 22px 48px;
}

.nav.light-nav.scrolled {
  background: rgba(255,248,244,0.96);
  backdrop-filter: blur(16px);
  padding: 14px 48px;
}

.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-style: italic;
  color: #fff;
  text-decoration: none;
  letter-spacing: 0.5px;
  transition: color 0.3s;
}

.nav.light-nav .nav-logo { color: var(--dark); }
.nav.light-nav.scrolled .nav-logo { color: var(--dark); }

.nav-logo span { color: var(--pink); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}

.nav-links a {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  font-weight: 400;
  letter-spacing: 0.3px;
  transition: color 0.2s;
  position: relative;
}

.nav.light-nav .nav-links a { color: var(--muted); }
.nav.light-nav .nav-links a:hover { color: var(--dark); }

.nav-links a:hover { color: rgba(255,255,255,0.9); }

.nav-links a.active {
  color: #fff;
}
.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 1px;
  background: var(--pink);
}

.nav.light-nav .nav-links a.active { color: var(--dark); }

.nav-cta {
  background: var(--pink) !important;
  color: #fff !important;
  padding: 10px 22px;
  border-radius: 100px;
}
.nav-cta:hover { background: var(--pink-soft) !important; }
.nav-cta::after { display: none !important; }

/* ── STICKY WHATSAPP ─────────────────────────────── */
.wa-sticky {
  position: fixed;
  bottom: 28px;
  right: 28px;
  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);
  text-decoration: none;
  z-index: 300;
  transition: all 0.3s ease;
}
.wa-sticky:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37,211,102,0.6);
}
.wa-sticky svg { width: 28px; height: 28px; fill: #fff; }

/* ── FOOTER ─────────────────────────────────────── */
.footer {
  background: var(--dark);
  padding: 64px 48px 40px;
}

.footer-inner {
  max-width: 1060px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--border-dark);
}

.footer-brand .logo {
  font-family: 'Playfair Display', serif;
  font-size: 26px;
  font-style: italic;
  color: #fff;
  text-decoration: none;
  letter-spacing: 0.5px;
}
.footer-brand .logo span { color: var(--pink); }

.footer-brand p {
  margin-top: 14px;
  font-size: 13px;
  color: rgba(255,255,255,0.3);
  font-weight: 300;
  line-height: 1.7;
  max-width: 220px;
}

.footer-col h4 {
  font-family: 'DM Sans', sans-serif;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.25);
  margin-bottom: 20px;
}

.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  text-decoration: none;
  font-weight: 300;
  transition: color 0.2s;
}
.footer-col ul li a:hover { color: var(--pink); }

.footer-bottom {
  max-width: 1060px;
  margin: 28px auto 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  font-size: 12px;
  color: rgba(255,255,255,0.2);
  font-weight: 300;
}

/* ── PAGE HERO (inner pages) ──────────────────────── */
.page-hero {
  min-height: 55vh;
  background: var(--dark);
  display: flex;
  align-items: flex-end;
  padding: 120px 48px 80px;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 80% at 60% 110%, var(--maroon), transparent 65%);
  pointer-events: none;
}

.page-hero-content { position: relative; max-width: 1060px; margin: 0 auto; width: 100%; }

/* ── UTILITIES ───────────────────────────────────── */
.text-pink { color: var(--pink); }
.text-muted { color: var(--muted); }
.text-center { text-align: center; }
.mt-sm { margin-top: 16px; }
.mt-md { margin-top: 32px; }
.mt-lg { margin-top: 56px; }

/* ── ANIMATIONS ──────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 32px rgba(255,61,154,0.35); }
  50%       { box-shadow: 0 0 56px rgba(255,61,154,0.6); }
}

.anim-1 { animation: fadeUp 0.8s 0.0s ease both; }
.anim-2 { animation: fadeUp 0.8s 0.12s ease both; }
.anim-3 { animation: fadeUp 0.8s 0.24s ease both; }
.anim-4 { animation: fadeUp 0.8s 0.36s ease both; }

/* ── RESPONSIVE ──────────────────────────────────── */
@media (max-width: 900px) {
  .nav { padding: 18px 24px; }
  .nav.scrolled { padding: 12px 24px; }
  .nav.light-nav { padding: 18px 24px; }
  .nav.light-nav.scrolled { padding: 12px 24px; }
  .nav-links { display: none; }
  section { padding: 72px 20px; }
  .page-hero { padding: 100px 24px 64px; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 40px; }
  .footer { padding: 48px 24px 32px; }
}

@media (max-width: 560px) {
  .footer-inner { grid-template-columns: 1fr; }
}

/* ══════════════════════════════════════════════════
   NAV ADDITIONS — Hamburger + Dropdown
══════════════════════════════════════════════════ */

/* Hamburger button — hidden on desktop */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 36px; height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 200;
}
.nav-hamburger span {
  display: block;
  width: 22px; height: 1.5px;
  background: rgba(255,255,255,0.7);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.nav.light-nav .nav-hamburger span { background: var(--dark); }
.nav-hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Dropdown menu */
.nav-dropdown { position: relative; }
.nav-dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%);
  background: #1a0612;
  border: 1px solid rgba(255,61,154,0.15);
  border-radius: 4px;
  padding: 8px 0;
  min-width: 180px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
  z-index: 300;
}
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown.open .nav-dropdown-menu { display: block; }
.nav-dropdown-menu a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  transition: color 0.2s, background 0.2s;
}
.nav-dropdown-menu a:hover { color: #fff; background: rgba(255,61,154,0.08); }
.dd-badge {
  font-size: 9px; font-weight: 500;
  letter-spacing: 1.5px; text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  background: rgba(255,255,255,0.06);
  padding: 2px 8px; border-radius: 100px;
}

/* Light nav (cream/white background pages) */
.nav.light-nav {
  background: rgba(255,248,244,0.95);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.nav.light-nav.scrolled {
  background: rgba(255,248,244,0.98);
  box-shadow: 0 1px 20px rgba(74,14,42,0.08);
}
.nav.light-nav .nav-logo { color: var(--dark); }
.nav.light-nav.scrolled .nav-logo { color: var(--dark); }
.nav.light-nav .nav-links a { color: var(--muted); }
.nav.light-nav .nav-links a:hover { color: var(--dark); }
.nav.light-nav .nav-links a.active { color: var(--dark); }
.nav.light-nav .nav-hamburger span { background: var(--dark); }
.nav.light-nav .nav-dropdown-menu {
  background: #fff;
  border-color: var(--border);
}
.nav.light-nav .nav-dropdown-menu a { color: var(--muted); }
.nav.light-nav .nav-dropdown-menu a:hover { color: var(--dark); background: var(--pink-pale); }

/* Mobile nav */
@media (max-width: 900px) {
  .nav-hamburger { display: flex; }
  .nav-links {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(19,8,16,0.97);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 32px;
    z-index: 100;
  }
  .nav-links.open { display: flex; }
  .nav-links li { list-style: none; }
  .nav-links a { font-size: 20px; color: rgba(255,255,255,0.8); }
  .nav-links a.active { color: #fff; }
  .nav.light-nav .nav-links { background: rgba(255,248,244,0.99); }
  .nav.light-nav .nav-links a { color: var(--dark); }
  .nav-dropdown-menu {
    position: static;
    transform: none;
    background: transparent;
    border: none;
    box-shadow: none;
    padding: 0;
    text-align: center;
  }
  .nav-dropdown-menu a { justify-content: center; font-size: 16px; }
  .nav.light-nav .nav-dropdown-menu { background: transparent; }
}
