/* ==========================================
   BLOOMIÈRE — Disco Bloom Wedding
   ========================================== */

:root {
  --midnight: #0D0A12;
  --gold: #D4AF37;
  --gold-light: #E8C96A;
  --gold-dim: rgba(212, 175, 55, 0.25);
  --gold-faint: rgba(212, 175, 55, 0.08);
  --ivory: #F0E6D8;
  --ivory-dim: rgba(240, 230, 216, 0.55);
  --blush: rgba(240, 200, 180, 0.08);
}

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

html { font-size: 16px; scroll-behavior: smooth; }

body {
  background: var(--midnight);
  color: var(--ivory);
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
}

/* ── SHIMMER ANIMATION ─────────────────── */
@keyframes shimmer-sweep {
  0%   { opacity: 0; transform: translateX(-100%) skewX(-15deg); }
  30%  { opacity: 0.35; }
  100% { opacity: 0; transform: translateX(200%) skewX(-15deg); }
}

@keyframes bloom-pulse {
  0%, 100% { opacity: 0.04; }
  50%       { opacity: 0.09; }
}

@keyframes scatter-flicker {
  0%, 100% { opacity: 0.08; }
  25%       { opacity: 0.14; }
  50%       { opacity: 0.06; }
  75%       { opacity: 0.12; }
}

@keyframes scroll-bounce {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(6px); }
}

@keyframes fade-up {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── SECTION LABEL ─────────────────────── */
.section-label {
  font-family: 'Jost', sans-serif;
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.7;
  margin-bottom: 1rem;
}

/* ══════════════════════════════════════════
   HERO
   ══════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding: 6rem 2rem;
}

/* Shimmer sweep across hero */
.hero__shimmer {
  position: absolute;
  top: 0; left: -60%;
  width: 60px; height: 100%;
  background: linear-gradient(90deg, transparent 0%, rgba(212,175,55,0.18) 50%, transparent 100%);
  animation: shimmer-sweep 5s ease-in-out infinite;
  pointer-events: none;
  z-index: 1;
}

.hero__content {
  position: relative;
  z-index: 2;
}

/* Radial scatter — simulates disco ball light */
.hero__scatter {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 30% 20% at 15% 30%, rgba(212,175,55,0.12) 0%, transparent 70%),
    radial-gradient(ellipse 25% 18% at 85% 65%, rgba(212,175,55,0.09) 0%, transparent 65%),
    radial-gradient(ellipse 18% 25% at 72% 20%, rgba(212,175,55,0.07) 0%, transparent 60%),
    radial-gradient(ellipse 22% 15% at 25% 70%, rgba(212,175,55,0.08) 0%, transparent 65%),
    radial-gradient(ellipse 40% 30% at 50% 0%, rgba(212,175,55,0.05) 0%, transparent 60%);
  animation: scatter-flicker 3s ease-in-out infinite;
  pointer-events: none;
}

/* Hero background image (faire-part) */
.hero__image-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(
    180deg,
    rgba(13,10,18,0.35) 0%,
    rgba(13,10,18,0.55) 40%,
    rgba(13,10,18,0.75) 70%,
    rgba(13,10,18,0.92) 100%
  );
}

/* Hero navigation */
.hero__nav {
  position: absolute;
  bottom: 5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  gap: 1.5rem;
  animation: fade-up 1s ease-out 1.3s both;
}

.hero__nav-link {
  font-family: 'Jost', sans-serif;
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--ivory-dim);
  padding: 0.5rem 1rem;
  border: 1px solid rgba(212,175,55,0.2);
  transition: all 0.3s ease;
}

.hero__nav-link:hover {
  color: var(--gold);
  border-color: var(--gold);
  background: rgba(212,175,55,0.08);
}

.hero__nav-link--accent {
  color: var(--gold);
  border-color: var(--gold);
  background: rgba(212,175,55,0.08);
}

.hero__nav-link--accent:hover {
  background: rgba(212,175,55,0.18);
}

/* Flower bloom in corner */
.hero__bloom {
  position: absolute;
  border-radius: 50%;
  animation: bloom-pulse 4s ease-in-out infinite;
  pointer-events: none;
}

