/* ============================================================
   BLOOM GARDEN EVENTS — "Sticker Garden Party"
   Hârtie însorită · carduri abțibild · polaroide cu bandă washi
   Bricolage Grotesque + Figtree + Caveat
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:opsz,wght@12..96,500;12..96,700;12..96,800&family=Figtree:wght@400;500;600;700&family=Caveat:wght@600;700&display=swap');

:root {
  --paper:   #FFFBF1;
  --mint:    #EDF7E8;
  --butter:  #FFF3D6;
  --ink:     #23402A;
  --ink-70:  rgba(35, 64, 42, 0.72);
  --green:   #3E8E52;
  --yellow:  #FFC53D;
  --pink:    #FF5D8F;
  --blue:    #64BFE0;
  --wa:      #25D366;
  --radius:  22px;
  --border:  2.5px solid var(--ink);
  --shadow-y: 6px 6px 0 var(--yellow);
  --shadow-p: 6px 6px 0 var(--pink);
  --shadow-b: 6px 6px 0 var(--blue);
  --shadow-g: 6px 6px 0 #A9D9A0;
  --shadow-i: 6px 6px 0 rgba(35,64,42,0.16);
  --font-display: 'Bricolage Grotesque', sans-serif;
  --font-body: 'Figtree', sans-serif;
  --font-hand: 'Caveat', cursive;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background-color: var(--paper);
  background-image: radial-gradient(rgba(35,64,42,0.055) 1.5px, transparent 1.6px);
  background-size: 26px 26px;
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; }

::selection { background: var(--yellow); color: var(--ink); }

h1, h2, h3 {
  font-family: var(--font-display);
  line-height: 1.08;
  letter-spacing: -0.01em;
}

.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }

/* ---------- Butoane sticker ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.02rem;
  padding: 14px 28px;
  border-radius: 999px;
  border: var(--border);
  text-decoration: none;
  cursor: pointer;
  background: #fff;
  color: var(--ink);
  box-shadow: 4px 4px 0 var(--ink);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  white-space: nowrap;
}
.btn:hover { transform: translate(2px, 2px); box-shadow: 1px 1px 0 var(--ink); }
.btn:focus-visible { outline: 3px dashed var(--pink); outline-offset: 3px; }
.btn-primary { background: var(--pink); color: #fff; }
.btn-yellow  { background: var(--yellow); color: var(--ink); }
.btn svg { width: 20px; height: 20px; flex-shrink: 0; fill: currentColor; }

/* ---------- Chip / eyebrow ---------- */
.chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 0.86rem;
  padding: 7px 16px;
  border: 2px solid var(--ink);
  border-radius: 999px;
  background: #fff;
  box-shadow: 3px 3px 0 rgba(35,64,42,0.15);
}
.chip-yellow { background: var(--yellow); }
.chip-mint   { background: var(--mint); }
.chip-pink   { background: var(--pink); color: #fff; }
.chip-blue   { background: var(--blue); }

/* ---------- Notițe de mână ---------- */
.hand {
  font-family: var(--font-hand);
  font-weight: 700;
  font-size: 1.6rem;
  line-height: 1.2;
  color: var(--green);
  transform: rotate(-2deg);
  display: inline-block;
}

/* ============================================================
   NAVIGAȚIE — pastilă plutitoare
   ============================================================ */
#topbar {
  position: fixed;
  top: 14px;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0 16px;
}
.nav-pill {
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 18px;
  background: rgba(255, 253, 246, 0.94);
  backdrop-filter: blur(10px);
  border: var(--border);
  border-radius: 999px;
  padding: 8px 10px 8px 20px;
  box-shadow: 5px 5px 0 rgba(35,64,42,0.14);
}
.nav-logo img { height: 46px; width: auto; }
.nav-links {
  display: flex;
  gap: 4px;
  margin-left: auto;
}
.nav-links a {
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  padding: 8px 14px;
  border-radius: 999px;
  border: 2px solid transparent;
  transition: background 0.15s ease, border-color 0.15s ease;
}
.nav-links a:hover { background: var(--butter); }
.nav-links a.active { background: var(--yellow); border-color: var(--ink); }
.nav-cta { padding: 11px 22px; font-size: 0.92rem; }

