/* =============================================
   Abhi & Palak Wedding Website - Main Styles
   Theme: Royal Rajasthani Elegance
   Colors: Crimson/Maroon + Gold + Ivory
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,600&family=Cinzel:wght@400;600;700&family=Lato:wght@300;400;700&display=swap');

:root {
  --crimson: #8B0000;
  --maroon: #6B0F0F;
  --gold: #C9A84C;
  --gold-light: #E8D5A3;
  --ivory: #FAF6EF;
  --ivory-dark: #F0E8D8;
  --dark: #1A0A0A;
  --text: #3D2B1F;
  --text-light: #7A5C4F;
  --white: #FFFFFF;
  --shadow: rgba(139, 0, 0, 0.15);
  --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

html { scroll-behavior: smooth; }

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

/* ---- TYPOGRAPHY ---- */
h1, h2, h3, .font-cinzel { font-family: 'Cinzel', serif; }
h4, h5, h6, .font-cormorant { font-family: 'Cormorant Garamond', serif; }

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 600;
  font-style: italic;
  color: var(--crimson);
  line-height: 1.1;
}
.section-subtitle {
  font-family: 'Cinzel', serif;
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

/* ---- ORNAMENT DIVIDERS ---- */
.ornament {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 1rem 0;
}
.ornament::before, .ornament::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.ornament-icon {
  color: var(--gold);
  font-size: 1.2rem;
  flex-shrink: 0;
}

/* ---- NAVBAR ---- */
.navbar-wedding {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: var(--transition);
  background: transparent;
}
.navbar-wedding.scrolled {
  background: rgba(26, 10, 10, 0.97);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 30px rgba(0,0,0,0.3);
}
.navbar-wedding > .container {
  padding-top: 0.8rem;
  padding-bottom: 0.8rem;
}
.navbar-wedding.scrolled > .container {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
.navbar-brand-custom {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  text-decoration: none;
  flex-shrink: 0;
}
.navbar-logo {
  height: 46px;
  width: auto;
  filter: drop-shadow(0 0 8px rgba(201,168,76,0.4));
  transition: height 0.3s;
}
.navbar-wedding.scrolled .navbar-logo { height: 38px; }
.navbar-brand-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 600;
  font-style: italic;
  color: var(--gold-light);
  letter-spacing: 0.04em;
  white-space: nowrap;
}

/* Desktop nav links */
.nav-links-desktop {
  display: flex;
  align-items: center;
  gap: 0.2rem;
}
.nav-link-custom {
  font-family: 'Cinzel', serif;
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  padding: 0.5rem 0.75rem;
  transition: color 0.3s;
  position: relative;
  text-decoration: none;
  white-space: nowrap;
}
.nav-link-custom::after {
  content: '';
  position: absolute;
  bottom: 2px; left: 50%; right: 50%;
  height: 1px;
  background: var(--gold);
  transition: var(--transition);
}
.nav-link-custom:hover { color: var(--gold); }
.nav-link-custom:hover::after { left: 0.75rem; right: 0.75rem; }

/* Hamburger button */
.navbar-toggler-custom {
  display: none;
  border: 1px solid rgba(201,168,76,0.5);
  padding: 0.3rem 0.6rem;
  background: transparent;
  color: var(--gold);
  cursor: pointer;
  border-radius: 4px;
  line-height: 1;
  transition: var(--transition);
}
.navbar-toggler-custom:hover { background: rgba(201,168,76,0.1); }

/* Mobile dropdown menu */
#navMobileMenu {
  display: none;
  background: rgba(20, 6, 6, 0.98);
  border-top: 1px solid rgba(201,168,76,0.15);
  padding: 0.5rem 0 1rem;
}
#navMobileMenu .container {
  display: flex;
  flex-direction: column;
}
#navMobileMenu .nav-link-custom {
  padding: 0.7rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  font-size: 0.72rem;
}
#navMobileMenu .nav-link-custom:last-child { border-bottom: none; }
#navMobileMenu .nav-link-custom::after { display: none; }

/* Responsive breakpoint */
@media (max-width: 900px) {
  .nav-links-desktop { display: none; }
  .navbar-toggler-custom { display: block; }
}
@media (max-width: 480px) {
  .navbar-brand-text { display: none; }
  .navbar-logo { height: 40px; }
}

