/* ========== FONTS ========== */
@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,500;1,600;1,700&family=Josefin+Sans:wght@300;400;500;600;700&family=Great+Vibes&family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&display=swap');

/* ========== CSS VARIABLES ========== */
:root {
  --color-bg: #faf8f5;
  --color-bg-alt: #f3efe8;
  --color-text: #2c2420;
  --color-text-light: #6b5e54;
  --color-accent: #c4956a;
  --color-accent-dark: #a07a54;
  --color-accent-light: #e8d4c0;
  --color-gold: #c9a96e;
  --color-gold-light: #e8d9b4;
  --color-burgundy: #8b3a3a;
  --color-sage: #7a8c6e;
  --color-cream: #fdf8f0;
  --color-white: #ffffff;
  --color-border: rgba(201, 169, 110, 0.25);

  --font-display: 'Cormorant Garamond', serif;
  --font-body: 'Josefin Sans', sans-serif;
  --font-script: 'Great Vibes', cursive;
  --font-serif: 'Playfair Display', serif;

  --shadow-soft: 0 4px 30px rgba(44, 36, 32, 0.06);
  --shadow-medium: 0 8px 40px rgba(44, 36, 32, 0.10);
  --shadow-glow: 0 0 60px rgba(201, 169, 110, 0.15);

  --transition-smooth: all 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
  --transition-bounce: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

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

body {
  font-family: var(--font-body);
  background-color: var(--color-bg);
  color: var(--color-text);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

/* ========== LOADING SCREEN ========== */
.loading-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #fdf8f0 0%, #f3efe8 50%, #e8d9b4 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}

.loading-screen.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loading-monogram {
  font-family: var(--font-script);
  font-size: 5rem;
  color: var(--color-gold);
  animation: loadingPulse 1.5s ease-in-out infinite;
  margin-bottom: 1.5rem;
}

.loading-bar-container {
  width: 200px;
  height: 2px;
  background: var(--color-accent-light);
  border-radius: 10px;
  overflow: hidden;
}

.loading-bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--color-gold), var(--color-accent));
  border-radius: 10px;
  transition: width 0.3s ease;
}

@keyframes loadingPulse {
  0%, 100% { opacity: 0.5; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.05); }
}

/* ========== NAVIGATION ========== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 1.2rem 2rem;
  transition: var(--transition-smooth);
  background: transparent;
}

.nav.scrolled {
  background: rgba(250, 248, 245, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 30px rgba(0,0,0,0.05);
  padding: 0.8rem 2rem;
}

.nav-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: var(--font-script);
  font-size: 1.8rem;
  color: var(--color-gold);
  transition: var(--transition-smooth);
}

.nav.scrolled .nav-logo {
  color: var(--color-accent-dark);
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-links a {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--color-white);
  transition: var(--transition-smooth);
  position: relative;
  padding: 0.3rem 0;
}

.nav.scrolled .nav-links a {
  color: var(--color-text);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--color-gold);
  transition: width 0.4s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 5px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-white);
  transition: var(--transition-smooth);
}

.nav.scrolled .nav-toggle span {
  background: var(--color-text);
}

/* ========== HERO SECTION ========== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  overflow: hidden;
}

.hero-slider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
}

.hero-slide.active {
  opacity: 1;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transform: scale(1.05);
  animation: heroZoom 8s ease-in-out infinite alternate;
}

@keyframes heroZoom {
  0% { transform: scale(1.05); }
  100% { transform: scale(1.12); }
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    180deg,
    rgba(0,0,0,0.15) 0%,
    rgba(0,0,0,0.05) 30%,
    rgba(0,0,0,0.10) 60%,
    rgba(0,0,0,0.55) 100%
  );
  z-index: 2;
}

.hero-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 3;
  text-align: center;
  padding: 0 2rem 6rem;
  transform: translateY(0);
}

.hero-subtitle {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: var(--color-gold-light);
  margin-bottom: 1rem;
  opacity: 0;
  animation: fadeInUp 1s ease 0.3s forwards;
}

.hero-names {
  font-family: var(--font-display);
  font-size: 5rem;
  font-weight: 300;
  color: var(--color-white);
  line-height: 1.1;
  margin-bottom: 0.5rem;
  opacity: 0;
  animation: fadeInUp 1s ease 0.6s forwards;
  text-shadow: 0 2px 40px rgba(0,0,0,0.2);
}

.hero-names .ampersand {
  font-family: var(--font-script);
  font-size: 3.5rem;
  color: var(--color-gold-light);
  display: block;
  margin: 0.3rem 0;
}

.hero-date {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 300;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  margin-top: 1.2rem;
  opacity: 0;
  animation: fadeInUp 1s ease 0.9s forwards;
}

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  opacity: 0;
  animation: fadeInUp 1s ease 1.2s forwards;
}

.hero-scroll span {
  font-size: 0.6rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; height: 30px; }
  50% { opacity: 1; height: 45px; }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ========== SECTION COMMONS ========== */
