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

:root {
  /* Renk Paleti */
  --color-bg-dark: #0a1628;
  --color-bg-deep: #0d1f3c;
  --color-gold: #c9a84c;
  --color-gold-light: #e8d48b;
  --color-gold-glow: rgba(201, 168, 76, 0.3);
  --color-cream: #f5efe6;
  --color-white: #ffffff;
  --color-white-soft: rgba(255, 255, 255, 0.85);
  --color-white-muted: rgba(255, 255, 255, 0.5);

  /* Tipografi */
  --font-script: 'Great Vibes', cursive;
  --font-serif: 'Cormorant Garamond', serif;
  --font-sans: 'Montserrat', sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  background: #0b1a2e;
  color: var(--color-white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ========================================
   DENİZ ALTI VİDEO ARKA PLAN
   ======================================== */
#video-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 0;
  overflow: hidden;
}

#bg-video {
  width: 100vw;
  height: 100vh;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}

#video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* Daha hafif bir karartma, videonun kendi kalitesini bozmaması için */
  background: linear-gradient(
    180deg,
    rgba(5, 15, 30, 0.05) 0%,
    rgba(5, 15, 30, 0.2) 100%
  );
  pointer-events: none;
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* Animasyonlu Canvas Arka Plan */
#hero-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

/* Arka plan üzerine gradient overlay */
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  background:
    radial-gradient(ellipse at 50% 30%, transparent 0%, rgba(10, 22, 40, 0.3) 60%, rgba(10, 22, 40, 0.7) 100%),
    linear-gradient(to bottom, rgba(10, 22, 40, 0.1) 0%, rgba(10, 22, 40, 0.4) 100%);
  pointer-events: none;
}

/* İçerik Konteyner */
.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  padding: 2rem;
  max-width: 800px;
}

/* Davet Yazısı */
.hero-invite-text {
  font-family: var(--font-sans);
  font-size: clamp(0.98rem, 2.3vw, 1.26rem);
  font-weight: 500;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 1.5rem;
  text-shadow: 0 0 20px var(--color-gold-glow);
}

/* İsimler */
.hero-names {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
  margin-bottom: 1.5rem;
}

.hero-name {
  font-family: var(--font-script);
  font-size: clamp(4.02rem, 11.5vw, 7.47rem);
  font-weight: 600;
  color: var(--color-white);
  line-height: 1.2;
  text-shadow:
    0 0 40px rgba(201, 168, 76, 0.15),
    0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-ampersand {
  font-family: var(--font-script);
  font-size: clamp(2.3rem, 5.75vw, 4.02rem);
  color: var(--color-gold);
  line-height: 1;
  text-shadow: 0 0 30px var(--color-gold-glow);
  margin: 0.2rem 0;
}

/* Ayırıcı Çizgi */
.hero-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.divider-line {
  display: block;
  width: clamp(46px, 11.5vw, 115px);
  height: 1px;
  background: linear-gradient(to right, transparent, var(--color-gold), transparent);
}

.divider-icon {
  color: var(--color-gold);
  font-size: 1.03rem;
  animation: pulse-heart 2s ease-in-out infinite;
}

@keyframes pulse-heart {
  0%, 100% { transform: scale(1); opacity: 0.7; }
  50% { transform: scale(1.2); opacity: 1; }
}

/* Tarih */
.hero-date {
  font-family: var(--font-serif);
  font-size: clamp(1.61rem, 4.6vw, 2.18rem);
  font-weight: 600;
  letter-spacing: 0.15em;
  color: var(--color-white-soft);
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.3);
}

/* Scroll İpucu */
.hero-scroll-hint {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  margin-top: 3rem;
}

.scroll-text {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--color-white-muted);
}

.scroll-arrow {
  color: var(--color-white-muted);
  animation: bounce-arrow 2s ease-in-out infinite;
}

@keyframes bounce-arrow {
  0%, 100% { transform: translateY(0); opacity: 0.4; }
  50% { transform: translateY(6px); opacity: 0.8; }
}