/* Monogram */
.hero__monogram {
  position: relative;
  z-index: 1;
  margin-bottom: 2.5rem;
  animation: fade-up 1s ease-out 0.2s both;
}

.monogram-svg { width: 120px; height: 80px; }

/* Hero text */
.hero__eyebrow {
  position: relative;
  z-index: 1;
  font-family: 'Jost', sans-serif;
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.7;
  margin-bottom: 1.2rem;
  animation: fade-up 1s ease-out 0.4s both;
}

.hero__headline {
  position: relative;
  z-index: 1;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3.5rem, 10vw, 7rem);
  font-weight: 300;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--ivory);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4em;
  animation: fade-up 1s ease-out 0.6s both;
}

.hero__name {
  display: block;
}

.hero__ampersand {
  font-size: 0.6em;
  color: var(--gold);
  font-weight: 300;
  letter-spacing: 0;
}

.hero__rule {
  position: relative;
  z-index: 1;
  width: 80px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 2.5rem auto;
  animation: fade-up 1s ease-out 0.8s both;
}

.hero__date {
  position: relative;
  z-index: 1;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem;
  font-weight: 300;
  letter-spacing: 0.15em;
  color: var(--gold);
  animation: fade-up 1s ease-out 1s both;
}

.hero__location {
  position: relative;
  z-index: 1;
  font-family: 'Jost', sans-serif;
  font-size: 0.75rem;
  font-weight: 300;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ivory-dim);
  margin-top: 0.6rem;
  animation: fade-up 1s ease-out 1.1s both;
}

/* Scroll hint */
.hero__scroll-hint {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  animation: scroll-bounce 2s ease-in-out infinite, fade-up 1s ease-out 1.5s both;
  opacity: 0.5;
}

.scroll-dot { animation: scroll-bounce 2s ease-in-out infinite; }

/* ══════════════════════════════════════════
   COUPLE
   ══════════════════════════════════════════ */
.couple {
  background: linear-gradient(180deg, var(--midnight) 0%, #0F0D18 100%);
  padding: 8rem 2rem;
}

.couple__inner {
  max-width: 880px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 80px 1fr 80px;
  gap: 2rem;
  align-items: center;
}

.couple__text {
  text-align: center;
}

.couple__subtitle {
  font-family: 'Jost', sans-serif;
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.7;
  margin-bottom: 1.5rem;
}

.couple__heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 300;
  line-height: 1.3;
  color: var(--ivory);
  margin-bottom: 2rem;
}

.couple__heading em {
  font-style: italic;
  color: var(--gold);
}

.couple__body {
  font-size: 0.9rem;
  color: var(--ivory-dim);
  max-width: 520px;
  margin: 0 auto 2.5rem;
  line-height: 1.8;
}

.couple__count {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
}

.couple__count-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
}

.couple__count-label {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ivory-dim);
}

.floral-svg {
  width: 100%;
  height: 300px;
  opacity: 0.8;
}

/* ══════════════════════════════════════════
   SCHEDULE
   ══════════════════════════════════════════ */
.schedule {
  background: var(--midnight);
  padding: 8rem 2rem;
  position: relative;
  overflow: hidden;
}

.schedule::before {
  content: '';
  position: absolute;
  top: -200px; left: 50%; transform: translateX(-50%);
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(212,175,55,0.04) 0%, transparent 70%);
  pointer-events: none;
}

.schedule__header {
  max-width: 600px;
  margin: 0 auto 5rem;
  text-align: center;
}

.schedule__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 300;
  line-height: 1.2;
  color: var(--ivory);
}

.schedule__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5px;
  max-width: 900px;
  margin: 0 auto;
  background: var(--gold-dim);
  border: 1px solid var(--gold-dim);
}

.schedule__day {
  background: var(--midnight);
  padding: 2.5rem 2rem;
  position: relative;
  overflow: hidden;
  transition: background 0.3s ease;
}

.schedule__day:hover { background: #0F0D18; }

.schedule__glow {
  position: absolute;
  top: -50px; left: 50%; transform: translateX(-50%);
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(212,175,55,0.05) 0%, transparent 70%);
  pointer-events: none;
}

.schedule__day-header {
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
  margin-bottom: 1.5rem;
}