.section {
  padding: 7rem 2rem;
  position: relative;
}

.section-container {
  max-width: 1000px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-tag {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 1rem;
  display: block;
}

.section-title {
  font-family: var(--font-display);
  font-size: 3.2rem;
  font-weight: 300;
  color: var(--color-text);
  line-height: 1.2;
}

.section-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 1.5rem;
}

.divider-line {
  width: 60px;
  height: 1px;
  background: var(--color-gold);
  opacity: 0.4;
}

.divider-dot {
  width: 6px;
  height: 6px;
  border: 1px solid var(--color-gold);
  transform: rotate(45deg);
}

/* ========== QUOTE SECTION ========== */
.quote-section {
  background: var(--color-cream);
  padding: 5rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.quote-section::before {
  content: '"';
  font-family: var(--font-display);
  font-size: 15rem;
  color: var(--color-gold);
  opacity: 0.07;
  position: absolute;
  top: -2rem;
  left: 50%;
  transform: translateX(-50%);
  line-height: 1;
}

.quote-text {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 400;
  font-style: italic;
  color: var(--color-text);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.8;
  position: relative;
  z-index: 1;
}

.quote-reference {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-top: 1.5rem;
  position: relative;
  z-index: 1;
}

/* ========== COUPLE SECTION ========== */
.couple-section {
  background: var(--color-bg);
}

.couple-grid {
  display: grid;
  grid-template-columns: 1fr 80px 1fr;
  gap: 2rem;
  align-items: center;
}

.couple-card {
  text-align: center;
  padding: 2rem;
}

.couple-photo {
  width: 220px;
  height: 300px;
  margin: 0 auto 2rem;
  border-radius: 200px 200px 20px 20px;
  overflow: hidden;
  border: 3px solid var(--color-accent-light);
  box-shadow: var(--shadow-medium);
  position: relative;
}

.couple-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.8s ease;
}

.couple-card:hover .couple-photo img {
  transform: scale(1.05);
}

.couple-name {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 400;
  color: var(--color-text);
  margin-bottom: 0.5rem;
}

.couple-role {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 1rem;
}

.couple-parents {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--color-text-light);
  line-height: 1.8;
}

.couple-parents strong {
  color: var(--color-text);
  font-weight: 500;
}

.couple-separator {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.couple-separator .amp {
  font-family: var(--font-script);
  font-size: 3.5rem;
  color: var(--color-gold);
}

/* ========== COUNTDOWN SECTION ========== */
.countdown-section {
  background: linear-gradient(135deg, #2c2420 0%, #3d302a 50%, #4a3830 100%);
  color: var(--color-white);
  text-align: center;
  padding: 5rem 2rem;
  position: relative;
  overflow: hidden;
}

.countdown-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at center, rgba(201,169,110,0.08) 0%, transparent 70%);
}

.countdown-section .section-title {
  color: var(--color-white);
}

.countdown-section .section-tag {
  color: var(--color-gold-light);
}

.countdown-grid {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin-top: 3rem;
  position: relative;
  z-index: 1;
}