/* ---- HERO SECTION ---- */
#hero {
  height: 100vh;
  min-height: 600px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-slider {
  position: absolute;
  inset: 0;
}
.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.5s ease;
}
.hero-slide.active { opacity: 1; }
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(26,10,10,0.5) 0%,
    rgba(26,10,10,0.3) 40%,
    rgba(26,10,10,0.7) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: white;
  padding: 2rem;
}
.hero-logo {
  width: 120px;
  margin-bottom: 1.5rem;
  filter: drop-shadow(0 0 20px rgba(201,168,76,0.6));
  animation: floatLogo 6s ease-in-out infinite;
}
@keyframes floatLogo {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
.hero-names {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3.5rem, 10vw, 7rem);
  font-weight: 600;
  font-style: italic;
  color: white;
  line-height: 1;
  text-shadow: 0 4px 30px rgba(0,0,0,0.5);
  animation: fadeInUp 1.2s ease both;
}
.hero-ampersand {
  color: var(--gold);
  font-size: 0.7em;
}
.hero-date {
  font-family: 'Cinzel', serif;
  font-size: clamp(0.75rem, 2vw, 1rem);
  letter-spacing: 0.4em;
  color: var(--gold-light);
  margin: 1rem 0;
  animation: fadeInUp 1.4s ease both;
}
.hero-venue {
  font-family: 'Lato', sans-serif;
  font-size: 1rem;
  color: rgba(255,255,255,0.8);
  animation: fadeInUp 1.6s ease both;
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.6);
  font-family: 'Cinzel', serif;
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  animation: bounce 2s infinite;
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ---- COUNTDOWN ---- */
#countdown {
  background: linear-gradient(135deg, var(--dark) 0%, #3D0000 100%);
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
}
#countdown::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23C9A84C' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.countdown-title {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  color: var(--gold-light);
  font-size: 1.2rem;
  text-align: center;
  margin-bottom: 2rem;
  letter-spacing: 0.1em;
}
.countdown-units {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.countdown-unit {
  text-align: center;
  min-width: 90px;
}
.countdown-num {
  font-family: 'Cinzel', serif;
  font-size: clamp(2.5rem, 7vw, 4.5rem);
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  display: block;
  text-shadow: 0 0 30px rgba(201,168,76,0.3);
}
.countdown-label {
  font-family: 'Cinzel', serif;
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-top: 0.4rem;
}
.countdown-sep {
  font-size: 3rem;
  color: var(--gold);
  opacity: 0.4;
  align-self: flex-start;
  padding-top: 0.5rem;
  font-family: 'Cinzel', serif;
}

/* ---- SECTIONS GENERAL ---- */
.section-pad { padding: 6rem 0; }
.section-pad-sm { padding: 4rem 0; }

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---- EVENTS SECTION ---- */
#events { background: var(--ivory); }

.event-card {
  background: white;
  border: 1px solid var(--gold-light);
  border-top: 4px solid var(--crimson);
  border-radius: 4px;
  padding: 2rem;
  height: 100%;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.event-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--crimson), var(--gold));
}
.event-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px var(--shadow);
}
.event-icon {
  width: 56px; height: 56px;
  background: linear-gradient(135deg, var(--crimson), var(--maroon));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  color: var(--gold-light);
  margin-bottom: 1.2rem;
  box-shadow: 0 8px 20px rgba(139,0,0,0.25);
}
.event-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  font-weight: 600;
  font-style: italic;
  color: var(--crimson);
  margin-bottom: 0.5rem;
}
.event-datetime {
  font-family: 'Cinzel', serif;
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 0.8rem;
}
.event-venue {
  font-size: 0.9rem;
  color: var(--text-light);
  margin-bottom: 0.5rem;
}
.event-dress {
  display: inline-block;
  background: var(--ivory-dark);
  border: 1px solid var(--gold-light);
  color: var(--text-light);
  font-size: 0.75rem;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-family: 'Cinzel', serif;
  letter-spacing: 0.1em;
}
.map-link {
  color: var(--crimson);
  font-size: 0.8rem;
  text-decoration: none;
  font-family: 'Cinzel', serif;
  letter-spacing: 0.1em;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  transition: color 0.3s;
  margin-top: 0.8rem;
}
.map-link:hover { color: var(--gold); }

/* ---- LOVE STORY ---- */
#love-story { background: var(--ivory-dark); }