#nav-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 46px;
  height: 46px;
  border: var(--border);
  border-radius: 50%;
  background: var(--yellow);
  cursor: pointer;
  flex-shrink: 0;
}
#nav-burger span {
  display: block;
  width: 20px;
  height: 2.5px;
  background: var(--ink);
  margin: 0 auto;
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.2s ease;
}
#nav-burger.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
#nav-burger.open span:nth-child(2) { opacity: 0; }
#nav-burger.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

#mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 900;
  background: var(--paper);
  background-image: radial-gradient(rgba(35,64,42,0.055) 1.5px, transparent 1.6px);
  background-size: 26px 26px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  padding: 96px 20px 40px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}
#mobile-menu.open { opacity: 1; visibility: visible; }
#mobile-menu > :first-child { margin-top: auto; }
#mobile-menu > :last-child { margin-bottom: auto; }
#mobile-menu a {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.5rem;
  text-decoration: none;
  padding: 8px 24px;
  border-radius: 999px;
}
#mobile-menu a.active { background: var(--yellow); border: 2px solid var(--ink); }
#mobile-menu .btn { margin-top: 18px; font-size: 1.1rem; }

/* ============================================================
   HERO — invitația la petrecere
   ============================================================ */
#hero {
  position: relative;
  padding: 150px 0 70px;
  overflow: hidden;
}
.hero-center { text-align: center; position: relative; z-index: 2; }
.hero-logo-line {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
.hero-logo-line img { height: 64px; width: auto; }
.hero-title {
  font-size: clamp(2.7rem, 5.6vw, 4.6rem);
  font-weight: 800;
  margin: 22px auto 20px;
  max-width: 900px;
}
.hero-title .marker {
  position: relative;
  white-space: nowrap;
}
.hero-title .marker::after {
  content: '';
  position: absolute;
  left: -4px;
  right: -4px;
  bottom: 6px;
  height: 0.42em;
  background: var(--yellow);
  border-radius: 6px;
  z-index: -1;
  transform: rotate(-1deg);
}
.hero-sub {
  font-size: 1.15rem;
  color: var(--ink-70);
  max-width: 560px;
  margin: 0 auto 30px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; justify-content: center; margin-bottom: 60px; }

/* banda de polaroide */
.hero-strip {
  display: flex;
  justify-content: center;
  align-items: flex-start;
}
.hero-strip .polaroid {
  position: relative;
  width: 220px;
  flex-shrink: 0;
  margin: 0 -14px;
  animation: bob 5s ease-in-out infinite;
  transition: transform 0.2s ease;
}
.hero-strip .polaroid img { height: 190px; }
.hero-strip .polaroid:nth-child(1) { transform: rotate(-5deg) translateY(16px); }
.hero-strip .polaroid:nth-child(2) { transform: rotate(3deg); animation-delay: 0.6s; }
.hero-strip .polaroid:nth-child(3) { transform: rotate(-2deg) translateY(10px); z-index: 2; animation-delay: 1.2s; }
.hero-strip .polaroid:nth-child(4) { transform: rotate(4deg); animation-delay: 1.8s; }
.hero-strip .polaroid:nth-child(5) { transform: rotate(-3.5deg) translateY(14px); animation-delay: 2.4s; }
.hero-strip .polaroid:hover { transform: rotate(0) translateY(-6px) scale(1.05); z-index: 5; }
@keyframes bob {
  0%, 100% { translate: 0 0; }
  50%      { translate: 0 -10px; }
}
.polaroid {
  position: absolute;
  background: #fff;
  border: var(--border);
  border-radius: 14px;
  padding: 10px 10px 14px;
  box-shadow: var(--shadow-i);
}
.polaroid img {
  border-radius: 8px;
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.polaroid .tape {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%) rotate(-4deg);
  width: 86px;
  height: 26px;
  background: rgba(255, 197, 61, 0.75);
  border: 1.5px solid rgba(35,64,42,0.25);
  border-radius: 3px;
}
.polaroid figcaption {
  font-family: var(--font-hand);
  font-weight: 600;
  font-size: 1.25rem;
  text-align: center;
  padding-top: 8px;
  color: var(--ink);
}
.polaroid:hover { z-index: 5; }
.hero-strip .polaroid:nth-child(2) .tape { background: rgba(255, 93, 143, 0.6); }
.hero-strip .polaroid:nth-child(3) .tape { background: rgba(100, 191, 224, 0.65); }
.hero-strip .polaroid:nth-child(5) .tape { background: rgba(169, 217, 160, 0.75); }

/* ghirlanda bunting */
.bunting {
  position: absolute;
  top: 86px;
  left: -2%;
  width: 104%;
  z-index: 0;
  pointer-events: none;
}
.bunting svg { width: 100%; height: auto; display: block; }

/* confetti plutitor */
.confetti {
  position: absolute;
  z-index: 0;
  pointer-events: none;
  animation: floaty 6s ease-in-out infinite;
}
@keyframes floaty {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50%      { transform: translateY(-16px) rotate(12deg); }
}

/* ============================================================
   MARQUEE — banda galbenă
   ============================================================ */
.marquee {
  background: var(--yellow);
  border-top: var(--border);
  border-bottom: var(--border);
  overflow: hidden;
  padding: 13px 0;
  transform: rotate(-0.6deg) scale(1.01);
  margin: 10px 0;
}
.marquee-track {
  display: flex;
  gap: 0;
  width: max-content;
  animation: marquee 28s linear infinite;
}
.marquee span {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.05rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0 18px;
  white-space: nowrap;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ============================================================
   SECȚIUNI
   ============================================================ */
.section { padding: 90px 0; position: relative; }
.section-mint { background: var(--mint); }
.section-butter { background: var(--butter); }

/* margine scalopată sub secțiunile colorate */
.scallop {
  height: 22px;
  background-image: radial-gradient(circle at 11px -6px, transparent 15px, var(--sc, var(--mint)) 16px);
  background-size: 22px 22px;
  background-repeat: repeat-x;
}
.scallop-mint   { --sc: var(--mint); }
.scallop-butter { --sc: var(--butter); }
.scallop-yellow { --sc: var(--yellow); }
.scallop-pink   { --sc: var(--pink); }
.scallop-blue   { --sc: var(--blue); }

.section-head { max-width: 640px; margin-bottom: 56px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-title {
  font-size: clamp(2rem, 3.8vw, 3rem);
  font-weight: 800;
  margin: 16px 0 14px;
}
.section-sub { color: var(--ink-70); font-size: 1.08rem; }

/* ============================================================
   CARDURI ABȚIBILD (de ce noi / facilități)
   ============================================================ */
.card-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
}
.card-grid-3 { grid-template-columns: repeat(3, 1fr); }

.sticker-card {
  background: #fff;
  border: var(--border);
  border-radius: var(--radius);
  padding: 30px 26px;
  box-shadow: var(--shadow-y);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.sticker-card:nth-child(4n+2) { box-shadow: var(--shadow-p); }
.sticker-card:nth-child(4n+3) { box-shadow: var(--shadow-b); }
.sticker-card:nth-child(4n+4) { box-shadow: var(--shadow-g); }
.sticker-card:hover { transform: translate(-3px, -3px) rotate(-0.5deg); }
.sticker-card .card-emoji {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  background: var(--butter);
  border: 2px solid var(--ink);
  border-radius: 50%;
  margin-bottom: 18px;
}
.sticker-card h3 { font-size: 1.25rem; font-weight: 700; margin-bottom: 10px; }
.sticker-card p { color: var(--ink-70); font-size: 0.98rem; }

/* ============================================================
   SHOWCASE exterior / interior
   ============================================================ */
.show-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  margin-bottom: 90px;
}
.show-row:last-child { margin-bottom: 0; }
.show-row.flip .show-media { order: 2; }
.show-media { position: relative; }
.show-media .polaroid {
  position: relative;
  width: 100%;
  height: auto;
  transform: rotate(-2deg);
}
.show-row.flip .show-media .polaroid { transform: rotate(2deg); }
.show-media .polaroid img { height: 380px; }
.show-badge {
  position: absolute;
  top: -18px;
  right: -12px;
  z-index: 3;
  transform: rotate(6deg);
}
.show-content h3 { font-size: clamp(1.7rem, 3vw, 2.3rem); font-weight: 800; margin: 14px 0 16px; }
.show-content p { color: var(--ink-70); margin-bottom: 22px; }
.feature-chips { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 28px; }
.feature-chips .chip { font-size: 0.82rem; box-shadow: none; }

/* ============================================================
   CARDURI OFERTĂ (3 pagini)
   ============================================================ */
.offer-card {
  background: #fff;
  border: var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-y);
  text-decoration: none;
  display: flex;
  flex-direction: column;
  transition: transform 0.18s ease;
}
.offer-card:nth-child(2) { box-shadow: var(--shadow-p); }
.offer-card:nth-child(3) { box-shadow: var(--shadow-b); }
.offer-card:hover { transform: translate(-3px, -3px); }
.offer-card .offer-img { height: 220px; overflow: hidden; border-bottom: var(--border); }
.offer-card .offer-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.offer-card:hover .offer-img img { transform: scale(1.06); }
.offer-body { padding: 26px; display: flex; flex-direction: column; flex: 1; }
.offer-body h3 { font-size: 1.4rem; font-weight: 800; margin-bottom: 10px; }
.offer-body p { color: var(--ink-70); font-size: 0.98rem; flex: 1; }
.offer-link {
  margin-top: 18px;
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--green);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.offer-card:hover .offer-link { text-decoration: underline; }

/* ============================================================
   GALERIE
   ============================================================ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.gallery-grid .polaroid {
  position: relative;
  cursor: zoom-in;
  transition: transform 0.18s ease;
}
.gallery-grid .polaroid img { height: 250px; }
.gallery-grid .polaroid:nth-child(3n+1) { transform: rotate(-1.6deg); }
.gallery-grid .polaroid:nth-child(3n+2) { transform: rotate(1.4deg); }
.gallery-grid .polaroid:nth-child(3n)   { transform: rotate(-0.7deg); }
.gallery-grid .polaroid:hover { transform: rotate(0deg) scale(1.03); z-index: 2; }
.gallery-grid .polaroid:nth-child(3n+2) .tape { background: rgba(255, 93, 143, 0.6); }
.gallery-grid .polaroid:nth-child(3n) .tape { background: rgba(100, 191, 224, 0.65); }

/* lightbox */
#lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(35, 64, 42, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}
#lightbox.open { opacity: 1; visibility: visible; }
#lightbox img {
  max-width: min(88vw, 1000px);
  max-height: 82vh;
  border: 4px solid #fff;
  border-radius: 12px;
  background: #fff;
}
#lightbox button {
  position: absolute;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: var(--border);
  background: var(--yellow);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--ink);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
