﻿:root {
  --bg: #f2faf5;
  --text: #1a3025;
  --muted: #5a8a6a;
  --line: rgba(90,138,106,0.2);
  --gold: #7aaa8a;
  --gold-strong: #a0c8b0;
  --shadow: 0 20px 60px rgba(90,138,106,0.12);
  --radius: 24px;
  --container: min(1180px, calc(100% - 32px));
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  color: var(--text);
  background: linear-gradient(180deg, #f2faf5 0%, #e8f4ec 100%);
  background-color: #f2faf5;
  background-attachment: scroll;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cpath d='M35,40 Q50,18 68,35 Q52,24 35,40Z' fill='%237aaa8a' opacity='0.13'/%3E%3Cpath d='M48,55 Q72,44 78,65 Q64,52 48,55Z' fill='%23a0c8b0' opacity='0.11'/%3E%3Cpath d='M25,60 Q10,75 26,88 Q20,74 25,60Z' fill='%237aaa8a' opacity='0.1'/%3E%3Cg transform='translate(60,50)' opacity='0.13'%3E%3Cellipse cx='0' cy='-9' rx='4.5' ry='9' fill='%23a0c8b0'/%3E%3Cellipse cx='0' cy='-9' rx='4.5' ry='9' fill='%23a0c8b0' transform='rotate(120)'/%3E%3Cellipse cx='0' cy='-9' rx='4.5' ry='9' fill='%23a0c8b0' transform='rotate(240)'/%3E%3Ccircle r='3.5' fill='%237aaa8a'/%3E%3C/g%3E%3Cpath d='M148,140 Q165,120 178,138 Q164,126 148,140Z' fill='%237aaa8a' opacity='0.11'/%3E%3Cpath d='M160,155 Q178,148 180,168 Q170,156 160,155Z' fill='%23a0c8b0' opacity='0.09'/%3E%3Cg transform='translate(155,130)' opacity='0.09'%3E%3Cellipse cx='0' cy='-6' rx='3' ry='6' fill='%23a0c8b0'/%3E%3Cellipse cx='0' cy='-6' rx='3' ry='6' fill='%23a0c8b0' transform='rotate(120)'/%3E%3Cellipse cx='0' cy='-6' rx='3' ry='6' fill='%23a0c8b0' transform='rotate(240)'/%3E%3Ccircle r='2.5' fill='%237aaa8a'/%3E%3C/g%3E%3Ccircle cx='175' cy='25' r='1.5' fill='%237aaa8a' opacity='0.09'/%3E%3Ccircle cx='18' cy='175' r='1.5' fill='%23a0c8b0' opacity='0.09'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 200px 200px;
  font-family: "Inter", system-ui, sans-serif;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; margin: 0 auto; }

#starfield { position: fixed; inset: 0; z-index: 10; pointer-events: none; opacity: 0; pointer-events: none; }
.hero, .section, .footer { position: relative; z-index: 1; }

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #edf7f0;
  background-size: cover;
  background-position: center;
  background-attachment: scroll;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.28) 0%,
    rgba(0,0,0,0.38) 40%,
    rgba(0,0,0,0.62) 100%
  );
  z-index: 1;
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(ellipse 60% 60% at 50% 50%,
      transparent 0%,
      transparent 30%,
      rgba(0,0,0,0.08) 100%
    ),
    radial-gradient(ellipse 30% 40% at 15% 20%,
      rgba(90,138,106,0.08) 0%,
      transparent 70%
    );
}


/* Stele animate */
.hero__stars-anim {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 2;
}

.star-anim {
  position: absolute;
  color: #f0e4b0;
  text-shadow: 0 0 5px rgba(245,228,150,0.95), 0 0 12px rgba(255,248,190,0.7), 0 0 24px rgba(255,255,255,0.5), 0 0 38px rgba(220,195,90,0.3);
  animation: twinkle ease-in-out infinite;
  font-size: 1rem;
}

@keyframes twinkle {
  0%, 100% { opacity: 0; transform: scale(0.5); }
  50% { opacity: 1; transform: scale(1.2); }
}

.hero__content {
  position: relative;
  z-index: 3;
  text-align: center;
  padding: clamp(24px, 5vw, 60px) clamp(20px, 8vw, 80px);
  max-width: 900px;
  width: 100%;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  font-size: 0.68rem;
  color: rgba(255,255,255,0.9);
  margin-bottom: 24px;
  font-weight: 200;
}