/* ========================================
   ANIMASYONLAR
   ======================================== */
.animate-fade-up {
  opacity: 0;
  transform: translateY(30px);
  animation: fade-up 1.2s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

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

/* Scroll-ile görünür olma animasyonu */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}

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



/* ========================================
   GERİ SAYIM BÖLÜMÜ
   ======================================== */
.countdown-section {
  position: relative;
  padding: 6rem 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: transparent;
}

/* Arka plan parıltısı */
.countdown-bg-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(201, 168, 76, 0.06) 0%,
    rgba(201, 168, 76, 0.02) 40%,
    transparent 70%
  );
  pointer-events: none;
  animation: glow-pulse 6s ease-in-out infinite;
}

@keyframes glow-pulse {
  0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.6; }
  50% { transform: translate(-50%, -50%) scale(1.15); opacity: 1; }
}

.countdown-content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.countdown-wrapper {
  background: rgba(26, 26, 26, 0.6);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: clamp(2.3rem, 5.75vw, 4.02rem) clamp(0.57rem, 3.45vw, 2.3rem);
  box-shadow: 
    0 20px 40px rgba(0, 0, 0, 0.4),
    inset 0 0 0 1px rgba(201, 168, 76, 0.2);
  margin-bottom: 4rem;
  position: relative;
  overflow: hidden;
}

.countdown-wrapper::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201, 168, 76, 0.5), transparent);
}

/* Sayaç Kartları */
.countdown-timer {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.countdown-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.countdown-card-inner {
  width: clamp(63.25px, 14.95vw, 103.5px);
  height: clamp(74.75px, 17.25vw, 115px);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  position: relative;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(201, 168, 76, 0.15);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow:
    0 4px 30px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    0 0 40px rgba(201, 168, 76, 0.04);
  transition: border-color 0.4s ease, box-shadow 0.4s ease;
}

.countdown-card-inner:hover {
  border-color: rgba(201, 168, 76, 0.3);
  box-shadow:
    0 4px 30px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    0 0 60px rgba(201, 168, 76, 0.1);
}

.countdown-number {
  font-family: var(--font-serif);
  font-size: clamp(2.3rem, 5.75vw, 3.68rem);
  font-weight: 500;
  color: var(--color-white);
  letter-spacing: 0.05em;
  text-shadow: 0 0 20px rgba(201, 168, 76, 0.15);
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

.countdown-number.tick {
  animation: tick-bounce 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

@keyframes tick-bounce {
  0% { transform: scale(1); }
  40% { transform: scale(1.12); }
  100% { transform: scale(1); }
}

.countdown-unit {
  font-family: var(--font-sans);
  font-size: clamp(0.63rem, 1.38vw, 0.8rem);
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--color-gold);
  opacity: 0.7;
}

/* İki nokta ayırıcı */
.countdown-separator {
  font-family: var(--font-serif);
  font-size: clamp(1.38rem, 3.45vw, 2.3rem);
  font-weight: 500;
  color: var(--color-gold);
  opacity: 0.3;
  padding-bottom: 1.8rem;
  animation: blink-separator 2s ease-in-out infinite;
}

@keyframes blink-separator {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 0.6; }
}

/* Tarih yazısı */
.countdown-date-text {
  font-family: var(--font-serif);
  font-size: clamp(1.03rem, 2.3vw, 1.32rem);
  font-weight: 500;
  letter-spacing: 0.4em;
  color: var(--color-white-muted);
  margin-top: 2.5rem;
}
.section-eyebrow {
  font-family: var(--font-sans);
  font-size: clamp(0.69rem, 1.38vw, 0.86rem);
  font-weight: 500;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--color-gold);
  text-shadow: 0 0 15px var(--color-gold-glow);
  margin-bottom: 2rem;
  text-align: center;
}