#lightbox button:hover { background: var(--pink); color: #fff; }
#lb-close { top: 24px; right: 24px; }
#lb-prev  { left: 20px; top: 50%; transform: translateY(-50%); }
#lb-next  { right: 20px; top: 50%; transform: translateY(-50%); }

/* ============================================================
   RECENZII — bule de dialog
   ============================================================ */
.reviews-scroll {
  display: flex;
  gap: 26px;
  overflow-x: auto;
  scroll-snap-type: x proximity;
  padding: 10px 4px 40px;
  scrollbar-width: none;
  cursor: grab;
}
.reviews-scroll::-webkit-scrollbar { display: none; }
.reviews-scroll.dragging {
  cursor: grabbing;
  scroll-snap-type: none;
  user-select: none;
  scroll-behavior: auto;
}
.reviews-nav { display: flex; gap: 14px; justify-content: center; }
.rev-btn {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  border: var(--border);
  background: var(--yellow);
  color: var(--ink);
  font-size: 1.6rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 4px 4px 0 rgba(35,64,42,0.18);
  transition: transform 0.15s ease, background 0.15s ease, box-shadow 0.15s ease;
}
.rev-btn:hover { background: var(--pink); color: #fff; transform: translate(2px, 2px); box-shadow: 1px 1px 0 rgba(35,64,42,0.18); }
.rev-btn:focus-visible { outline: 3px dashed var(--pink); outline-offset: 3px; }
.review-bubble {
  position: relative;
  flex: 0 0 340px;
  scroll-snap-align: start;
  background: #fff;
  border: var(--border);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow-i);
}
.review-bubble::after {
  content: '';
  position: absolute;
  bottom: -16px;
  left: 40px;
  width: 26px;
  height: 26px;
  background: #fff;
  border-right: var(--border);
  border-bottom: var(--border);
  transform: rotate(45deg) skew(12deg, 12deg);
}
.review-stars { color: var(--yellow); font-size: 1.15rem; letter-spacing: 3px; text-shadow: 0 0 1px var(--ink); margin-bottom: 12px; }
.review-text { font-size: 0.98rem; color: var(--ink-70); margin-bottom: 16px; }
.review-author { font-family: var(--font-display); font-weight: 700; }
.review-date { font-size: 0.85rem; color: var(--ink-70); }