.timeline {
  position: relative;
  padding: 2rem 0;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--gold), var(--crimson), var(--gold));
  transform: translateX(-50%);
}
@media (max-width: 768px) {
  .timeline::before { left: 2rem; }
}
.timeline-item {
  display: flex;
  margin-bottom: 3rem;
  position: relative;
}
.timeline-item:nth-child(even) { flex-direction: row-reverse; }
@media (max-width: 768px) {
  .timeline-item, .timeline-item:nth-child(even) {
    flex-direction: column;
    padding-left: 4rem;
  }
}
.timeline-dot {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 20px; height: 20px;
  background: var(--crimson);
  border: 3px solid var(--gold);
  border-radius: 50%;
  z-index: 2;
  top: 1.5rem;
  box-shadow: 0 0 15px rgba(201,168,76,0.4);
}
@media (max-width: 768px) {
  .timeline-dot { left: 2rem; }
}
.timeline-content {
  width: calc(50% - 3rem);
  padding: 1.5rem;
  background: white;
  border: 1px solid var(--gold-light);
  border-radius: 4px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}
.timeline-item:nth-child(odd) .timeline-content { margin-left: auto; text-align: left; }
.timeline-item:nth-child(even) .timeline-content { margin-right: auto; text-align: right; }
@media (max-width: 768px) {
  .timeline-content { width: 100%; text-align: left !important; }
}
.timeline-year {
  font-family: 'Cinzel', serif;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  color: var(--gold);
  text-transform: uppercase;
}
.timeline-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-style: italic;
  color: var(--crimson);
  margin: 0.3rem 0;
}
.timeline-image {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 2px;
  margin-top: 1rem;
  filter: sepia(20%);
  transition: filter 0.3s;
}
.timeline-image:hover { filter: sepia(0); }

/* ---- GALLERY ---- */
#gallery { background: var(--ivory); }

.album-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  margin-bottom: 2.5rem;
}
.album-tab {
  font-family: 'Cinzel', serif;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.5rem 1.2rem;
  border: 1px solid var(--gold-light);
  background: white;
  color: var(--text-light);
  border-radius: 20px;
  cursor: pointer;
  transition: var(--transition);
}
.album-tab.active, .album-tab:hover {
  background: var(--crimson);
  border-color: var(--crimson);
  color: white;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 1rem;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  aspect-ratio: 3/4;
  cursor: pointer;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(26,10,10,0.8));
  opacity: 0;
  transition: opacity 0.4s;
  display: flex;
  align-items: flex-end;
  padding: 1rem;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-caption {
  color: white;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1rem;
}

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0,0,0,0.95);
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.lightbox.open { display: flex; }
.lightbox-img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border: 2px solid rgba(201,168,76,0.3);
}
.lightbox-close {
  position: absolute;
  top: 1.5rem; right: 2rem;
  color: white;
  font-size: 2rem;
  cursor: pointer;
  background: none;
  border: none;
  opacity: 0.7;
  transition: opacity 0.3s;
}
.lightbox-close:hover { opacity: 1; color: var(--gold); }
.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: white;
  width: 50px; height: 50px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  font-size: 1.2rem;
}
.lightbox-nav:hover { background: var(--crimson); border-color: var(--crimson); }
.lightbox-prev { left: 1rem; }
.lightbox-next { right: 1rem; }

/* ---- RSVP SECTION ---- */
#rsvp { background: linear-gradient(135deg, #1A0A0A 0%, #3D0000 50%, #1A0A0A 100%); }

.rsvp-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: 8px;
  padding: 3rem;
  backdrop-filter: blur(10px);
  max-width: 700px;
  margin: 0 auto;
}
.form-label-wedding {
  font-family: 'Cinzel', serif;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 0.5rem;
}
.form-control-wedding {
  background: rgba(255,255,255,0.08) !important;
  border: 1px solid rgba(201,168,76,0.3) !important;
  color: white !important;
  border-radius: 4px;
  padding: 0.75rem 1rem;
  font-family: 'Lato', sans-serif;
  transition: border-color 0.3s;
}
.form-control-wedding::placeholder { color: rgba(255,255,255,0.3) !important; }
.form-control-wedding:focus {
  border-color: var(--gold) !important;
  box-shadow: 0 0 0 3px rgba(201,168,76,0.1) !important;
  outline: none;
}
.form-check-wedding .form-check-label {
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
}
.form-check-wedding .form-check-input:checked { background-color: var(--crimson); border-color: var(--crimson); }

/* ---- WISHES ---- */
#wishes { background: var(--ivory-dark); }

.wish-card {
  background: white;
  border: 1px solid var(--gold-light);
  border-radius: 4px;
  padding: 1.8rem;
  position: relative;
  transition: var(--transition);
}
.wish-card:hover { box-shadow: 0 10px 30px var(--shadow); transform: translateY(-3px); }
.wish-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem;
  line-height: 0.5;
  color: var(--gold-light);
  display: block;
  margin-bottom: 0.5rem;
}
.wish-text {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.1rem;
  color: var(--text);
  line-height: 1.8;
}
.wish-author {
  font-family: 'Cinzel', serif;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 1rem;
}
.wish-relation {
  font-size: 0.8rem;
  color: var(--text-light);
  font-style: italic;
}