/* Ortak bölüm başlığı */
.section-title {
  font-family: var(--font-script);
  font-size: clamp(2.88rem, 6.9vw, 4.37rem);
  color: var(--color-gold);
  text-align: center;
  margin-bottom: 3.5rem;
  line-height: 1.2;
  text-shadow: 0 0 20px rgba(201, 168, 76, 0.15);
}

/* ========================================
   MEKAN & KONUM BÖLÜMÜ
   ======================================== */
.venue-section {
  position: relative;
  padding: 5rem 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: transparent;
}

.venue-bg-ornament {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,168,76,0.04) 0%, transparent 60%);
  pointer-events: none;
  animation: glow-pulse 8s ease-in-out infinite;
}

.venue-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 520px;
}

.venue-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(201, 168, 76, 0.12);
  border-radius: 20px;
  padding: 2.5rem 2rem;
  text-align: center;
  position: relative;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.3);
  overflow: hidden;
}

.venue-card-accent {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--color-gold), transparent);
  opacity: 0.4;
}

.venue-icon {
  color: var(--color-gold);
  margin-bottom: 1.2rem;
  opacity: 0.7;
}

.venue-name {
  font-family: var(--font-serif);
  font-size: clamp(1.49rem, 3.45vw, 2.07rem);
  font-weight: 600;
  color: var(--color-white);
  letter-spacing: 0.05em;
  margin-bottom: 0.6rem;
}

.venue-address {
  font-family: var(--font-sans);
  font-size: clamp(0.86rem, 1.72vw, 0.98rem);
  font-weight: 500;
  color: var(--color-white-muted);
  letter-spacing: 0.05em;
  line-height: 1.6;
}

.venue-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  margin: 1.5rem 0;
}

.venue-divider-line {
  width: 50px;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(201,168,76,0.3), transparent);
}

.venue-divider-diamond {
  color: var(--color-gold);
  font-size: 0.63rem;
  opacity: 0.5;
}

.venue-details {
  display: flex;
  justify-content: center;
  gap: 2.5rem;
  margin-bottom: 1.8rem;
}

.venue-detail-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--color-white-soft);
  font-family: var(--font-sans);
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.05em;
}

.venue-detail-item svg {
  color: var(--color-gold);
  opacity: 0.6;
}

.venue-map-container {
  margin-bottom: 1.5rem;
}

.venue-map-placeholder {
  width: 100%;
  height: 200px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(201,168,76,0.1);
}

.venue-directions-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.8rem 2rem;
  border: 1px solid rgba(201, 168, 76, 0.3);
  border-radius: 50px;
  color: var(--color-gold);
  font-family: var(--font-sans);
  font-size: 0.86rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-decoration: none;
  background: rgba(201, 168, 76, 0.05);
  transition: all 0.4s ease;
  cursor: pointer;
}

.venue-directions-btn:hover {
  background: rgba(201, 168, 76, 0.12);
  border-color: var(--color-gold);
  box-shadow: 0 0 30px rgba(201, 168, 76, 0.1);
  transform: translateY(-1px);
}

/* ========================================
   RSVP / LCV BÖLÜMÜ
   ======================================== */
.rsvp-section {
  position: relative;
  padding: 5rem 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: transparent;
}

.rsvp-bg-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,168,76,0.05) 0%, transparent 60%);
  pointer-events: none;
  animation: glow-pulse 7s ease-in-out infinite;
}

.rsvp-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 480px;
  text-align: center;
  background: rgba(255, 255, 255, 0.03);
  padding: 3rem 2rem;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.rsvp-title {
  font-family: var(--font-serif);
  font-size: clamp(1.61rem, 4.02vw, 2.3rem);
  font-weight: 500;
  color: var(--color-white);
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
}

.rsvp-subtitle {
  font-family: var(--font-sans);
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--color-white-muted);
  margin-bottom: 2.5rem;
  letter-spacing: 0.05em;
}

