/* ============================================================
   XV AÑOS — styles.css
   Paleta: Rose Gold · Blush · Champagne · Rosa Profundo · Perla
   ============================================================ */

/* === VARIABLES ============================================= */
:root {
  --pearl:        #FDF8F5;
  --blush:        #F4C2C2;
  --blush-pale:   #FAE8E8;
  --champagne:    #F7E7CE;
  --rose-gold:    #C9956C;
  --rose-dark:    #A06040;
  --deep-rose:    #A83255;
  --deep-rose-dk: #8A2244;
  --gold:         #C8A96E;
  --gold-pale:    #F0E0C0;
  --dark:         #2C1A1A;
  --text:         #4A3030;
  --text-light:   #9A7A7A;
  --border:       rgba(201,149,108,.28);
  --shadow:       rgba(168,50,85,.06);
  --radius:       2px;
}

/* === RESET & BASE ========================================== */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Lato', sans-serif;
  font-weight: 300;
  font-size: 1rem;
  color: var(--text);
  background-color: var(--pearl);
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', serif;
  margin: 0;
}
p { margin: 0; }
img { max-width: 100%; display: block; }

/* === PARTÍCULAS FLOTANTES ================================== */
.particles {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.particles span {
  position: absolute;
  display: block;
  border-radius: 50%;
  opacity: 0;
  animation: floatUp var(--dur, 12s) var(--delay, 0s) infinite ease-in;
  background: radial-gradient(circle, rgba(201,149,108,.35), transparent 70%);
}

.particles span:nth-child(1)  { width:12px; height:12px; left:10%; --dur:14s; --delay:0s;    }
.particles span:nth-child(2)  { width:8px;  height:8px;  left:25%; --dur:11s; --delay:2s;    }
.particles span:nth-child(3)  { width:16px; height:16px; left:40%; --dur:13s; --delay:1s;    }
.particles span:nth-child(4)  { width:6px;  height:6px;  left:60%; --dur:15s; --delay:3s;    }
.particles span:nth-child(5)  { width:10px; height:10px; left:75%; --dur:10s; --delay:.5s;   }
.particles span:nth-child(6)  { width:14px; height:14px; left:85%; --dur:12s; --delay:4s;    }
.particles span:nth-child(7)  { width:7px;  height:7px;  left:15%; --dur:16s; --delay:2.5s;  }
.particles span:nth-child(8)  { width:18px; height:18px; left:50%; --dur:9s;  --delay:1.5s;  }
.particles span:nth-child(9)  { width:9px;  height:9px;  left:68%; --dur:13s; --delay:0.8s;  }
.particles span:nth-child(10) { width:11px; height:11px; left:35%; --dur:11s; --delay:3.5s;  }

@keyframes floatUp {
  0%   { transform: translateY(110vh) scale(.5); opacity: 0;   }
  15%  { opacity: .7; }
  85%  { opacity: .4; }
  100% { transform: translateY(-10vh) scale(1.1); opacity: 0; }
}

/* === SCROLL ANIMATIONS ===================================== */
.fade-in-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity .85s ease, transform .85s ease;
  transition-delay: var(--delay, 0s);
}
.fade-in-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity .85s ease, transform .85s ease;
  transition-delay: var(--delay, 0s);
}
.fade-in-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity .85s ease, transform .85s ease;
}
.animate-in {
  opacity: 1 !important;
  transform: translate(0) !important;
}

/* === NAVBAR ================================================ */
#mainNav {
  background: transparent;
  transition: background .4s, padding .4s, box-shadow .4s;
  padding: 1.4rem 0;
  z-index: 1000;
}
#mainNav.scrolled {
  background: rgba(253,248,245,.96);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 2px 24px var(--shadow);
  padding: .75rem 0;
}
#mainNav .navbar-brand {
  font-family: 'Great Vibes', cursive;
  font-size: 1.7rem;
  color: #fff;
  letter-spacing: 2px;
  transition: color .4s;
}
#mainNav.scrolled .navbar-brand { color: var(--deep-rose); }

#mainNav .nav-link {
  color: rgba(255,255,255,.9);
  font-size: .78rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: .4rem .8rem;
  transition: color .3s;
}
#mainNav.scrolled .nav-link { color: var(--dark); }
#mainNav .nav-link:hover,
#mainNav .nav-link:focus { color: var(--rose-gold) !important; }