/* ============================================================
   CTA — invitația
   ============================================================ */
.invite-wrap { padding: 100px 0; }
.invite-card {
  position: relative;
  max-width: 780px;
  margin: 0 auto;
  background: #fff;
  border: var(--border);
  border-radius: 28px;
  box-shadow: 10px 10px 0 var(--pink);
  padding: 64px 48px;
  text-align: center;
  transform: rotate(-0.6deg);
}
.invite-card::before {
  content: '';
  position: absolute;
  inset: 14px;
  border: 2.5px dashed rgba(35,64,42,0.28);
  border-radius: 18px;
  pointer-events: none;
}
.invite-hand { font-size: 2.3rem; color: var(--pink); }
.invite-card h2 { font-size: clamp(2rem, 4vw, 3.1rem); font-weight: 800; margin: 10px 0 16px; }
.invite-card p { color: var(--ink-70); max-width: 460px; margin: 0 auto 32px; }
.invite-meta { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-top: 30px; }

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  background: #0F4C5C;
  color: var(--paper);
  padding: 70px 0 30px;
  position: relative;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 50px;
}
.footer-brand img { height: 64px; margin-bottom: 18px; background: var(--paper); border-radius: 14px; padding: 8px; }
.footer-brand p { color: rgba(255, 251, 241, 0.75); max-width: 300px; font-size: 0.95rem; }
.footer-col h4 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--yellow);
  margin-bottom: 16px;
}
.footer-col a {
  display: block;
  color: rgba(255, 251, 241, 0.82);
  text-decoration: none;
  padding: 5px 0;
  font-size: 0.95rem;
}
.footer-col a:hover { color: var(--yellow); }
.social-row { display: flex; gap: 12px; margin-top: 14px; }
.social-row a {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid rgba(255, 251, 241, 0.4);
  border-radius: 50%;
  padding: 0;
  transition: background 0.15s ease, border-color 0.15s ease;
}
.social-row a:hover { background: var(--pink); border-color: var(--pink); }
.social-row svg { width: 19px; height: 19px; fill: var(--paper); }
.footer-legal {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.footer-legal a {
  color: rgba(255, 251, 241, 0.7);
  font-size: 0.88rem;
  text-decoration: none;
  border-bottom: 1px dashed rgba(255, 251, 241, 0.4);
}
.footer-legal a:hover { color: var(--yellow); }
.footer-bottom {
  border-top: 1px solid rgba(255, 251, 241, 0.2);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 0.88rem;
  color: rgba(255, 251, 241, 0.6);
}

/* ============================================================
   WHATSAPP FAB
   ============================================================ */
#wa-fab {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 1500;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--wa);
  border: var(--border);
  box-shadow: 4px 4px 0 rgba(35,64,42,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.15s ease;
}
#wa-fab:hover { transform: scale(1.08) rotate(6deg); }
#wa-fab svg { width: 30px; height: 30px; fill: #fff; }

/* ============================================================
   PAGINI INTERIOARE — banner balon
   ============================================================ */
.page-hero {
  padding: 160px 0 70px;
  position: relative;
  background: var(--accent, var(--mint));
  border-bottom: var(--border);
}
.page-hero[data-accent="yellow"] { --accent: var(--yellow); }
.page-hero[data-accent="pink"]   { --accent: #FFD7E4; }
.page-hero[data-accent="blue"]   { --accent: #D7EEF7; }
.page-hero[data-accent="mint"]   { --accent: var(--mint); }
.page-hero[data-accent="butter"] { --accent: var(--butter); }
.page-hero .crumb {
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 18px;
  display: inline-flex;
  gap: 8px;
  background: rgba(255,255,255,0.7);
  border: 2px solid var(--ink);
  padding: 6px 16px;
  border-radius: 999px;
}
.page-hero .crumb a { text-decoration: none; }
.page-hero .crumb a:hover { text-decoration: underline; }
.page-hero h1 {
  font-size: clamp(2.6rem, 5.4vw, 4.2rem);
  font-weight: 800;
  max-width: 800px;
}
.page-hero .hand { margin-top: 12px; font-size: 1.8rem; }

/* ============================================================
   GRID FACILITĂȚI
   ============================================================ */
.fac-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.fac-card {
  background: #fff;
  border: var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-i);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.fac-card:hover { transform: translate(-3px, -3px) rotate(-0.4deg); box-shadow: var(--shadow-y); }
.fac-card .fac-img { height: 190px; border-bottom: var(--border); overflow: hidden; }
.fac-card .fac-img img { width: 100%; height: 100%; object-fit: cover; }
.fac-card .fac-emoji {
  height: 190px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.4rem;
  border-bottom: var(--border);
}
.fac-card:nth-child(4n+1) .fac-emoji { background: var(--butter); }
.fac-card:nth-child(4n+2) .fac-emoji { background: #FFE3ED; }
.fac-card:nth-child(4n+3) .fac-emoji { background: #DFF2F9; }
.fac-card:nth-child(4n)   .fac-emoji { background: var(--mint); }
.fac-body { padding: 22px 24px 26px; }
.fac-body h3 { font-size: 1.15rem; font-weight: 700; margin-bottom: 8px; }
.fac-body p { color: var(--ink-70); font-size: 0.95rem; }

/* ============================================================
   FAQ — acordeon
   ============================================================ */
.faq-list { max-width: 780px; margin: 0 auto; display: flex; flex-direction: column; gap: 18px; }
.faq-item {
  background: #fff;
  border: var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-i);
  overflow: hidden;
}
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 26px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.08rem;
  text-align: left;
  color: var(--ink);
}
.faq-q .faq-icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border: 2px solid var(--ink);
  border-radius: 50%;
  background: var(--yellow);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  font-weight: 600;
  transition: transform 0.25s ease, background 0.25s ease;
}
.faq-item.open .faq-icon { transform: rotate(45deg); background: var(--pink); color: #fff; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.faq-a-inner { padding: 0 26px 24px; color: var(--ink-70); }

/* ============================================================
   REGULAMENT
   ============================================================ */
.rules-list { max-width: 820px; margin: 0 auto; display: flex; flex-direction: column; gap: 20px; }
.rule-item {
  display: flex;
  gap: 20px;
  background: #fff;
  border: var(--border);
  border-radius: var(--radius);
  padding: 26px 28px;
  box-shadow: var(--shadow-i);
}
.rule-item:nth-child(4n+1) { box-shadow: var(--shadow-y); }
.rule-item:nth-child(4n+2) { box-shadow: var(--shadow-b); }
.rule-item:nth-child(4n+3) { box-shadow: var(--shadow-p); }
.rule-item:nth-child(4n)   { box-shadow: var(--shadow-g); }
.rule-icon {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  border: 2px solid var(--ink);
  border-radius: 50%;
  background: var(--butter);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
}
.rule-item h3 { font-size: 1.15rem; font-weight: 700; margin-bottom: 6px; }
.rule-item p { color: var(--ink-70); font-size: 0.96rem; }
.rule-item ul { margin: 8px 0 0 18px; color: var(--ink-70); font-size: 0.96rem; display: flex; flex-direction: column; gap: 6px; }
.rules-note {
  max-width: 820px;
  margin: 40px auto 0;
  background: var(--butter);
  border: var(--border);
  border-radius: var(--radius);
  padding: 28px 30px;
  box-shadow: var(--shadow-i);
  font-size: 0.96rem;
  color: var(--ink-70);
}
.rules-note strong { color: var(--ink); }

/* politici — conținut lung în acordeon */
.faq-a-inner h3 { font-size: 1.02rem; font-weight: 700; margin: 18px 0 6px; color: var(--ink); }
.faq-a-inner ul { margin: 6px 0 10px 18px; display: flex; flex-direction: column; gap: 5px; }
.faq-a-inner p { margin-bottom: 10px; }

/* ============================================================
   INCLUS GRATUIT (self-catering)
   ============================================================ */
.included-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.included-item {
  background: #fff;
  border: var(--border);
  border-radius: var(--radius);
  padding: 26px 20px;
  text-align: center;
  box-shadow: var(--shadow-i);
  transition: transform 0.18s ease;
}
.included-item:hover { transform: translateY(-4px) rotate(-0.6deg); }
.included-item .inc-emoji { font-size: 2.2rem; margin-bottom: 10px; }
.included-item h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 6px; }
.included-item p { font-size: 0.88rem; color: var(--ink-70); }

/* ============================================================
   CONTACT
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 56px;
  align-items: start;
}
.contact-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  margin-bottom: 26px;
}
.contact-item .ci-icon {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  border: 2px solid var(--ink);
  border-radius: 50%;
  background: var(--butter);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
}
.contact-item .ci-label { font-size: 0.85rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--green); }
.contact-item .ci-value { font-size: 1.1rem; font-weight: 600; }
.contact-item .ci-value a { text-decoration: none; }
.contact-item .ci-value a:hover { text-decoration: underline; }
.contact-map {
  border: var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-b);
  transform: rotate(0.8deg);
}
.contact-map iframe { width: 100%; height: 440px; border: none; display: block; }

/* ============================================================
   ANIMAȚII REVEAL
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  transition-delay: var(--d, 0s);
}
.reveal.in { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .nav-links { display: none; }
  #nav-burger { display: flex; margin-left: auto; }
  .nav-cta { display: none; }
  .hero-strip { flex-wrap: wrap; gap: 20px; }
  .hero-strip .polaroid { margin: 0; }
  .card-grid { grid-template-columns: repeat(2, 1fr); }
  .card-grid-3 { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .fac-grid { grid-template-columns: repeat(2, 1fr); }
  .included-grid { grid-template-columns: repeat(2, 1fr); }
  .show-row { grid-template-columns: 1fr; gap: 40px; }
  .show-row.flip .show-media { order: 0; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 620px) {
  #hero { padding: 130px 0 60px; }
  .section { padding: 64px 0; }
  .card-grid { grid-template-columns: 1fr; }
  .fac-grid { grid-template-columns: 1fr; }
  .included-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-grid .polaroid img { height: 300px; }
  .hero-strip .polaroid { width: 45%; min-width: 150px; }
  .hero-strip .polaroid img { height: 140px; }
  .hero-logo-line img { height: 52px; }
  .hero-actions { margin-bottom: 44px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .invite-card { padding: 48px 26px; }
  .review-bubble { flex: 0 0 86%; }
  .btn { padding: 13px 22px; font-size: 0.95rem; }
  .rule-item { flex-direction: column; gap: 14px; }
  .page-hero { padding: 120px 0 54px; }
  .page-hero .hand { font-size: 1.4rem; max-width: 100%; transform: rotate(-1deg); }
  .hand { font-size: 1.4rem; }
  .invite-card h2 { font-size: 1.7rem; }
}