.rsvp-form {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.rsvp-input {
  width: 100%;
  padding: 0.9rem 1.2rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(201, 168, 76, 0.15);
  border-radius: 12px;
  color: var(--color-white);
  font-family: var(--font-sans);
  font-size: 0.98rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  outline: none;
  transition: border-color 0.3s, box-shadow 0.3s;
  -webkit-appearance: none;
}

.rsvp-input::placeholder {
  color: rgba(255, 255, 255, 0.3);
}

.rsvp-input:focus {
  border-color: rgba(201, 168, 76, 0.4);
  box-shadow: 0 0 20px rgba(201, 168, 76, 0.06);
}

/* Radio Butonları */
.rsvp-radio-group {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin: 0.5rem 0;
}

.rsvp-radio {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  cursor: pointer;
  position: relative;
}

.rsvp-radio input[type="radio"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.rsvp-radio-custom {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 1px solid rgba(201, 168, 76, 0.3);
  background: rgba(255, 255, 255, 0.03);
  position: relative;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.rsvp-radio input[type="radio"]:checked + .rsvp-radio-custom {
  border-color: var(--color-gold);
  box-shadow: 0 0 12px rgba(201, 168, 76, 0.15);
}

.rsvp-radio input[type="radio"]:checked + .rsvp-radio-custom::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-gold);
}

.rsvp-radio-label {
  font-family: var(--font-sans);
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--color-white-soft);
  letter-spacing: 0.03em;
}

/* Gönder Butonu */
.rsvp-submit-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.9rem 2.5rem;
  margin-top: 0.5rem;
  border: 1px solid rgba(201, 168, 76, 0.4);
  border-radius: 50px;
  background: linear-gradient(135deg, rgba(201,168,76,0.1), rgba(201,168,76,0.05));
  color: var(--color-gold);
  font-family: var(--font-sans);
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.4s ease;
  align-self: center;
}

.rsvp-submit-btn:hover {
  background: linear-gradient(135deg, rgba(201,168,76,0.2), rgba(201,168,76,0.1));
  border-color: var(--color-gold);
  box-shadow: 0 0 30px rgba(201, 168, 76, 0.12);
  transform: translateY(-2px);
}

.rsvp-submit-btn:active {
  transform: translateY(0);
}

.rsvp-note {
  font-family: var(--font-serif);
  font-size: 0.98rem;
  font-weight: 500;
  font-style: italic;
  color: var(--color-white-muted);
  margin-top: 2rem;
  letter-spacing: 0.03em;
}

/* ========================================
   ANI PANELİ / FOTOĞRAF GALERİSİ
   ======================================== */
.gallery-section {
  position: relative;
  padding: 5rem 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
}

.gallery-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 600px;
  text-align: center;
  background: rgba(255, 255, 255, 0.03);
  padding: 3rem 2rem;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.gallery-title {
  font-family: var(--font-script);
  font-size: clamp(1.84rem, 4.6vw, 2.76rem);
  font-weight: 600;
  color: var(--color-white);
  margin-bottom: 0.5rem;
  text-shadow: 0 0 20px rgba(201, 168, 76, 0.1);
}

.gallery-subtitle {
  font-family: var(--font-sans);
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--color-white-muted);
  margin-bottom: 2.5rem;
  letter-spacing: 0.03em;
}

/* Yükleme Alanı */
.gallery-upload-zone {
  border: 1.5px dashed rgba(201, 168, 76, 0.25);
  border-radius: 20px;
  padding: 2.5rem 2rem;
  margin-bottom: 2rem;
  transition: all 0.4s ease;
  cursor: pointer;
  background: rgba(201, 168, 76, 0.02);
}

.gallery-upload-zone:hover,
.gallery-upload-zone.drag-over {
  border-color: rgba(201, 168, 76, 0.5);
  background: rgba(201, 168, 76, 0.05);
  box-shadow: 0 0 40px rgba(201, 168, 76, 0.06);
}

.gallery-upload-zone.drag-over {
  transform: scale(1.01);
}

.upload-zone-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
}

.upload-icon {
  color: var(--color-gold);
  opacity: 0.5;
  margin-bottom: 0.3rem;
  transition: opacity 0.3s, transform 0.3s;
}