.schedule__day-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.5rem;
  font-weight: 300;
  color: var(--gold);
  opacity: 0.3;
  line-height: 1;
}

.schedule__day-meta { padding-top: 0.3rem; }

.schedule__day-date {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--ivory);
}

.schedule__day-full {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  color: var(--gold);
  opacity: 0.6;
  margin-top: 0.15rem;
}

.schedule__divider {
  width: 24px;
  height: 1px;
  background: var(--gold);
  opacity: 0.4;
  margin-bottom: 1.5rem;
}

.schedule__events { display: flex; flex-direction: column; gap: 1rem; }

.schedule__event {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.schedule__time {
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  color: var(--gold);
  opacity: 0.8;
}

.schedule__name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  font-weight: 400;
  color: var(--ivory-dim);
}

/* ══════════════════════════════════════════
   INFOS PRATIQUES
   ══════════════════════════════════════════ */
.infos {
  background: #0F0D18;
  padding: 8rem 2rem;
  border-top: 1px solid rgba(212,175,55,0.1);
}

.infos__layout {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

.infos__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem;
  font-weight: 300;
  color: var(--ivory);
  margin: 0.8rem 0 0.4rem;
}

.infos__address {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  color: var(--gold);
  opacity: 0.7;
  text-transform: uppercase;
  margin-bottom: 2rem;
}

.infos__map-wrapper {
  border: 1px solid rgba(212,175,55,0.2);
  overflow: hidden;
  border-radius: 8px;
}

.infos__map-wrapper iframe {
  display: block;
  width: 100%;
}

.infos__map-caption {
  text-align: center;
  margin-top: 0.5rem;
  font-family: 'Jost', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  color: rgba(212,175,55,0.5);
}

.infos__rsvp-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  font-weight: 300;
  color: var(--ivory);
  margin: 0.8rem 0 1rem;
}

.infos__rsvp-body {
  font-size: 0.85rem;
  color: var(--ivory-dim);
  line-height: 1.8;
  margin-bottom: 2rem;
}