.countdown-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.countdown-number {
  font-family: var(--font-display);
  font-size: 4.5rem;
  font-weight: 300;
  color: var(--color-gold);
  line-height: 1;
  min-width: 80px;
}

.countdown-label {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-top: 0.75rem;
}

.countdown-colon {
  font-family: var(--font-display);
  font-size: 3rem;
  color: rgba(201,169,110,0.3);
  align-self: flex-start;
  margin-top: 0.5rem;
}

/* ========== EVENTS SECTION ========== */
.events-section {
  background: var(--color-cream);
}

.events-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-top: 3rem;
}

.event-card {
  background: var(--color-white);
  border-radius: 20px;
  padding: 3rem 2.5rem;
  text-align: center;
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--color-border);
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.event-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-gold), var(--color-accent), var(--color-gold));
}

.event-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-medium), var(--shadow-glow);
}

.event-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(201,169,110,0.1), rgba(201,169,110,0.05));
  border: 1px solid var(--color-border);
}

.event-icon svg {
  width: 26px;
  height: 26px;
  stroke: var(--color-gold);
  fill: none;
  stroke-width: 1.5;
}

.event-type {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 0.5rem;
}

.event-name {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 400;
  color: var(--color-text);
  margin-bottom: 1.5rem;
}

.event-detail {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  margin-bottom: 0.8rem;
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--color-text-light);
}

.event-detail svg {
  width: 16px;
  height: 16px;
  stroke: var(--color-accent);
  fill: none;
  stroke-width: 1.5;
  flex-shrink: 0;
}

.event-venue {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 0.95rem;
  color: var(--color-text);
  margin-top: 1rem;
  line-height: 1.6;
}

.event-map-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
  padding: 0.7rem 1.8rem;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--color-gold);
  border: 1px solid var(--color-gold);
  border-radius: 50px;
  transition: var(--transition-smooth);
}

.event-map-link:hover {
  background: var(--color-gold);
  color: var(--color-white);
}

.event-map-link svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.5;
}

/* ========== GALLERY SECTION ========== */
.gallery-section {
  background: var(--color-bg);
  padding: 7rem 2rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 350px 350px;
  gap: 1rem;
  margin-top: 3rem;
}

.gallery-item {
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

.gallery-item:nth-child(1) {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.8s ease;
}

.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-item::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, transparent 60%, rgba(0,0,0,0.2));
  opacity: 0;
  transition: opacity 0.5s ease;
}

.gallery-item:hover::after {
  opacity: 1;
}

/* ========== LOCATION / MAP SECTION ========== */
.location-section {
  background: var(--color-cream);
  position: relative;
}

.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-top: 3rem;
}

.location-card {
  background: var(--color-white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--color-border);
  transition: var(--transition-smooth);
}

.location-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-medium);
}

.location-map {
  width: 100%;
  height: 250px;
  border: none;
}

.location-info {
  padding: 2rem;
  text-align: center;
}

.location-name {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--color-text);
  margin-bottom: 0.5rem;
}

.location-address {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--color-text-light);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.location-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.5rem;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--color-white);
  background: linear-gradient(135deg, var(--color-gold), var(--color-accent));
  border-radius: 50px;
  transition: var(--transition-smooth);
}

.location-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 15px rgba(201,169,110,0.4);
}

.location-btn svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
}

/* ========== FAMILY / CHILDREN SECTION ========== */
.family-section {
  background: var(--color-bg);
  text-align: center;
}

.family-note {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-style: italic;
  color: var(--color-text-light);
  margin-bottom: 2rem;
}

.children-names {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.child-name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--color-text);
  padding: 0.8rem 2rem;
  background: var(--color-cream);
  border-radius: 50px;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-soft);
}