.gallery-upload-zone:hover .upload-icon {
  opacity: 0.8;
  transform: translateY(-3px);
}

.upload-text {
  font-family: var(--font-sans);
  font-size: 0.98rem;
  font-weight: 500;
  color: var(--color-white-soft);
  letter-spacing: 0.03em;
}

.upload-subtext {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  color: var(--color-white-muted);
}

.upload-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.5rem;
  border: 1px solid rgba(201, 168, 76, 0.3);
  border-radius: 50px;
  color: var(--color-gold);
  font-family: var(--font-sans);
  font-size: 0.83rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: rgba(201, 168, 76, 0.06);
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 0.3rem;
}

.upload-btn:hover {
  background: rgba(201, 168, 76, 0.12);
  border-color: var(--color-gold);
}

.upload-formats {
  font-family: var(--font-sans);
  font-size: 0.69rem;
  color: rgba(255, 255, 255, 0.25);
  letter-spacing: 0.05em;
  margin-top: 0.2rem;
}

/* Fotoğraf Sayacı */
.gallery-counter {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  padding: 0.5rem 1rem;
  background: rgba(201, 168, 76, 0.06);
  border-radius: 30px;
  border: 1px solid rgba(201, 168, 76, 0.1);
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

.counter-icon { font-size: 1.03rem; }

.counter-text {
  font-family: var(--font-sans);
  font-size: 0.83rem;
  font-weight: 500;
  color: var(--color-white-soft);
  letter-spacing: 0.05em;
}

/* Fotoğraf Grid */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.gallery-item {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 1;
  cursor: pointer;
  border: 1px solid rgba(201, 168, 76, 0.08);
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
              box-shadow 0.4s ease;
  animation: gallery-fade-in 0.5s ease forwards;
}

@keyframes gallery-fade-in {
  from { opacity: 0; transform: scale(0.9); }
  to { opacity: 1; transform: scale(1); }
}

.gallery-item:hover {
  transform: scale(1.03);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
  border-color: rgba(201, 168, 76, 0.25);
  z-index: 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

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

/* Fotoğraf üzerindeki hover overlay */
.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.5) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.3s;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 0.6rem;
}

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

.gallery-item-overlay svg {
  color: white;
  opacity: 0.8;
}

/* Silme butonu */
.gallery-item-delete {
  position: absolute;
  top: 6px;
  right: 6px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: none;
  background: rgba(0, 0, 0, 0.5);
  color: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s, background 0.3s;
  z-index: 3;
}

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

.gallery-item-delete:hover {
  background: rgba(200, 50, 50, 0.7);
}

/* ========================================
   LIGHTBOX
   ======================================== */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(0, 0, 0, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  display: none;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

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

.lightbox-img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  transition: transform 0.3s ease;
}

.lightbox-close {
  position: absolute;
  top: 1.2rem;
  right: 1.2rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  cursor: pointer;
  transition: all 0.3s;
  z-index: 1001;
}

.lightbox-close:hover {
  background: rgba(255, 255, 255, 0.2);
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  cursor: pointer;
  transition: all 0.3s;
  z-index: 1001;
}

.lightbox-nav:hover {
  background: rgba(255, 255, 255, 0.18);
}

.lightbox-prev { left: 1.2rem; }
.lightbox-next { right: 1.2rem; }

.lightbox-counter {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-sans);
  font-size: 0.86rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.1em;
}

/* ========================================
   BİZİM HİKAYEMİZ — TIMELINE
   ======================================== */
.story-section {
  position: relative;
  padding: 5rem 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(10, 22, 40, 0.15);
}

