﻿:root {
  --bg: #fdf6f0;
  --text: #3d2810;
  --muted: #8a7260;
  --line: rgba(196,168,130,0.22);
  --gold: #c4a882;
  --gold-strong: #d8bc98;
  --shadow: 0 20px 60px rgba(196,168,130,0.1);
  --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, #fdf6f0 0%, #faf0e6 100%);
  background-color: #fdf6f0;
  background-attachment: scroll;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cg transform='translate(50,55)' opacity='0.09'%3E%3Cellipse cx='0' cy='-11' rx='5' ry='11' fill='%23c4a882'/%3E%3Cellipse cx='0' cy='-11' rx='5' ry='11' fill='%23c4a882' transform='rotate(72)'/%3E%3Cellipse cx='0' cy='-11' rx='5' ry='11' fill='%23c4a882' transform='rotate(144)'/%3E%3Cellipse cx='0' cy='-11' rx='5' ry='11' fill='%23c4a882' transform='rotate(216)'/%3E%3Cellipse cx='0' cy='-11' rx='5' ry='11' fill='%23c4a882' transform='rotate(288)'/%3E%3Ccircle r='5' fill='%23d8bc98'/%3E%3C/g%3E%3Cpath d='M70,42 Q90,28 96,46 Q82,36 70,42Z' fill='%23c4a882' opacity='0.07'/%3E%3Cpath d='M40,72 Q28,90 46,94 Q36,80 40,72Z' fill='%23d8bc98' opacity='0.07'/%3E%3Cg transform='translate(155,148)' opacity='0.08'%3E%3Cellipse cx='0' cy='-8' rx='4' ry='8' fill='%23d8bc98'/%3E%3Cellipse cx='0' cy='-8' rx='4' ry='8' fill='%23d8bc98' transform='rotate(72)'/%3E%3Cellipse cx='0' cy='-8' rx='4' ry='8' fill='%23d8bc98' transform='rotate(144)'/%3E%3Cellipse cx='0' cy='-8' rx='4' ry='8' fill='%23d8bc98' transform='rotate(216)'/%3E%3Cellipse cx='0' cy='-8' rx='4' ry='8' fill='%23d8bc98' transform='rotate(288)'/%3E%3Ccircle r='3.5' fill='%23c4a882'/%3E%3C/g%3E%3Ccircle cx='165' cy='28' r='2' fill='%23c4a882' opacity='0.08'/%3E%3Ccircle cx='120' cy='175' r='1.5' fill='%23d8bc98' opacity='0.07'/%3E%3Ccircle cx='18' cy='155' r='1.5' fill='%23c4a882' opacity='0.07'/%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 ── */
#starfield {
  position: fixed;
  inset: 0;
  z-index: 10;
  pointer-events: none;
  opacity: 0;
}

.hero, .section, .footer { position: relative; z-index: 1; }

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #faf0e8;
  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.07) 100%
    ),
    radial-gradient(ellipse 30% 40% at 15% 20%,
      rgba(196,168,130,0.10) 0%,
      transparent 70%
    );
}

/* Petale decorative */
.hero__petals {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 1;
}

.petal {
  position: absolute;
  top: -20px;
  border-radius: 50%;
  pointer-events: none;
  background: radial-gradient(circle, rgba(196,168,130,0.6) 0%, rgba(196,168,130,0) 70%);
  opacity: 0.5;
  animation: fall linear infinite;
}

@keyframes fall {
  0% { transform: translateY(-20px) translateX(0); opacity: 0; }
  10% { opacity: 0.5; }
  100% { transform: translateY(110vh) translateX(30px); opacity: 0; }
}

@keyframes falling {
  0% { transform: translateY(-20px) rotate(0deg); opacity: 0; }
  10% { opacity: 0.5; }
  90% { opacity: 0.3; }
  100% { transform: translateY(110vh) rotate(360deg); opacity: 0; }
}

.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: 12px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  font-size: 0.7rem;
  color: rgba(255,255,255,0.92);
  margin-bottom: 20px;
  font-weight: 200;
}