/* ========== FOOTER ========== */
.footer {
  background: linear-gradient(135deg, #2c2420 0%, #3d302a 100%);
  color: var(--color-white);
  text-align: center;
  padding: 4rem 2rem 2rem;
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
}

.footer-names {
  font-family: var(--font-script);
  font-size: 3rem;
  color: var(--color-gold);
  margin-bottom: 0.5rem;
}

.footer-date {
  font-family: var(--font-body);
  font-size: 0.75rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 2rem;
}

.footer-quote {
  font-family: var(--font-serif);
  font-size: 0.95rem;
  font-style: italic;
  color: rgba(255,255,255,0.4);
  max-width: 500px;
  margin: 0 auto 2rem;
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  font-family: var(--font-body);
  font-size: 0.7rem;
  letter-spacing: 2px;
  color: rgba(255,255,255,0.25);
}

/* ========== LIGHTBOX ========== */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.92);
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.lightbox.active {
  display: flex;
  opacity: 1;
}

.lightbox img {
  max-width: 90%;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 0 60px rgba(0,0,0,0.5);
}

.lightbox-close {
  position: absolute;
  top: 2rem;
  right: 2rem;
  width: 50px;
  height: 50px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition-smooth);
  background: none;
  color: white;
  font-size: 1.5rem;
}

.lightbox-close:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.4);
}

/* ========== SCROLL ANIMATIONS ========== */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ========== FLOATING DECORATIONS ========== */
.floating-decoration {
  position: absolute;
  pointer-events: none;
  opacity: 0.04;
}

.floral-corner {
  font-size: 10rem;
  color: var(--color-gold);
}

.floral-corner.top-left {
  top: -2rem;
  left: -2rem;
  transform: rotate(0deg);
}

.floral-corner.top-right {
  top: -2rem;
  right: -2rem;
  transform: rotate(90deg);
}

.floral-corner.bottom-right {
  bottom: -2rem;
  right: -2rem;
  transform: rotate(180deg);
}

.floral-corner.bottom-left {
  bottom: -2rem;
  left: -2rem;
  transform: rotate(270deg);
}

/* ========== PARTICLE CANVAS ========== */
#particle-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
  .hero-names { font-size: 4rem; }
  .section-title { font-size: 2.5rem; }
  .couple-grid { grid-template-columns: 1fr; gap: 1rem; }
  .couple-separator { 
    flex-direction: row; 
    padding: 1rem 0; 
  }
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
  }
  .gallery-item:nth-child(1) {
    grid-column: span 2;
    grid-row: span 1;
  }
  .gallery-item {
    height: 300px;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(250, 248, 245, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 1.5rem 2rem;
    gap: 1rem;
    box-shadow: var(--shadow-medium);
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links a {
    color: var(--color-text) !important;
  }

  .nav-toggle {
    display: flex;
  }

  .hero-names { font-size: 3rem; }
  .hero-names .ampersand { font-size: 2.5rem; }
  .hero-content { padding: 0 1.5rem 4rem; }

  .section { padding: 5rem 1.5rem; }
  .section-title { font-size: 2.2rem; }

  .events-grid { grid-template-columns: 1fr; }
  .location-grid { grid-template-columns: 1fr; }
  
  .countdown-grid { gap: 1.5rem; }
  .countdown-number { font-size: 3rem; }
  .countdown-colon { font-size: 2rem; }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }

  .gallery-item:nth-child(1) {
    grid-column: span 2;
  }

  .gallery-item {
    height: 250px;
  }

  .couple-photo {
    width: 180px;
    height: 250px;
  }

  .quote-text { font-size: 1.3rem; }
  .footer-names { font-size: 2.2rem; }
}

@media (max-width: 480px) {
  .hero-names { font-size: 2.4rem; }
  .hero-names .ampersand { font-size: 2rem; }
  .hero-subtitle { font-size: 0.6rem; letter-spacing: 4px; }
  .hero-date { font-size: 0.7rem; }
  
  .countdown-grid { 
    flex-wrap: wrap;
    gap: 1rem;
  }
  .countdown-number { font-size: 2.5rem; }
  .countdown-colon { display: none; }
  
  .section-title { font-size: 1.8rem; }
  .event-card { padding: 2rem 1.5rem; }
  .couple-name { font-size: 2rem; }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-item:nth-child(1) {
    grid-column: span 1;
  }

  .gallery-item {
    height: 300px;
  }

  .children-names {
    flex-direction: column;
    align-items: center;
  }
}