.story-content {
  position: relative;
  width: 100%;
  max-width: 540px;
  text-align: center;
  background: rgba(255, 255, 255, 0.03);
  padding: 3rem 2rem;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.story-title {
  font-family: var(--font-script);
  font-size: clamp(1.84rem, 4.6vw, 2.76rem);
  font-weight: 600;
  color: var(--color-white);
  margin-bottom: 3rem;
  text-shadow: 0 0 20px rgba(201, 168, 76, 0.1);
}

/* Timeline */
.story-timeline {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding-left: 30px;
}

.timeline-line {
  position: absolute;
  left: 8px;
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, transparent, rgba(201,168,76,0.3), rgba(201,168,76,0.3), transparent);
}

.timeline-item {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
}

.timeline-dot {
  position: absolute;
  left: -26px;
  top: 6px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 1.5px solid var(--color-gold);
  background: rgba(201, 168, 76, 0.15);
  box-shadow: 0 0 12px rgba(201, 168, 76, 0.2);
  flex-shrink: 0;
}

.timeline-card {
  text-align: left;
  padding: 1.2rem 1.5rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(201, 168, 76, 0.08);
  border-radius: 14px;
  width: 100%;
  transition: border-color 0.3s;
}

.timeline-card:hover {
  border-color: rgba(201, 168, 76, 0.2);
}

.timeline-date {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  color: var(--color-gold);
  text-transform: uppercase;
}

.timeline-title {
  font-family: var(--font-serif);
  font-size: 1.32rem;
  font-weight: 600;
  color: var(--color-white);
  margin: 0.3rem 0;
}

.timeline-text {
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--color-white-muted);
  line-height: 1.6;
}

/* ========================================
   FOOTER / KAPANIŞ
   ======================================== */
.footer-section {
  position: relative;
  padding: 5rem 2rem 2rem;
  text-align: center;
  background: rgba(10, 22, 40, 0.1);
}

.footer-content {
  max-width: 500px;
  margin: 0 auto;
}

.footer-monogram {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  margin-bottom: 2rem;
}

.monogram-letter {
  font-family: var(--font-script);
  font-size: clamp(3.45rem, 9.2vw, 5.17rem);
  color: var(--color-white);
  text-shadow: 0 0 30px rgba(201, 168, 76, 0.15);
}

.monogram-amp {
  font-family: var(--font-script);
  font-size: clamp(1.72rem, 4.6vw, 2.53rem);
  color: var(--color-gold);
  text-shadow: 0 0 20px var(--color-gold-glow);
}

.footer-message {
  font-family: var(--font-serif);
  font-size: clamp(1.15rem, 2.88vw, 1.49rem);
  font-weight: 500;
  font-style: italic;
  color: var(--color-white-soft);
  line-height: 1.8;
  margin-bottom: 2rem;
}

.footer-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.footer-divider-line {
  width: 60px;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(201,168,76,0.3), transparent);
}

.footer-divider-heart {
  color: var(--color-gold);
  font-size: 0.92rem;
  animation: pulse-heart 2s ease-in-out infinite;
}

.footer-date {
  font-family: var(--font-sans);
  font-size: 1.09rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  color: var(--color-white);
  text-shadow: 0 2px 8px rgba(0,0,0,0.5);
  margin-bottom: 0.3rem;
}

.footer-names {
  font-family: var(--font-script);
  font-size: clamp(2.3rem, 6.9vw, 4.02rem);
  color: var(--color-white);
  text-shadow: 0 0 20px rgba(201, 168, 76, 0.1);
}

.footer-bottom {
  margin-top: 4rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.footer-credit {
  font-family: var(--font-sans);
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  text-shadow: 0 1px 5px rgba(0,0,0,0.5);
  margin-bottom: 0.5rem;
}

.developer-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  color: var(--color-gold);
  text-decoration: none;
  background: rgba(201, 168, 76, 0.03);
  border: 1px solid rgba(201, 168, 76, 0.3);
  padding: 0.6rem 1.4rem;
  border-radius: 40px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: all 0.4s ease;
  margin-top: 0.5rem;
  backdrop-filter: blur(5px);
}

.developer-link:hover {
  background: rgba(201, 168, 76, 0.08);
  border-color: rgba(201, 168, 76, 0.6);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(201, 168, 76, 0.15);
  color: var(--color-gold-light);
}