.eyebrow::before, .eyebrow::after { content: "✦"; font-size: 0.65rem; opacity: 0.75; }

h1 {
  font-family: "Allura", cursive;
  text-transform: capitalize;
  font-size: clamp(3rem, 9vw, 7rem);
  font-weight: 400;
  line-height: 1.1;
  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);
}

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(255,255,255,0.65), 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.78);
  letter-spacing: 0.15em;
  margin-bottom: 44px;
  font-weight: 200;
}

.hero__actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── BUTTONS ── */
.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, background 0.25s ease;
  cursor: pointer;
}

.btn:hover { transform: translateY(-2px); }

.btn--primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-strong));
  color: #3d2810;
  box-shadow: 0 8px 24px rgba(196,168,130,0.4);
}

.btn--primary:hover { box-shadow: 0 12px 32px rgba(196,168,130,0.6); }

.btn--ghost {
  border-color: rgba(255,255,255,0.65);
  background: rgba(0,0,0,0.22);
  color: #fff;
  backdrop-filter: blur(10px);
  text-shadow: 0 1px 4px rgba(0,0,0,0.25);
}

.btn--ghost:hover { background: rgba(255,255,255,0.20); }

.btn--whatsapp {
  background: linear-gradient(135deg, #25d366, #128c7e);
  box-shadow: 0 8px 24px rgba(37,211,102,0.35);
}

.btn--whatsapp:hover { box-shadow: 0 12px 32px rgba(37,211,102,0.5); }

/* ── SECTIONS ── */
.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.75; }

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

/* ── GLASS CARDS ── */
.glass-card {
  background: rgba(255,255,255,0.88);
  border: 1px solid rgba(196,168,130,0.18);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
  border-radius: var(--radius);
}

/* ── STORY ── */
.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.75;
}

.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 ── */
.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;
}

.detail-card:hover { transform: translateY(-4px); }

.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 ── */
.accordion-gallery {
  display: flex;
  gap: 10px;
  min-height: 500px;
}

.accordion-item {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  flex: 1 1 0;
  border: 1px solid rgba(196,168,130,0.15);
  transition: flex 0.55s cubic-bezier(0.4,0,0.2,1), box-shadow 0.35s ease;
  box-shadow: 0 8px 32px rgba(196,168,130,0.12);
  cursor: pointer;
}

.accordion-item:hover, .accordion-item.active {
  flex: 3.5 1 0;
  box-shadow: 0 16px 48px rgba(196,168,130,0.22);
}

.accordion-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
  filter: brightness(0.9) saturate(1.05);
}

.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(253,246,240,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);
  font-style: italic;
}

.accordion-item__content p {
  margin: 0;
  color: var(--muted);
  font-size: 0.85rem;
  line-height: 1.5;
}

/* ── MAP ── */
.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: saturate(0.75);
}

/* ── RSVP ── */
.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 ── */
.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.65;
}

/* ── COUNTDOWN ── */
.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 ── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── RESPONSIVE ── */
@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(253,246,240,0.97); }
  .hero__actions-mobile .btn { width: 100%; max-width: 280px; }
  .btn { width: 100%; max-width: 280px; }
  .countdown-grid { gap: 12px; }
}

@media (max-width: 400px) {
  h1 { font-size: clamp(2.4rem, 12vw, 3.5rem); }
}

/* 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: CORTINE LATERALE (semitransparent) ── */
body.spl-lock { overflow: hidden; }
#spl {
  position: fixed; inset: 0; z-index: 1000;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(160deg, rgba(253,246,240,0.18) 0%, rgba(248,237,216,0.12) 100%);
  cursor: pointer; overflow: hidden;
  backdrop-filter: blur(2px);
}
#spl canvas { position: absolute; inset: 0; pointer-events: none; z-index: 2; }

