﻿:root {
  --bg: #f2f5fd;
  --text: #1a253a;
  --muted: #5a7898;
  --line: rgba(106,138,180,0.2);
  --gold: #6a8ab4;
  --gold-strong: #9ab4d0;
  --shadow: 0 20px 60px rgba(106,138,180,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, #f2f5fd 0%, #e8eef8 100%);
  background-color: #f2f5fd;
  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(55,60)' opacity='0.12'%3E%3Cellipse cx='0' cy='-10' rx='4.5' ry='10' fill='%236a8ab4'/%3E%3Cellipse cx='0' cy='-10' rx='4.5' ry='10' fill='%236a8ab4' transform='rotate(60)'/%3E%3Cellipse cx='0' cy='-10' rx='4.5' ry='10' fill='%236a8ab4' transform='rotate(120)'/%3E%3Cellipse cx='0' cy='-10' rx='4.5' ry='10' fill='%236a8ab4' transform='rotate(180)'/%3E%3Cellipse cx='0' cy='-10' rx='4.5' ry='10' fill='%236a8ab4' transform='rotate(240)'/%3E%3Cellipse cx='0' cy='-10' rx='4.5' ry='10' fill='%236a8ab4' transform='rotate(300)'/%3E%3Ccircle r='4' fill='%239ab4d0'/%3E%3C/g%3E%3Cpath d='M75,38 Q92,22 100,42 Q88,30 75,38Z' fill='%236a8ab4' opacity='0.08'/%3E%3Cpath d='M35,78 Q18,90 28,106 Q28,92 35,78Z' fill='%239ab4d0' opacity='0.08'/%3E%3Cg transform='translate(152,145)' opacity='0.09'%3E%3Cellipse cx='0' cy='-7' rx='3' ry='7' fill='%239ab4d0'/%3E%3Cellipse cx='0' cy='-7' rx='3' ry='7' fill='%239ab4d0' transform='rotate(60)'/%3E%3Cellipse cx='0' cy='-7' rx='3' ry='7' fill='%239ab4d0' transform='rotate(120)'/%3E%3Cellipse cx='0' cy='-7' rx='3' ry='7' fill='%239ab4d0' transform='rotate(180)'/%3E%3Cellipse cx='0' cy='-7' rx='3' ry='7' fill='%239ab4d0' transform='rotate(240)'/%3E%3Cellipse cx='0' cy='-7' rx='3' ry='7' fill='%239ab4d0' transform='rotate(300)'/%3E%3Ccircle r='3' fill='%236a8ab4'/%3E%3C/g%3E%3Ccircle cx='160' cy='22' r='2' fill='%236a8ab4' opacity='0.09'/%3E%3Ccircle cx='22' cy='160' r='1.5' fill='%239ab4d0' opacity='0.09'/%3E%3Ccircle cx='130' cy='170' r='1.5' fill='%236a8ab4' opacity='0.08'/%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;
}

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

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #eef2fd;
  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(106,138,180,0.08) 0%,
      transparent 70%
    );
}


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

.bubble {
  position: absolute;
  bottom: -20px;
  border-radius: 50%;
  background: rgba(154,180,201,0.12);
  border: 1px solid rgba(154,180,201,0.25);
  animation: rising linear infinite;
}

@keyframes rising {
  0% { transform: translateY(0) scale(1); opacity: 0; }
  10% { opacity: 0.6; }
  90% { opacity: 0.2; }
  100% { transform: translateY(-110vh) scale(1.2); 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.9);
  margin-bottom: 20px;
  font-weight: 200;
}

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

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);
  letter-spacing: 0.04em;
}

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: 2px;
  background: linear-gradient(90deg, transparent, rgba(154,180,201,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: 12px;
  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, #6a8fa8, #9ab4c9);
  color: var(--text);
  box-shadow: 0 8px 24px rgba(154,180,201,0.35);
}

.btn--primary:hover { box-shadow: 0 12px 32px rgba(154,180,201,0.55); }

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

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

.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.6rem; opacity: 0.7; }

.section__divider {
  width: 60px;
  height: 2px;
  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(106,138,180,0.15);
  box-shadow: var(--shadow);
  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; }
.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-gallery { display: flex; gap: 10px; min-height: 500px; }