#mainNav .navbar-toggler {
  border-color: rgba(255,255,255,.5);
}
#mainNav.scrolled .navbar-toggler {
  border-color: var(--border);
}
#mainNav .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255,255,255,0.85%29' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}
#mainNav.scrolled .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2844,26,26,0.8%29' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* === HERO ================================================== */
.hero-section {
  min-height: 100vh;
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(140deg, rgba(97,18,51,.92) 0%, rgba(168,50,85,.86) 36%, rgba(244,194,194,.82) 68%, rgba(247,231,206,.9) 100%),
    linear-gradient(45deg, #4e102d 0%, #a83255 48%, #f7e7ce 100%);
  background-size: 160% 160%;
  background-position: center;
  background-attachment: fixed;
  animation: heroGradientFlow 16s ease-in-out infinite alternate;
}
@media (max-width: 767px) {
  .hero-section { background-attachment: scroll; }
}

.hero-section::before,
.hero-section::after {
  content: '';
  position: absolute;
  pointer-events: none;
  z-index: 1;
}

.hero-section::before {
  inset: -18%;
  opacity: .42;
  background:
    radial-gradient(ellipse at 18% 24%, rgba(255,255,255,.38) 0 1px, transparent 2px 100%),
    radial-gradient(ellipse at 78% 16%, rgba(247,231,206,.52) 0 1px, transparent 2px 100%),
    radial-gradient(ellipse at 65% 84%, rgba(255,255,255,.28) 0 1px, transparent 2px 100%),
    conic-gradient(from 20deg at 12% 72%, transparent 0 18deg, rgba(247,231,206,.16) 19deg 39deg, transparent 40deg 70deg, rgba(255,255,255,.12) 71deg 90deg, transparent 91deg),
    conic-gradient(from 210deg at 88% 30%, transparent 0 20deg, rgba(255,255,255,.18) 21deg 44deg, transparent 45deg 82deg, rgba(247,231,206,.18) 83deg 105deg, transparent 106deg);
  filter: blur(.2px);
  animation: heroPetalsDrift 22s ease-in-out infinite alternate;
}

.hero-section::after {
  inset: 0;
  opacity: .58;
  background:
    radial-gradient(circle at 24% 35%, rgba(255,255,255,.76) 0 1px, transparent 2px),
    radial-gradient(circle at 74% 28%, rgba(247,231,206,.92) 0 1px, transparent 2px),
    radial-gradient(circle at 86% 64%, rgba(255,255,255,.72) 0 1px, transparent 2px),
    radial-gradient(circle at 36% 78%, rgba(247,231,206,.72) 0 1px, transparent 2px),
    linear-gradient(115deg, transparent 0 46%, rgba(255,255,255,.16) 48%, transparent 51% 100%);
  background-size: auto, auto, auto, auto, 260% 260%;
  animation: heroSparkleSweep 9s ease-in-out infinite;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(44,20,20,.56) 0%,
    rgba(168,50,85,.24) 48%,
    rgba(44,20,20,.46) 100%
  );
  z-index: 1;
}

.hero-overlay::before,
.hero-overlay::after {
  content: '';
  position: absolute;
  width: min(42vw, 460px);
  aspect-ratio: 1;
  border: 1px solid rgba(247,231,206,.22);
  transform: rotate(45deg);
  opacity: .45;
}

.hero-overlay::before {
  left: -10rem;
  bottom: 8%;
  box-shadow: inset 0 0 0 18px rgba(255,255,255,.03);
}

.hero-overlay::after {
  right: -9rem;
  top: 12%;
  box-shadow: inset 0 0 0 14px rgba(247,231,206,.05);
}

.hero-content {
  position: relative;
  z-index: 2;
  color: #fff;
  padding: 1.5rem 1rem;
}

.hero-pre {
  font-family: 'Lato', sans-serif;
  font-size: .8rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: rgba(255,255,255,.75);
  margin-bottom: 1rem;
}

.hero-xv-badge {
  font-family: 'Great Vibes', cursive;
  font-size: clamp(5rem, 15vw, 10rem);
  color: var(--gold-pale);
  line-height: 1;
  text-shadow: 0 4px 30px rgba(200,169,110,.5);
  margin-bottom: -.5rem;
}