.wish-form-card {
  background: white;
  border: 1px solid var(--gold-light);
  border-top: 3px solid var(--crimson);
  border-radius: 4px;
  padding: 2rem;
  margin-top: 2rem;
}

/* ---- BUTTONS ---- */
.btn-royal {
  font-family: 'Cinzel', serif;
  font-size: 0.72rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  padding: 0.85rem 2.5rem;
  background: linear-gradient(135deg, var(--crimson), var(--maroon));
  color: var(--gold-light);
  border: 1px solid var(--gold);
  border-radius: 0;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  text-decoration: none;
  display: inline-block;
  cursor: pointer;
}
.btn-royal::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--gold), #a07820);
  opacity: 0;
  transition: opacity 0.4s;
}
.btn-royal:hover::before { opacity: 1; }
.btn-royal:hover { color: var(--dark); }
.btn-royal span { position: relative; z-index: 1; }

.btn-ghost {
  font-family: 'Cinzel', serif;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 0.75rem 2rem;
  background: transparent;
  color: var(--gold-light);
  border: 1px solid rgba(201,168,76,0.4);
  border-radius: 0;
  transition: var(--transition);
  text-decoration: none;
  display: inline-block;
  cursor: pointer;
}
.btn-ghost:hover {
  background: rgba(201,168,76,0.1);
  border-color: var(--gold);
  color: var(--gold);
}

/* ---- FOOTER ---- */
footer {
  background: var(--dark);
  padding: 4rem 0 2rem;
  color: rgba(255,255,255,0.6);
  text-align: center;
}
.footer-logo { height: 70px; margin-bottom: 1.5rem; filter: brightness(0.9); }
.footer-names {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 2.5rem;
  color: var(--gold-light);
  margin-bottom: 0.5rem;
}
.footer-date {
  font-family: 'Cinzel', serif;
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  color: var(--gold);
  margin-bottom: 1.5rem;
}
.footer-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201,168,76,0.3), transparent);
  margin: 2rem 0;
}
.footer-credit {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.3);
  font-family: 'Cinzel', serif;
  letter-spacing: 0.1em;
  font-size: 0.65rem;
}

/* ---- CONTACT ---- */
#contact { background: var(--ivory); }
.contact-card {
  background: white;
  border: 1px solid var(--gold-light);
  padding: 2.5rem;
  text-align: center;
  transition: var(--transition);
}
.contact-card:hover { box-shadow: 0 10px 30px var(--shadow); }
.contact-icon {
  font-size: 2rem;
  color: var(--crimson);
  margin-bottom: 1rem;
}

/* ---- ANIMATIONS ---- */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* ---- TOAST ---- */
.toast-wedding {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background: var(--dark);
  color: white;
  border: 1px solid var(--gold);
  padding: 1rem 1.5rem;
  border-radius: 4px;
  z-index: 9999;
  font-family: 'Lato', sans-serif;
  font-size: 0.9rem;
  transform: translateY(100px);
  opacity: 0;
  transition: all 0.4s ease;
  max-width: 350px;
}
.toast-wedding.show { transform: translateY(0); opacity: 1; }
.toast-wedding.success { border-color: #4CAF50; }
.toast-wedding.error { border-color: var(--crimson); }

/* ---- MOBILE ---- */
@media (max-width: 576px) {
  .rsvp-card { padding: 1.5rem; }
  .countdown-units { gap: 0.8rem; }
  .countdown-unit { min-width: 65px; }
  .hero-logo { width: 80px; }
}

/* ---- ALERT SUCCESS ---- */
.alert-royal {
  background: rgba(201,168,76,0.1);
  border: 1px solid var(--gold);
  color: var(--text);
  border-radius: 4px;
  padding: 1rem 1.5rem;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.1rem;
}

/* ---- PAGE HERO (inner pages) ---- */
.page-hero {
  height: 40vh;
  min-height: 280px;
  background: linear-gradient(135deg, var(--dark), #3D0000);
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23C9A84C' fill-opacity='0.05'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/svg%3E");
}
.page-hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: clamp(2.5rem, 6vw, 5rem);
  color: white;
  position: relative;
}
.page-hero-sub {
  font-family: 'Cinzel', serif;
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  color: var(--gold);
  position: relative;
}