.infos__rsvp-features {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.infos__rsvp-feature {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 0.82rem;
  color: var(--ivory-dim);
}

.infos__rsvp-icon { flex-shrink: 0; }

.infos__layout--single { grid-template-columns: 1fr; max-width: 700px; }

.infos__details {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.infos__detail {
  display: flex;
  gap: 0.8rem;
  align-items: flex-start;
}

.infos__detail-icon { flex-shrink: 0; margin-top: 0.2rem; }

.infos__detail-label {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 0.2rem;
}

.infos__detail-text {
  font-size: 0.85rem;
  color: var(--ivory-dim);
  line-height: 1.7;
}

/* ══════════════════════════════════════════
   RSVP FORM
   ══════════════════════════════════════════ */
.rsvp {
  background: var(--midnight);
  padding: 8rem 2rem;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(212,175,55,0.1);
}

.rsvp::before {
  content: '';
  position: absolute;
  top: -100px; left: 50%; transform: translateX(-50%);
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(212,175,55,0.04) 0%, transparent 70%);
  pointer-events: none;
}

.rsvp__inner {
  position: relative;
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.rsvp__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 300;
  line-height: 1.2;
  color: var(--ivory);
  margin-bottom: 0.5rem;
}

.rsvp__subtitle {
  font-size: 0.85rem;
  color: var(--ivory-dim);
  margin-bottom: 3rem;
}

.rsvp__form { text-align: left; }

.rsvp__field { margin-bottom: 1.5rem; }

.rsvp__label {
  display: block;
  font-family: 'Jost', sans-serif;
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.8;
  margin-bottom: 0.5rem;
}

.rsvp__required { color: var(--gold-light); }

.rsvp__input {
  width: 100%;
  padding: 0.85rem 1rem;
  background: rgba(240,230,216,0.04);
  border: 1px solid rgba(212,175,55,0.15);
  color: var(--ivory);
  font-family: 'Jost', sans-serif;
  font-size: 0.9rem;
  font-weight: 300;
  outline: none;
  transition: border-color 0.3s ease, background 0.3s ease;
}

.rsvp__input::placeholder { color: rgba(240,230,216,0.25); }

.rsvp__input:focus {
  border-color: var(--gold);
  background: rgba(212,175,55,0.04);
}

.rsvp__radio-group {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.rsvp__radio {
  display: flex;
  align-items: center;
  gap: 0;
  cursor: pointer;
}

.rsvp__radio input {
  appearance: none;
  -webkit-appearance: none;
  width: 0;
  height: 0;
  position: absolute;
  opacity: 0;
}

.rsvp__radio span {
  padding: 0.55rem 1.2rem;
  font-family: 'Jost', sans-serif;
  font-size: 0.8rem;
  font-weight: 300;
  color: var(--ivory-dim);
  border: 1px solid rgba(212,175,55,0.15);
  transition: all 0.3s ease;
}

.rsvp__radio input:checked + span {
  color: var(--gold);
  border-color: var(--gold);
  background: rgba(212,175,55,0.1);
}

.rsvp__radio span:hover {
  border-color: var(--gold);
  color: var(--ivory);
}

.rsvp__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.rsvp__row--3 { grid-template-columns: 1fr 1fr 1fr; }

.rsvp__submit {
  display: block;
  width: 100%;
  padding: 1rem;
  margin-top: 2rem;
  font-family: 'Jost', sans-serif;
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--midnight);
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  border: none;
  cursor: pointer;
  transition: opacity 0.3s ease, transform 0.2s ease;
}

.rsvp__submit:hover { opacity: 0.9; transform: translateY(-1px); }
.rsvp__submit:active { transform: translateY(0); }
.rsvp__submit:disabled { opacity: 0.5; cursor: wait; transform: none; }

.rsvp__feedback {
  margin-top: 1.5rem;
  padding: 1rem;
  font-size: 0.85rem;
  text-align: center;
  border: 1px solid;
}

.rsvp__feedback--success {
  color: #a8e6a0;
  border-color: rgba(168,230,160,0.3);
  background: rgba(168,230,160,0.06);
}

.rsvp__feedback--error {
  color: #e6a0a0;
  border-color: rgba(230,160,160,0.3);
  background: rgba(230,160,160,0.06);
}

/* ══════════════════════════════════════════
   CLOSING
   ══════════════════════════════════════════ */
.closing {
  background: var(--midnight);
  padding: 10rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.closing::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 50% 40% at 50% 50%, rgba(212,175,55,0.03) 0%, transparent 70%);
  pointer-events: none;
}

.closing__inner {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
}

.closing__floral-center {
  margin: 0 auto 3rem;
  width: 200px;
  animation: bloom-pulse 4s ease-in-out infinite;
}

.closing-svg { width: 100%; }

.closing__quote {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.1rem;
  color: var(--gold);
  opacity: 0.6;
  margin-bottom: 2rem;
  letter-spacing: 0.03em;
}

.closing__headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.5rem, 7vw, 5rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--ivory);
  margin-bottom: 2rem;
}

.closing__rule {
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 0 auto 1.5rem;
  opacity: 0.5;
}

.closing__names {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 300;
  letter-spacing: 0.2em;
  color: var(--gold);
}

/* ══════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════ */
.footer {
  background: #08060E;
  border-top: 1px solid rgba(212,175,55,0.1);
  padding: 3rem 2rem;
}

.footer__inner {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.footer__monogram svg { width: 60px; height: 40px; }

.footer__date {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  color: var(--ivory-dim);
}

.footer__copy {
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  color: var(--gold);
  opacity: 0.3;
}

/* ══════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════ */
@media (max-width: 768px) {
  .couple__inner { grid-template-columns: 40px 1fr 40px; }
  .schedule__grid { grid-template-columns: 1fr; gap: 1px; }
  .infos__layout { grid-template-columns: 1fr; gap: 4rem; }
  .hero__headline { flex-direction: column; gap: 0.2em; }
  .rsvp__row { grid-template-columns: 1fr; }
  .rsvp__row--3 { grid-template-columns: 1fr; }
  .hero__nav { gap: 0.8rem; flex-wrap: wrap; justify-content: center; }
}

@media (max-width: 480px) {
  .couple__inner { grid-template-columns: 1fr; }
  .couple__floral-left,
  .couple__floral-right { display: none; }
  .hero__nav { bottom: 3.5rem; }
  .hero__scroll-hint { display: none; }
}