.hero-name {
  font-family: 'Great Vibes', cursive;
  font-size: clamp(3rem, 10vw, 6.5rem);
  font-weight: 400;
  color: #fff;
  text-shadow: 0 2px 24px rgba(0,0,0,.35);
  line-height: 1.1;
}

.hero-apellido {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1rem, 3vw, 1.5rem);
  font-weight: 300;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: var(--gold-pale);
  margin-top: .5rem;
  margin-bottom: 1.5rem;
}

.hero-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  margin: 1.25rem 0;
}
.hero-divider span {
  display: block;
  width: 60px;
  height: 1px;
  background: rgba(247,231,206,.6);
}
.hero-divider i {
  color: var(--gold-pale);
  font-size: 1.2rem;
}

.hero-date {
  font-size: clamp(.9rem, 3vw, 1.25rem);
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255,255,255,.9);
  margin-bottom: .5rem;
  font-weight: 400;
}
.hero-location {
  font-size: .9rem;
  color: rgba(255,255,255,.65);
  letter-spacing: 1px;
}

@keyframes heroIn {
  from { opacity: 0; transform: translateY(32px); }
  to   { opacity: 1; transform: translateY(0); }
}
.animate-hero { animation: heroIn 1.4s ease forwards; }

@keyframes heroGradientFlow {
  from { background-position: 0% 45%; }
  to   { background-position: 100% 55%; }
}

@keyframes heroPetalsDrift {
  from { transform: translate3d(-1.5%, -1%, 0) rotate(-1deg); }
  to   { transform: translate3d(1.5%, 1%, 0) rotate(1deg); }
}

@keyframes heroSparkleSweep {
  0%, 100% { background-position: 0 0, 0 0, 0 0, 0 0, 0% 50%; }
  50%      { background-position: 0 0, 0 0, 0 0, 0 0, 100% 50%; }
}

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
.scroll-indicator span {
  display: block;
  width: 22px;
  height: 36px;
  border: 2px solid rgba(255,255,255,.5);
  border-radius: 12px;
  position: relative;
}
.scroll-indicator span::before {
  content: '';
  position: absolute;
  top: 5px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 8px;
  background: rgba(255,255,255,.75);
  border-radius: 2px;
  animation: scrollBounce 1.6s infinite;
}
@keyframes scrollBounce {
  0%,100% { transform: translateX(-50%) translateY(0);    opacity: 1; }
  50%      { transform: translateX(-50%) translateY(10px); opacity: .2; }
}

/* === BUTTONS =============================================== */
.btn-hero {
  background: transparent;
  border: 1px solid rgba(255,255,255,.6);
  color: #fff;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  font-size: .75rem;
  padding: .75rem 2.5rem;
  border-radius: var(--radius);
  text-decoration: none;
  display: inline-block;
  transition: all .3s;
}
.btn-hero:hover {
  background: var(--rose-gold);
  border-color: var(--rose-gold);
  color: #fff;
}

.btn-rose {
  background: var(--deep-rose);
  border: none;
  color: #fff;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: .75rem;
  padding: .85rem 2.5rem;
  border-radius: var(--radius);
  text-decoration: none;
  display: inline-block;
  font-weight: 400;
  transition: all .3s;
}
.btn-rose:hover {
  background: var(--deep-rose-dk);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(168,50,85,.35);
}

.btn-calendar {
  background: #fff;
  border: 2px solid var(--rose-gold);
  color: var(--rose-dark);
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: .75rem;
  padding: .85rem 2.5rem;
  border-radius: var(--radius);
  text-decoration: none;
  display: inline-block;
  font-weight: 400;
  transition: all .3s;
}
.btn-calendar:hover {
  background: var(--rose-gold);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(201,149,108,.35);
}

.btn-whatsapp {
  background: #25D366;
  border: none;
  color: #fff;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: .85rem;
  padding: 1rem 3rem;
  border-radius: var(--radius);
  text-decoration: none;
  display: inline-block;
  font-weight: 400;
  transition: all .3s;
}
.btn-whatsapp:hover {
  background: #1daa54;
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(37,211,102,.4);
}

/* === SHARED SECTION STYLES ================================= */
section { padding: 6rem 0; position: relative; z-index: 1; }

.section-label {
  font-family: 'Lato', sans-serif;
  font-size: .75rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--rose-gold);
  margin-bottom: .5rem;
}

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 400;
  color: var(--deep-rose);
}