.click-icon {
  color: var(--color-gold);
  animation: gentle-bounce 2s infinite ease-in-out;
}

@keyframes gentle-bounce {
  0%, 100% { transform: translateY(0) translateX(0) rotate(0deg); }
  50% { transform: translateY(-2px) translateX(2px) rotate(-5deg); }
}

/* ========================================
   MÜZİK OYNATICI (FLOATING BUTTON)
   ======================================== */
.music-btn {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 100;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(201, 168, 76, 0.3);
  background: rgba(10, 22, 40, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: var(--color-gold);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.music-btn:hover {
  border-color: var(--color-gold);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4), 0 0 20px rgba(201, 168, 76, 0.1);
  transform: scale(1.05);
}

.music-btn:active {
  transform: scale(0.95);
}

/* Animasyonlu müzik çubukları */
.music-bars {
  display: flex;
  align-items: flex-end;
  gap: 2px;
  height: 16px;
}

.music-bars span {
  display: block;
  width: 3px;
  background: var(--color-gold);
  border-radius: 2px;
  animation: music-bar 0.8s ease-in-out infinite;
}

.music-bars span:nth-child(1) { height: 8px; animation-delay: 0s; }
.music-bars span:nth-child(2) { height: 14px; animation-delay: 0.15s; }
.music-bars span:nth-child(3) { height: 6px; animation-delay: 0.3s; }

@keyframes music-bar {
  0%, 100% { transform: scaleY(0.5); }
  50% { transform: scaleY(1.2); }
}

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 768px) {
  .hero-content { padding: 1.5rem; }
  .hero-names { gap: 0; }
  .hero-invite-text { letter-spacing: 0.25em; }

  .countdown-section { padding: 4rem 1rem; }
  .countdown-timer { gap: 0.5rem; }
  .countdown-separator { padding-bottom: 1.5rem; }

  .venue-section { padding: 4rem 1.5rem; }
  .venue-card { padding: 2rem 1.5rem; }
  .venue-details { gap: 1.5rem; }

  .rsvp-section { padding: 4rem 1.5rem; }
  .rsvp-radio-group { gap: 1.5rem; }

  .story-section { padding: 4rem 1.5rem; }

  .footer-section { padding: 4rem 1.5rem 2rem; }

  .gallery-section { padding: 4rem 1.5rem; }
  .gallery-upload-zone { padding: 2rem 1.5rem; }

  .dissolve-transition { height: 100px; }

  .music-btn { bottom: 1rem; right: 1rem; width: 42px; height: 42px; }
}

@media (max-width: 480px) {
  .hero-name { font-size: 2.88rem; }
  .hero-ampersand { font-size: 2.07rem; }
  .hero-date { font-size: 1.03rem; letter-spacing: 0.1em; }

  .countdown-card-inner { width: 62px; height: 72px; border-radius: 12px; }
  .countdown-timer { gap: 0.35rem; }
  .countdown-separator { font-size: 1.38rem; padding-bottom: 1.2rem; }
  .countdown-date-text { letter-spacing: 0.2em; }

  .venue-card { padding: 1.8rem 1.2rem; border-radius: 16px; }
  .venue-details { flex-direction: column; gap: 0.8rem; }
  .venue-map-placeholder { height: 160px; }

  .rsvp-radio-group { flex-direction: column; gap: 1rem; align-items: center; }
  .rsvp-submit-btn { width: 100%; }

  .story-timeline { padding-left: 25px; }
  .timeline-card { padding: 1rem 1.2rem; }

  .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 6px; }
  .gallery-upload-zone { padding: 1.5rem 1rem; }
  .upload-text { font-size: 0.86rem; }

  .lightbox-nav { width: 38px; height: 38px; }
  .lightbox-prev { left: 0.5rem; }
  .lightbox-next { right: 0.5rem; }

  .dissolve-transition { height: 80px; }
}