.accordion-item {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  flex: 1 1 0;
  border: 1px solid rgba(106,138,180,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(154,180,201,0.22); }
.accordion-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; filter: brightness(0.9) saturate(1.1); }
.accordion-item:hover img, .accordion-item.active img { transform: scale(1.04); filter: brightness(1) saturate(1.2); }
.accordion-item__overlay { position: absolute; inset: 0; background: linear-gradient(180deg, transparent 40%, rgba(242,245,253,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: saturate(0.8); }

.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,245,253,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 INTRO � ENVELOPE FLOAT PREMIUM (botez-2) -- */
body.spl-lock { overflow:hidden; }
#spl {
  position:fixed;inset:0;z-index:200000;cursor:pointer;overflow:hidden;
  background: linear-gradient(180deg, #f0f4fd 0%, #e4ecf8 100%);
  display:flex;align-items:center;justify-content:center;
}
#spl canvas{position:absolute;inset:0;pointer-events:none;}
.spl2-bg-glow{position:absolute;width:500px;height:500px;border-radius:50%;background:radial-gradient(circle,rgba(106,138,180,0.15) 0%,transparent 70%);top:50%;left:50%;transform:translate(-50%,-50%);pointer-events:none;animation:spl2GlowPulse 3s ease-in-out infinite;}
@keyframes spl2GlowPulse{0%,100%{transform:translate(-50%,-50%) scale(1);}50%{transform:translate(-50%,-50%) scale(1.15);}}
.spl2-stage{position:relative;z-index:5;display:flex;flex-direction:column;align-items:center;animation:spl2Float 3s ease-in-out infinite;}
@keyframes spl2Float{0%,100%{transform:translateY(0);}50%{transform:translateY(-12px);}}
.spl2-env{position:relative;width:min(380px,88vw);height:280px;filter:drop-shadow(0 20px 60px rgba(0,0,0,0.6));perspective:800px;}
.spl2-env-body{position:absolute;inset:0;background:linear-gradient(160deg,#dce8f5 0%,#cdddf0 100%);border-radius:4px;overflow:visible;}
.spl2-env-lines{position:absolute;inset:0;border-radius:4px;overflow:hidden;background:repeating-linear-gradient(0deg,transparent,transparent 28px,rgba(100,140,180,0.12) 28px,rgba(100,140,180,0.12) 29px);}
.spl2-letter{position:absolute;left:0;right:0;bottom:0;top:0;display:flex;flex-direction:column;align-items:center;justify-content:center;padding:16px 20px 20px;text-align:center;z-index:2;}
.spl2-tag{font-size:9px;letter-spacing:3px;text-transform:uppercase;color:#1a253a;margin-bottom:8px;display:block;}
.spl2-name{font-family:'Allura',cursive;font-size:clamp(30px,7vw,48px);color:#1a253a;display:block;margin-bottom:6px;line-height:1.1;}
.spl2-date{font-size:11px;letter-spacing:2px;color:#1a253a;text-transform:uppercase;}
/* Flap porne?te deschis (rotit) � nu acopera con?inutul */
.spl2-flap{position:absolute;top:0;left:0;right:0;height:50%;transform-origin:top center;transform:rotateX(-160deg);background:linear-gradient(160deg,#b0c8e8 0%,#b0c8e8 100%);clip-path:polygon(0 0,100% 0,50% 100%);z-index:1;transition:transform 0.7s cubic-bezier(0.4,0,0.2,1);}
.spl2-flap-inner{position:absolute;inset:0;background:linear-gradient(180deg,rgba(255,255,255,0.25) 0%,transparent 60%);}
/* Marginea de sus a plicului */
.spl2-env-top{position:absolute;top:0;left:0;right:0;height:3px;background:linear-gradient(90deg,transparent,rgba(176,200,232,0.6),transparent);z-index:2;}
.spl2-seal{position:absolute;top:-26px;left:50%;transform:translateX(-50%);width:52px;height:52px;border-radius:50%;background:#6a8ab4;display:flex;align-items:center;justify-content:center;color:#ffffff;font-size:18px;z-index:5;box-shadow:0 4px 20px rgba(106,138,180,0.35);animation:spl2SealPop 0.7s cubic-bezier(0.22,1,0.36,1) 0.6s both;}
.spl2-seal-ring{position:absolute;inset:-4px;border-radius:50%;border:2px solid rgba(255,255,255,0.5);}
@keyframes spl2SealPop{from{transform:translateX(-50%) scale(0);opacity:0;}to{transform:translateX(-50%) scale(1);opacity:1;}}
.spl2-hint{font-size:11px;letter-spacing:3px;color:rgba(26,37,58,0.5);text-transform:uppercase;margin-top:32px;animation:spl2HintPulse 2s ease-in-out 1.5s infinite;}
@keyframes spl2HintPulse{0%,100%{opacity:0.35;}50%{opacity:0.75;}}
#spl.spl-opening .spl2-flap{transform:rotateX(0deg);}
#spl.spl-opening .spl2-stage{animation:spl2OpenUp 0.9s cubic-bezier(0.4,0,0.2,1) 0.5s forwards;}
@keyframes spl2OpenUp{to{transform:translateY(-130%) scale(0.75);opacity:0;}}
#spl.spl-out{opacity:0;transition:opacity 0.4s 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); }
}

/* -- ROTIRE PLIC � open animation -- */
#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.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(106,138,180,0.4);
  color: #fff;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
  letter-spacing: 2.5px;
  border-radius: 40px;
  background: rgba(106,138,180,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(106,138,180,0.72);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: none;
  border-bottom: 1px solid rgba(106,138,180,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(106,138,180,0.4);
  color: #fff;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
  letter-spacing: 2.5px;
  border-radius: 40px;
  background: rgba(106,138,180,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; } }