.title-divider {
  width: 48px;
  height: 2px;
  background: linear-gradient(to right, var(--deep-rose), var(--rose-gold));
  margin: 1rem auto;
  border-radius: 1px;
}

/* === COUNTDOWN ============================================= */
.countdown-section {
  background: linear-gradient(135deg, var(--champagne) 0%, var(--blush-pale) 100%);
  padding: 5.5rem 0;
}

.countdown-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: nowrap;
}

.countdown-box {
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: 0 6px 32px var(--shadow);
  border-radius: 4px;
  padding: 1.5rem 2rem;
  min-width: 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.countdown-box::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(to right, var(--deep-rose), var(--rose-gold));
}

.cd-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.5rem, 7vw, 4rem);
  font-weight: 600;
  color: var(--deep-rose);
  line-height: 1;
  transition: transform .2s ease;
}

.cd-flip { animation: cdFlip .35s ease; }
@keyframes cdFlip {
  0%   { transform: scaleY(1); }
  30%  { transform: scaleY(0); }
  60%  { transform: scaleY(1); }
}

.cd-label {
  font-size: .65rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-light);
  margin-top: .4rem;
}

.countdown-sep {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem;
  color: var(--rose-gold);
  line-height: 1;
  opacity: .7;
  margin-bottom: 1.4rem;
  animation: blink 1.2s step-end infinite;
}
@keyframes blink { 50% { opacity: .15; } }

.countdown-msg {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.25rem;
  color: var(--deep-rose);
  opacity: .8;
}

/* === ABOUT SECTION ========================================= */
.about-section {
  background: var(--pearl);
  padding: 6rem 0;
}

.about-photo-wrap {
  position: relative;
  display: inline-block;
  width: 100%;
}

.about-photo {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: top;
  border-radius: 2px;
  box-shadow: 0 12px 40px rgba(168,50,85,.15);
  position: relative;
  z-index: 1;
}

.about-photo-frame {
  position: absolute;
  top: 1rem;
  left: 1rem;
  right: -1rem;
  bottom: -1rem;
  border: 2px solid var(--rose-gold);
  border-radius: 2px;
  z-index: 0;
  opacity: .5;
}

.about-photo-badge {
  position: absolute;
  bottom: 1.5rem;
  right: -.5rem;
  z-index: 2;
  background: var(--deep-rose);
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(168,50,85,.4);
}

.badge-num {
  font-family: 'Great Vibes', cursive;
  color: #fff;
  font-size: 1.5rem;
  line-height: 1;
}

.about-quote {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: clamp(1.2rem, 3vw, 1.7rem);
  font-weight: 300;
  color: var(--deep-rose);
  line-height: 1.85;
  border-left: 3px solid var(--rose-gold);
  padding-left: 1.5rem;
  margin: 1.5rem 0 1rem;
  background: none;
}

.about-firma {
  font-family: 'Great Vibes', cursive;
  font-size: 1.5rem;
  color: var(--rose-gold);
}

/* === FAMILY / PADRES ======================================= */
.family-section {
  background: linear-gradient(135deg, var(--blush-pale) 0%, var(--champagne) 100%);
}

.family-card {
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: 0 6px 32px var(--shadow);
  padding: 2.5rem 2rem;
  position: relative;
}
.family-card::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 60px; height: 3px;
  background: linear-gradient(to right, var(--deep-rose), var(--rose-gold));
}

.family-icon {
  font-size: 2rem;
  color: var(--rose-gold);
  margin-bottom: 1.25rem;
}

.parent-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  color: var(--dark);
  margin: .35rem 0;
}

.family-amp {
  font-family: 'Great Vibes', cursive;
  font-size: 1.8rem;
  color: var(--rose-gold);
  display: block;
  margin: .2rem 0;
}

/* === PADRINOS ============================================== */
.padrino-card {
  background: #fff;
  border: 1px solid var(--border);
  padding: 2rem 1.5rem;
  text-align: center;
  height: 100%;
  transition: transform .3s, box-shadow .3s, border-color .3s;
}
.padrino-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 36px var(--shadow);
  border-color: var(--rose-gold);
}
.padrino-icon {
  font-size: 2rem;
  color: var(--rose-gold);
  margin-bottom: 1rem;
}
.padrino-cat {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.15rem;
  color: var(--deep-rose);
  margin-bottom: .5rem;
}
.padrino-name {
  font-size: .9rem;
  color: var(--text);
  margin: 0;
  font-weight: 400;
}