.spl-rail {
  position: absolute; top: 0; left: 0; right: 0; height: 22px;
  background: linear-gradient(to bottom, rgba(232,216,184,0.55), rgba(205,184,138,0.45));
  display: flex; align-items: center; justify-content: center; gap: 14px;
  box-shadow: 0 3px 10px rgba(196,168,130,0.18); z-index: 6;
  backdrop-filter: blur(4px);
}
.spl-rail-ring {
  width: 10px; height: 10px; border-radius: 50%;
  border: 1.5px solid rgba(196,168,130,0.7); background: rgba(253,246,240,0.7);
}
.spl-rail-gem { color: rgba(196,168,130,0.8); font-size: 13px; }

.spl-drape {
  position: absolute; top: 0; bottom: 0; width: 54%;
  transition: transform 1.15s cubic-bezier(0.65, 0, 0.35, 1);
  z-index: 5; overflow: hidden;
}
.spl-drape--l {
  left: 0;
  background: repeating-linear-gradient(to right,
    rgba(232,216,184,0.28), rgba(232,216,184,0.28) 16px,
    rgba(245,235,216,0.20) 16px, rgba(245,235,216,0.20) 32px,
    rgba(220,204,168,0.25) 32px, rgba(220,204,168,0.25) 48px,
    rgba(250,244,232,0.18) 48px, rgba(250,244,232,0.18) 64px
  );
  box-shadow: 4px 0 24px rgba(196,168,130,0.12), inset -4px 0 12px rgba(176,140,90,0.08);
  backdrop-filter: blur(6px);
}
.spl-drape--r {
  right: 0;
  background: repeating-linear-gradient(to left,
    rgba(232,216,184,0.28), rgba(232,216,184,0.28) 16px,
    rgba(245,235,216,0.20) 16px, rgba(245,235,216,0.20) 32px,
    rgba(220,204,168,0.25) 32px, rgba(220,204,168,0.25) 48px,
    rgba(250,244,232,0.18) 48px, rgba(250,244,232,0.18) 64px
  );
  box-shadow: -4px 0 24px rgba(196,168,130,0.12), inset 4px 0 12px rgba(176,140,90,0.08);
  backdrop-filter: blur(6px);
}
.spl-drape-fold {
  position: absolute; top: 0; bottom: 0; width: 1px;
  background: rgba(255,255,255,0.18);
}
.spl-drape--l .spl-drape-fold:nth-child(1){ left:18%; }
.spl-drape--l .spl-drape-fold:nth-child(2){ left:36%; }
.spl-drape--l .spl-drape-fold:nth-child(3){ left:54%; }
.spl-drape--l .spl-drape-fold:nth-child(4){ left:72%; }
.spl-drape--r .spl-drape-fold:nth-child(1){ right:18%; }
.spl-drape--r .spl-drape-fold:nth-child(2){ right:36%; }
.spl-drape--r .spl-drape-fold:nth-child(3){ right:54%; }
.spl-drape--r .spl-drape-fold:nth-child(4){ right:72%; }
.spl-drape-sheen {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(255,255,255,0.12) 0%, transparent 40%, rgba(0,0,0,0.03) 100%);
}