.eyebrow::before, .eyebrow::after { content: "★"; font-size: 0.7rem; opacity: 0.8; color: #c9b890; }

h1 {
  font-family: "Allura", cursive;
  text-transform: capitalize;
  font-size: clamp(4rem, 12vw, 9rem);
  font-weight: 400;
  line-height: 1.15;
  color: #fff;
  margin: 0 0 16px;
  text-shadow: 0 2px 12px rgba(0,0,0,0.8), 0 4px 40px rgba(0,0,0,0.5);
  letter-spacing: 0.02em;
}

.name-fata { color: #c8daca; text-shadow: 0 0 16px rgba(200,218,202,0.45); }
.name-baiat { color: #8ab49a; text-shadow: 0 0 16px rgba(138,180,154,0.45); }

h2 { font-family: "Cormorant Garamond", serif; font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 300; margin: 0 0 16px; line-height: 1.1; color: var(--text); }
h3 { font-family: "Cormorant Garamond", serif; font-size: clamp(1.3rem, 2.5vw, 1.9rem); font-weight: 400; margin-bottom: 8px; color: var(--gold); }

.hero__separator { width: 80px; height: 1px; background: linear-gradient(90deg, transparent, rgba(138,180,154,0.8), transparent); margin: 16px auto; }
.hero__date { font-size: clamp(0.85rem, 2vw, 1rem); color: rgba(255,255,255,0.9); letter-spacing: 0.25em; text-transform: uppercase; margin-bottom: 8px; font-weight: 200; }
.hero__location { font-size: clamp(0.8rem, 1.8vw, 0.95rem); color: rgba(255,255,255,0.75); letter-spacing: 0.15em; margin-bottom: 44px; font-weight: 200; }
.hero__actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

.btn { display: inline-flex; align-items: center; justify-content: center; min-height: 52px; padding: 0 32px; border-radius: 999px; font-size: 0.85rem; font-weight: 400; letter-spacing: 0.12em; border: 1px solid transparent; transition: transform 0.25s ease, box-shadow 0.25s ease; cursor: pointer; }
.btn:hover { transform: translateY(-2px); }
.btn--primary { background: linear-gradient(135deg, #1a3025, #2d5040); color: #fff; box-shadow: 0 8px 24px rgba(26,48,37,0.35); }
.btn--primary:hover { box-shadow: 0 12px 32px rgba(26,48,37,0.55); }
.btn--ghost { border-color: rgba(26,48,37,0.5); background: rgba(26,48,37,0.12); color: #fff; backdrop-filter: blur(10px); }
.btn--ghost:hover { background: rgba(26,48,37,0.20); }
.btn--whatsapp { background: linear-gradient(135deg, #25d366, #128c7e); box-shadow: 0 8px 24px rgba(37,211,102,0.35); }

.section { width: var(--container); margin: 0 auto; padding: 64px 0; }
.section__header { text-align: center; max-width: 780px; margin: 0 auto 48px; }
.section__tag { display: inline-flex; align-items: center; gap: 10px; letter-spacing: 0.28em; text-transform: uppercase; font-size: 0.7rem; color: var(--gold); margin-bottom: 12px; font-weight: 300; }
.section__tag::before, .section__tag::after { content: "★"; font-size: 0.65rem; opacity: 0.7; }
.section__divider { width: 60px; height: 1px; background: linear-gradient(90deg, transparent, var(--gold), transparent); margin: 16px auto 0; }

.glass-card {
  background: rgba(255,255,255,0.85);
  border: 1px solid rgba(90,138,106,0.15);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
  border-radius: var(--radius);
}

.story-card { max-width: 860px; margin: 0 auto; padding: clamp(28px, 4vw, 52px); text-align: center; }
.story-card__icon { font-size: 1.8rem; color: var(--gold); margin-bottom: 20px; opacity: 0.8; }
.story-card p, .detail-card p, .map-copy p, .rsvp-card p, .footer p, .footer small { font-size: clamp(1rem, 2vw, 1.1rem); line-height: 2; color: var(--muted); font-weight: 300; }

.details-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; }
.detail-card { padding: 36px 28px; min-height: 200px; text-align: center; transition: transform 0.3s ease, box-shadow 0.3s ease; }
.detail-card:hover { transform: translateY(-4px) rotate(0.5deg); box-shadow: 0 24px 64px rgba(122,170,138,0.18); }
.detail-card__icon { font-size: 1.8rem; margin-bottom: 12px; }
.detail-card h3 { font-size: 0.75rem; color: var(--gold); margin-bottom: 12px; letter-spacing: 0.2em; text-transform: uppercase; font-family: "Inter", sans-serif; font-weight: 400; }

.accordion-gallery { display: flex; gap: 10px; min-height: 500px; }
.accordion-item { position: relative; overflow: hidden; border-radius: 24px; flex: 1 1 0; border: 1px solid rgba(90,138,106,0.15); transition: flex 0.55s cubic-bezier(0.4,0,0.2,1), box-shadow 0.35s ease; cursor: pointer; }
.accordion-item:hover, .accordion-item.active { flex: 3.5 1 0; box-shadow: 0 16px 48px rgba(122,170,138,0.22); }
.accordion-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; filter: brightness(0.85) saturate(0.9); }
.accordion-item:hover img, .accordion-item.active img { transform: scale(1.04); filter: brightness(1) saturate(1.1); }
.accordion-item__overlay { position: absolute; inset: 0; background: linear-gradient(180deg, transparent 40%, rgba(242,250,245,0.85) 100%); }
.accordion-item__content { position: absolute; left: 20px; right: 20px; bottom: 22px; color: var(--text); }
.accordion-item__content h3 { font-size: clamp(1.2rem, 2.5vw, 1.8rem); margin-bottom: 4px; color: var(--text); }
.accordion-item__content p { margin: 0; color: var(--muted); font-size: 0.85rem; line-height: 1.5; }

.map-card { display: grid; grid-template-columns: 0.9fr 1.3fr; gap: 24px; align-items: stretch; padding: clamp(24px, 3vw, 44px); }
.map-copy { display: flex; flex-direction: column; justify-content: center; gap: 16px; }
.map-copy__icon { font-size: 2rem; }
.map-frame-wrap { min-height: 360px; overflow: hidden; border-radius: 16px; border: 1px solid var(--line); }
#map-frame, #map-biserica-frame { width: 100%; height: 100%; min-height: 360px; border: 0; filter: none; }

.rsvp-card { text-align: center; max-width: 680px; margin: 0 auto; padding: clamp(36px, 5vw, 64px); }
.rsvp-card__decoration { font-size: 2.5rem; margin-bottom: 20px; }

.footer { padding: 32px 16px 56px; }
.footer__inner { width: var(--container); margin: 0 auto; padding: 32px; border-top: 1px solid var(--line); text-align: center; }
.footer__decoration { color: var(--gold); font-size: 0.8rem; letter-spacing: 0.5em; margin-bottom: 16px; opacity: 0.7; }

.countdown-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; max-width: 600px; margin: 0 auto; padding: clamp(28px, 4vw, 48px); text-align: center; }
.countdown-item { display: flex; flex-direction: column; align-items: center; gap: 8px; }
.countdown-number { font-family: "Cormorant Garamond", serif; font-size: clamp(3rem, 8vw, 5rem); font-weight: 300; color: var(--gold); line-height: 1; }
.countdown-label { font-size: 0.7rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--muted); font-weight: 300; }

.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.9s ease, transform 0.9s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 980px) {
  .details-grid, .map-card { grid-template-columns: 1fr; }
  .accordion-gallery { flex-direction: column; min-height: unset; }
  .accordion-item, .accordion-item:hover, .accordion-item.active { min-height: 320px; flex: unset; }
}

.hero__actions-mobile { display: none; }

@media (max-width: 640px) {
  .section { padding: 40px 0; }
  h1 { font-size: clamp(2.8rem, 13vw, 4.5rem); }
  h2 { font-size: clamp(1.8rem, 9vw, 3rem); }
  .hero { min-height: var(--hero-mobile-height, 75vw); width: 100%; padding: 0; align-items: center; }
  .hero__content { padding: 32px; width: 100%; }
  .hero__actions { display: none; }
  .hero__actions-mobile { display: flex; flex-direction: column; align-items: center; gap: 12px; padding: 24px 32px 32px; background: rgba(242,250,245,0.95); }
  .hero__actions-mobile .btn { width: 100%; max-width: 280px; }
  .btn { width: 100%; max-width: 280px; }
  .countdown-grid { gap: 12px; }
}
/* SVG icon styles */
.detail-card__icon, .map-copy__icon, .rsvp-card__decoration, .rsvp-icon { color: var(--gold); }
.detail-card__icon svg, .story-card__icon svg, .story-icon svg, .map-copy__icon svg, .rsvp-card__decoration svg, .rsvp-icon svg { display: block; margin: 0 auto; }


/* ═══════════════════════════════════════
   SPLASH — ZOOM IN
═══════════════════════════════════════ */
body.spl-lock { overflow: hidden; }
#spl {
  position: fixed; inset: 0; z-index: 1000;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  background: linear-gradient(135deg, #f2faf5 0%, #e0f2e8 100%);
  cursor: pointer;
  transition: opacity 0.6s ease;
}
#spl.spl-out { opacity: 0; pointer-events: none; }
#spl #spl-canvas {
  position: absolute; inset: 0; width: 100%; height: 100%;
  pointer-events: none; z-index: 0;
}
.spl3-zoom-bg {
  position: absolute; inset: 0; z-index: 1;
  background: radial-gradient(ellipse 70% 70% at 50% 50%, rgba(122,170,138,0.14) 0%, transparent 70%);
  animation: spl3-pulse 4s ease-in-out infinite;
}
@keyframes spl3-pulse {
  0%,100% { transform: scale(1);    opacity: 0.6; }
  50%      { transform: scale(1.15); opacity: 1; }
}
.spl3-zoom-card {
  position: relative; z-index: 2;
  text-align: center; padding: 60px 50px;
  max-width: 420px; width: 88%;
  background: rgba(255,255,255,0.82);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(122,170,138,0.28);
  border-radius: 24px;
  box-shadow: 0 8px 40px rgba(122,170,138,0.18);
  animation: spl3-zoom-in 1200ms cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
@keyframes spl3-zoom-in {
  0%   { transform: scale(0.1); opacity: 0; }
  60%  { transform: scale(1.05); opacity: 1; }
  100% { transform: scale(1);   opacity: 1; }
}
#spl.spl-opening .spl3-zoom-card {
  animation: spl3-zoom-out 1100ms cubic-bezier(0.4, 0, 1, 1) forwards !important;
}
@keyframes spl3-zoom-out {
  0%   { transform: scale(1);   opacity: 1; }
  30%  { transform: scale(1.1); opacity: 1; }
  100% { transform: scale(4);   opacity: 0; }
}
.spl3-zoom-gem {
  font-size: 26px; color: var(--gold, #7aaa8a);
  margin-bottom: 18px; letter-spacing: 6px;
  animation: spl3-gem-spin 7s linear infinite;
}
@keyframes spl3-gem-spin {
  to { transform: rotate(360deg); }
}
.spl3-zoom-name {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.6rem, 5vw, 2.8rem);
  font-weight: 400; letter-spacing: 3px;
  color: var(--text, #1a3025);
  margin-bottom: 14px;
}
.spl3-zoom-rule {
  width: 60px; height: 1px;
  background: var(--gold, #7aaa8a);
  margin: 0 auto 12px;
}
.spl3-zoom-date {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem; letter-spacing: 3px;
  text-transform: uppercase; color: var(--gold, #7aaa8a);
  margin-bottom: 28px;
}
.spl3-zoom-hint {
  font-size: 0.72rem; letter-spacing: 2px;
  color: rgba(26,48,37,0.5); margin: 0;
  animation: spl3-hint-fade 2.5s 1.8s ease-in-out infinite alternate;
}
@keyframes spl3-hint-fade {
  0%   { opacity: 0.35; }
  100% { opacity: 0.85; }
}
#spl.spl-opening .spl3-zoom-hint { opacity: 0 !important; }


/* ═══════════════════════════════════════════
   NAȘII
═══════════════════════════════════════════ */
.nasi-wrapper { text-align: center; padding: clamp(20px, 3vw, 40px) 0 clamp(32px, 4vw, 56px); }
.nasi-eyebrow { font-family: 'Cormorant Garamond', serif; font-size: clamp(1.1rem, 2.5vw, 1.4rem); font-style: italic; font-weight: 300; color: var(--muted); letter-spacing: 0.06em; margin-bottom: 36px; }
.nasi-pair { display: flex; align-items: center; justify-content: center; gap: clamp(20px, 5vw, 64px); flex-wrap: wrap; }
.nasi-person { display: flex; flex-direction: column; align-items: center; gap: 8px; }
.nasi-role { font-size: 0.72rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold); font-weight: 400; }
.nasi-name { font-family: 'Allura', cursive; font-size: clamp(2rem, 5vw, 3.2rem); color: var(--text); line-height: 1.1; }
.nasi-separator { opacity: 0.6; flex-shrink: 0; }
.rsvp-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-top: 28px; }
.btn--rsvp-yes { background: linear-gradient(135deg, #4a9b6f, #62c48f); color: #fff; box-shadow: 0 8px 24px rgba(74,155,111,0.35); min-height: 52px; padding: 0 32px; border-radius: 999px; font-size: 0.95rem; font-weight: 500; letter-spacing: 0.08em; display: inline-flex; align-items: center; gap: 10px; transition: transform 0.25s ease, box-shadow 0.25s ease; cursor: pointer; text-decoration: none; }
.btn--rsvp-yes:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(74,155,111,0.5); }
.btn--rsvp-no { background:#c0392b; color:#fff; border:none; min-height: 52px; padding: 0 32px; border-radius: 999px; font-size: 0.95rem; font-weight: 400; letter-spacing: 0.08em; display: inline-flex; align-items: center; gap: 10px; transition: transform 0.25s ease, background 0.25s ease; cursor: pointer; text-decoration: none; }
.btn--rsvp-no:hover { transform: translateY(-2px); background:#a93226; }
.rsvp-icon { font-size: 1.1em; font-weight: 600; }
@media (max-width: 480px) { .rsvp-buttons { flex-direction: column; align-items: center; } .btn--rsvp-yes, .btn--rsvp-no { width: 100%; max-width: 280px; justify-content: center; } }

/* ── POEM INVITATIE ── */
.section-poem {
  padding: 64px 20px 48px;
  text-align: center;
}
.poem-container {
  max-width: 580px;
  margin: 0 auto;
}
.poem-ornament-top, .poem-ornament-bot {
  color: var(--gold);
  font-size: 13px;
  letter-spacing: 10px;
  margin: 0 0 24px;
}
.poem-ornament-bot { margin: 24px 0 0; }
.poem-names {
  font-family: 'Allura', cursive;
  font-size: clamp(38px, 7vw, 58px);
  color: var(--text);
  line-height: 1.2;
  margin: 0;
}
.poem-nasi {
  font-size: clamp(20px, 3.5vw, 28px);
  color: var(--muted);
}
.poem-connector {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--muted);
  margin: 14px 0 8px;
}
.poem-divider-small {
  width: 40px;
  height: 1px;
  background: var(--gold);
  margin: 24px auto;
  opacity: 0.5;
}
.poem-body {
  font-family: 'Allura', cursive;
  font-size: clamp(24px, 4vw, 34px);
  color: var(--text);
  line-height: 1.9;
  margin: 0;
}
.poem-body--italic {
  font-style: italic;
  color: var(--gold-strong);
}
.poem-child {
  font-family: 'Allura', cursive;
  font-size: clamp(30px, 5vw, 42px);
  color: var(--gold-strong);
  margin: 4px 0 0;
}

/* ── SECTION DIVIDERS ── */
.section-divider {
  display: flex;
  align-items: center;
  gap: 16px;
  max-width: 480px;
  margin: 0 auto;
  padding: 0 32px 40px;
}
.sd-line {
  flex: 1;
  height: 1px;
  background: var(--line);
}
.sd-ornament {
  color: var(--gold);
  font-size: 12px;
  letter-spacing: 8px;
  white-space: nowrap;
}

.map-meniu{border-top:1px solid rgba(255,255,255,0.15);padding-top:12px;margin-top:8px;margin-bottom:12px}
.map-meniu-label{font-size:.88rem;letter-spacing:.22em;text-transform:uppercase;color:var(--gold);display:block;margin-bottom:4px}
.map-meniu p{font-size:.95rem;font-weight:300;margin:0}

/* safe-area footer — iOS Safari toolbar + home indicator */
.footer, footer { padding-bottom: calc(40px + env(safe-area-inset-bottom, 0px)); }
@media (max-width: 768px) {
  .footer, footer { padding-bottom: calc(200px + env(safe-area-inset-bottom, 0px)) !important; }
}
/* -- Buton Confirma prezenta -- */
.hero-rsvp-wrap {
  text-align: center;
  padding: 48px 24px 20px;
  position: relative;
  z-index: 1;
}
.hero-rsvp-btn {
  display: inline-block;
  padding: 14px 52px;
  border: 1px solid rgba(122,170,138,0.4);
  color: #fff;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
  letter-spacing: 2.5px;
  border-radius: 40px;
  background: rgba(122,170,138,0.72);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  text-decoration: none;
  text-transform: uppercase;
  transition: box-shadow 0.3s ease, transform 0.25s ease;
}
.hero-rsvp-btn:hover {
  box-shadow: 0 12px 32px rgba(0,0,0,0.22);
  transform: translateY(-2px);
}

/* -- Luxury Nav Banner -- */
#site-nav { display: none !important; }
#map-meniu-wrap, #petrecere-meniu-wrap { display: none !important; }

.lux-nav {
  width: 100%;
  background: rgba(122,170,138,0.72);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: none;
  border-bottom: 1px solid rgba(122,170,138,0.4);
  position: sticky;
  top: 0;
  z-index: 200;
  margin-top: -38px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  box-shadow: 0 4px 24px rgba(0,0,0,0.18);
}
.lux-nav::-webkit-scrollbar { display: none; }
.lux-nav__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  min-height: 76px;
  white-space: nowrap;
}
.lux-nav__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  padding: 14px 20px;
  text-decoration: none;
  color: rgba(255,255,255,0.82);
  transition: color 0.3s ease;
  font-family: 'Inter', sans-serif;
  font-size: 0.56rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
}
.lux-nav__item svg {
  width: 22px;
  height: 22px;
  stroke: currentColor;
  transition: transform 0.25s ease;
}
.lux-nav__item:hover,
.lux-nav__item.lux-active { color: rgba(255,255,255,1); }
.lux-nav__item:hover svg { transform: translateY(-2px); }
.lux-nav__sep {
  width: 1px;
  height: 20px;
  background: rgba(255,255,255,0.32);
  flex-shrink: 0;
  align-self: center;
  padding: 0;
  pointer-events: none;
  user-select: none;
}
@media (max-width: 480px) {
  .lux-nav__item { padding: 12px 13px; font-size: 0.52rem; letter-spacing: 1.5px; }
  .lux-nav__item svg { width: 20px; height: 20px; }
}

/* -- Buton Confirma prezenta -- */
.hero-rsvp-wrap { text-align: center; padding: 48px 24px 20px; position: relative; z-index: 1; }
.hero-rsvp-btn {
  display: inline-block;
  padding: 14px 52px;
  border: 1px solid rgba(122,170,138,0.4);
  color: #fff;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
  letter-spacing: 2.5px;
  border-radius: 40px;
  background: rgba(122,170,138,0.72);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  text-decoration: none;
  text-transform: uppercase;
  transition: box-shadow 0.3s ease, transform 0.25s ease;
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}
.hero-rsvp-btn:hover {
  box-shadow: 0 12px 32px rgba(0,0,0,0.22);
  transform: translateY(-2px);
}

.nasi-ornament {
  width: 100%;
  max-width: 360px;
  height: auto;
  display: block;
}


/* -- Decor miri & nasi -- */
.decor-miri-wrap,
.decor-nasi-wrap {
  display: flex;
  justify-content: center;
  color: var(--gold);
}
.decor-miri-wrap { padding: 6px 0 0; transform: none; }
.decor-nasi-wrap { padding: 20px 16px 8px; }
.decor-miri-wrap svg,
.decor-nasi-wrap svg {
  width: 100%;
  height: auto;
  display: block;
}
.decor-miri-wrap svg { max-width: 300px; transform: translateX(-10%); }
.decor-nasi-wrap svg { max-width: 150px; }

/* -- Section tag & badge icons -- */
.tag-icon { width: 14px; height: 14px; flex-shrink: 0; }
.section__tag { gap: 6px; }
.section__tag::before, .section__tag::after { content: ''; display: none; }
.location-badge::before { content: ''; display: none; }

#story { padding-bottom: 24px; }

/* Logo footer responsive */
.ppv-footer-logo { height: 44px !important; }
@media (max-width: 600px) { .ppv-footer-logo { height: 64px !important; } }