/* === EVENT SECTIONS ======================================== */
.event-section { background: var(--pearl); }
.event-section--alt { background: var(--blush-pale); }

.event-card {
  background: #fff;
  padding: 3.5rem 3rem;
  text-align: center;
  border: 1px solid var(--border);
  box-shadow: 0 6px 40px var(--shadow);
  position: relative;
}
.event-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(to right, var(--deep-rose), var(--rose-gold), var(--deep-rose));
}
.event-icon {
  font-size: 2.5rem;
  color: var(--rose-gold);
  margin-bottom: 1rem;
}
.event-label {
  font-size: .72rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--rose-gold);
  margin-bottom: .25rem;
}
.event-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  font-weight: 400;
  color: var(--deep-rose);
}
.event-details { margin: 2rem 0; }
.event-detail-item {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 1rem;
  padding: .85rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 1rem;
  color: var(--text);
  text-align: left;
}
.event-detail-item:last-child { border-bottom: none; }
.event-detail-item i {
  color: var(--rose-gold);
  font-size: 1.1rem;
  flex-shrink: 0;
  margin-top: 3px;
  min-width: 20px;
}

/* === BANNER DECORATIVO ===================================== */
.banner-decorativo {
  min-height: 52vh;
  position: relative;
  /* IMAGEN BANNER: cambia en css/styles.css → .banner-decorativo { background-image: url('...') } */
  background-image: url('https://images.unsplash.com/photo-1487530811015-780b4e2b76fa?w=1920&q=80');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}
@media (max-width: 767px) {
  .banner-decorativo { background-attachment: scroll; }
}
.banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(168,50,85,.68) 0%,
    rgba(44,26,26,.75) 100%
  );
}
.banner-content {
  position: relative;
  z-index: 2;
  padding: 2rem;
}
.banner-pre {
  font-family: 'Lato', sans-serif;
  font-size: .75rem;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--gold-pale);
  margin-bottom: .75rem;
}
.banner-text {
  font-family: 'Great Vibes', cursive;
  font-size: clamp(2rem, 7vw, 4.5rem);
  color: #fff;
  line-height: 1.3;
  margin-bottom: 1rem;
  text-shadow: 0 2px 16px rgba(0,0,0,.4);
}
.banner-ornament {
  font-size: .75rem;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--gold-pale);
}

/* === ITINERARY ============================================= */
.itinerary-section { background: #fff; }

.timeline {
  position: relative;
  padding: .5rem 0 .5rem 1rem;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 2rem;
  top: 0; bottom: 0;
  width: 1px;
  background: var(--border);
}
.timeline-item {
  display: flex;
  gap: 2rem;
  margin-bottom: 2rem;
  align-items: flex-start;
}
.timeline-item:last-child { margin-bottom: 0; }
.timeline-dot {
  width: 4rem;
  height: 4rem;
  flex-shrink: 0;
  background: var(--deep-rose);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.2rem;
  z-index: 1;
  box-shadow: 0 0 0 4px var(--pearl), 0 0 0 5px var(--border);
  transition: background .3s, transform .3s;
}
.timeline-item:hover .timeline-dot {
  background: var(--rose-gold);
  transform: scale(1.08);
}
.timeline-content { padding-top: .6rem; flex: 1; }
.timeline-time {
  display: block;
  font-size: .7rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--rose-gold);
  margin-bottom: .25rem;
}
.timeline-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.45rem;
  color: var(--deep-rose);
  margin-bottom: .2rem;
}
.timeline-desc {
  font-size: .88rem;
  color: var(--text-light);
}

/* === DRESSCODE ============================================= */
.dresscode-section { background: var(--blush-pale); }