.spl-stage {
  position: relative; z-index: 7; text-align: center; padding: 24px;
  transition: opacity 0.4s ease 0.7s;
}
.spl-stage-orn { color: #c4a882; font-size: 13px; letter-spacing: 8px; margin-bottom: 18px; }
.spl-mono { font-family: 'Cormorant Garamond', serif; font-size: 32px; color: #c4a882; opacity: 0.55; margin-bottom: 14px; }
.spl-name {
  display: block; font-family: 'Cormorant Garamond', serif;
  font-size: clamp(26px, 5.5vw, 46px); font-weight: 400; font-style: italic;
  color: #3d2810; line-height: 1.3; margin-bottom: 14px;
  text-shadow: 0 2px 14px rgba(196,168,130,0.25);
}
.spl-rule {
  width: 60px; height: 1px;
  background: linear-gradient(to right, transparent, #c4a882, transparent);
  margin: 0 auto 14px;
}
.spl-date {
  display: block; font-family: 'Inter', sans-serif;
  font-size: 11px; letter-spacing: 3px; text-transform: uppercase;
  color: #8a7260; margin-bottom: 26px;
}
.spl-hint {
  font-family: 'Cormorant Garamond', serif; font-style: italic;
  font-size: 14px; color: rgba(61,40,16,0.45);
  animation: spl-pulse 2.5s ease-in-out infinite;
}
@keyframes spl-pulse { 0%,100%{opacity:0.4} 50%{opacity:1} }

/* Opening animation */
#spl.spl-opening .spl-drape--l { transform: translateX(-110%); }
#spl.spl-opening .spl-drape--r { transform: translateX(110%); }
#spl.spl-opening .spl-stage { opacity: 0; }
#spl.spl-out { opacity: 0; transition: opacity 0.6s ease; pointer-events: none; }

/* ── ROTIRE PLIC – idle float ── */
#spl .spl2-stage { perspective: 1400px; }
#spl .spl2-env {
  animation: env-float 3.5s ease-in-out infinite;
  transform-style: preserve-3d;
  will-change: transform;
}
@keyframes env-float {
  0%, 100% { transform: rotateY(-10deg) rotateX(5deg) translateY(0px); }
  50%       { transform: rotateY(10deg)  rotateX(-3deg) translateY(-8px); }
}
#spl.spl-opening .spl2-env {
  animation: env-spin 1100ms cubic-bezier(0.4, 0, 0.2, 1) forwards !important;
}
@keyframes env-spin {
  0%  { transform: rotateY(-10deg) rotateX(5deg); opacity: 1; }
  60% { transform: rotateY(720deg) scale(1.06) rotateX(0deg); opacity: 1; }
  100%{ transform: rotateY(720deg) scale(0.8) rotateX(-15deg) translateY(-40px); opacity: 0; }
}
#spl.spl-opening .spl2-flap {
  animation: flap-open 500ms 300ms ease-in forwards !important;
  transform-origin: top center;
}
@keyframes flap-open {
  0%   { transform: rotateX(0deg); }
  100% { transform: rotateX(-170deg); }
}
#spl.spl-opening .spl2-letter {
  animation: letter-rise 600ms 450ms ease-out forwards !important;
}
@keyframes letter-rise {
  to { transform: translateY(-70px); opacity: 0; }
}
#spl.spl-opening .spl2-hint,
#spl.spl-opening .spl2-tag {
  opacity: 0 !important;
  transition: opacity 0.2s;
}

/* ═══════════════════════════════════════════
   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.45;
}
.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);
}
.poem-child {
  font-family: 'Allura', cursive;
  font-size: clamp(30px, 5vw, 42px);
  color: var(--gold);
  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(196,168,130,0.4);
  color: #fff;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
  letter-spacing: 2.5px;
  border-radius: 40px;
  background: rgba(196,168,130,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);
}

/* -- Program cu iconite -- */
.schedule-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.schedule-item {
  display: flex;
  align-items: center;
  gap: 10px;
}
.schedule-icon {
  flex-shrink: 0;
  color: var(--gold);
  display: flex;
  align-items: center;
}
.schedule-time {
  font-weight: 600;
  color: var(--gold);
  font-size: 0.88rem;
  min-width: 42px;
}
.schedule-label {
  font-size: 0.9rem;
  color: inherit;
}

/* -- Luxury Nav Banner -- */
.lux-nav {
  width: 100%;
  background: rgba(196,168,130,0.72);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: none;
  border-bottom: 1px solid rgba(196,168,130,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(196,168,130,0.25);
}
.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 22px;
  text-decoration: none;
  color: rgba(255,255,255,0.82);
  transition: color 0.3s ease, transform 0.2s 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__item.lux-active svg {
  filter: drop-shadow(0 0 5px rgba(196,168,130,0.5));
}

.lux-nav__sep {
  color: rgba(255,255,255,0.32);
  font-size: 0.45rem;
  padding: 0 2px;
  pointer-events: none;
  user-select: none;
}

@media (max-width: 480px) {
  .lux-nav__item { padding: 12px 14px; font-size: 0.52rem; letter-spacing: 1.5px; }
  .lux-nav__item svg { width: 20px; height: 20px; }
}

.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; } }