.dresscode-card {
  background: #fff;
  padding: 3.5rem 3rem;
  border: 1px solid var(--border);
  box-shadow: 0 6px 32px var(--shadow);
}
.dresscode-badge {
  font-size: 3.2rem;
  color: var(--deep-rose);
  margin-bottom: 1.5rem;
}
.dresscode-type {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  color: var(--deep-rose);
  margin-bottom: 1rem;
}
.dresscode-desc {
  font-size: 1rem;
  color: var(--text);
  line-height: 1.85;
  max-width: 500px;
  margin: 0 auto 2rem;
}
.color-palette { margin: 2rem 0; }
.palette-label {
  font-size: .72rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 1rem;
}
.palette-swatches {
  display: flex;
  justify-content: center;
  gap: .85rem;
  flex-wrap: wrap;
}
.swatch {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: inline-block;
  box-shadow: 0 3px 12px rgba(0,0,0,.18);
  cursor: default;
  transition: transform .25s;
}
.swatch:hover { transform: scale(1.25); }
.dresscode-note {
  background: var(--champagne);
  border-left: 3px solid var(--rose-gold);
  padding: 1rem 1.5rem;
  font-size: .9rem;
  color: var(--text);
  text-align: left;
  margin-top: 1.5rem;
}

/* === CALENDAR SECTION ====================================== */
.calendar-section {
  background: linear-gradient(135deg, var(--champagne), var(--blush-pale));
  padding: 5rem 0;
}
.calendar-icon { font-size: 3.5rem; color: var(--rose-gold); }
.cal-sub { color: var(--text-light); font-size: .95rem; }

/* === RSVP ================================================== */
.rsvp-section {
  background: var(--deep-rose);
  padding: 6rem 0;
}
.rsvp-section .section-label { color: var(--gold-pale); }
.rsvp-section .section-title { color: #fff; }
.rsvp-section .title-divider { background: var(--gold-pale); }
.rsvp-icon {
  font-size: 3.5rem;
  color: var(--gold-pale);
  margin-bottom: 1.5rem;
}
.rsvp-text {
  font-size: 1.05rem;
  line-height: 1.85;
  color: rgba(255,255,255,.88);
}
.rsvp-note {
  font-size: .85rem;
  color: rgba(255,255,255,.6);
}
.rsvp-note .bi-heart-fill { color: var(--gold-pale); }

/* === FOOTER ================================================ */
.site-footer {
  background: var(--dark);
  color: #fff;
  padding: 4.5rem 0;
}
.footer-crown {
  font-size: 2.5rem;
  color: var(--rose-gold);
  margin-bottom: 1rem;
}
.footer-name {
  font-family: 'Great Vibes', cursive;
  font-size: clamp(2rem, 6vw, 3.5rem);
  font-weight: 400;
  color: #fff;
  margin-bottom: .25rem;
}
.footer-xv {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--rose-gold);
  margin-bottom: .5rem;
}
.footer-date {
  font-size: .8rem;
  letter-spacing: 3px;
  color: var(--gold-pale);
  margin-bottom: 1.5rem;
}
.footer-message {
  font-size: .95rem;
  opacity: .7;
  line-height: 1.9;
  margin-bottom: 1.5rem;
}
.footer-divider {
  width: 50px;
  height: 1px;
  background: var(--rose-gold);
  margin: 1.5rem auto;
  opacity: .4;
}
.footer-copy {
  font-size: .78rem;
  opacity: .45;
}
.footer-copy .bi-heart-fill { color: var(--deep-rose); }

/* === RESPONSIVE ============================================ */
@media (max-width: 991px) {
  #navbarNav {
    background: rgba(253,248,245,.97);
    padding: 1rem 1.25rem;
    border-top: 1px solid var(--border);
    margin-top: .5rem;
  }
  #navbarNav .nav-link {
    color: var(--dark) !important;
    padding: .6rem 0;
    border-bottom: 1px solid var(--border);
  }
  #navbarNav .nav-link:last-child { border-bottom: none; }
}

@media (max-width: 767px) {
  section { padding: 4rem 0; }
  .event-card { padding: 2.5rem 1.5rem; }
  .dresscode-card { padding: 2.5rem 1.5rem; }
  .timeline::before { left: 1.5rem; }
  .timeline-dot { width: 3rem; height: 3rem; font-size: 1rem; }
  .timeline-item { gap: 1.25rem; }
  .about-photo-frame { display: none; }
  .countdown-box { padding: 1.2rem 1rem; min-width: 70px; }
  .countdown-grid { gap: .5rem; }
}

@media (max-width: 480px) {
  .countdown-box { min-width: 60px; padding: 1rem .75rem; }
  .cd-num { font-size: 2rem; }
  .countdown-sep { font-size: 1.8rem; }
  .swatch { width: 38px; height: 38px; }
}
