/* ================================================
   WEDDING INVITATION — style.css
   Seda & Serdar | 08.11.2026
   ================================================ */

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

:root {
  --cream:   #f2ede6;
  --gold:    #c9a96e;
  --gold-lt: #e2c99b;
  --ink:     #4a4542;
  --muted:   #8e8a85;
  --script:  'Pinyon Script', 'Great Vibes', cursive;
}

/* ══════════════════════════════════════════════
   MÜZİK BUTONU — sabit sol üst
   ══════════════════════════════════════════════ */
.music-btn {
  position: fixed;
  top: 18px;
  left: 18px;
  z-index: 999;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(0,0,0,0.05);
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 4px 16px rgba(0,0,0,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #555;
  transition: background 0.3s ease, transform 0.2s ease, opacity 0.6s ease;
  /* Başlangıçta gizli, davetiye açılınca gösterilir */
  opacity: 0;
  pointer-events: none;
}
.music-btn.visible {
  opacity: 1;
  pointer-events: auto;
}
.music-btn:hover {
  background: rgba(255, 255, 255, 0.95);
  transform: scale(1.08);
}
.music-icon {
  width: 20px;
  height: 20px;
}

html, body {
  margin: 0;
  padding: 0;
  font-family: 'Cormorant Garamond', serif;
  -webkit-font-smoothing: antialiased;
  background: var(--cream);
}

/* ── Scrollbar Gizleme ── */
::-webkit-scrollbar {
  display: none; /* Chrome, Safari, Opera için kaydırma çubuğunu gizle */
}
* {
  -ms-overflow-style: none;  /* IE ve Edge için gizle */
  scrollbar-width: none;  /* Firefox için gizle */
}

/* ══════════════════════════════════════════════
   EKRANLAR — ortak
   ══════════════════════════════════════════════ */
.screen {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  min-height: 100vh;
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transition: opacity 0.8s ease, visibility 0.8s;
  z-index: 10;
}
.screen.active {
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
  position: relative; /* Aktif ekran normal doküman akışına girerek NATIVE SCROLL sağlar */
  z-index: 20;
}

/* ══════════════════════════════════════════════
   EKRAN 1 — VİDEO ZARF
   ══════════════════════════════════════════════ */
#screen-video {
  z-index: 20;
  cursor: pointer;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

/* Video tam ekran, nesne ayarı cover (Varsayılan ilk hal) */
#intro-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Koyu perde — başlangıçta kapalı, video başlayınca açılır */
.overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.58);
  z-index: 2;
  transition: background 1.2s ease;
  transform: translateZ(5px);
}

/* Video oynadığında perde kalkar */
.overlay.fade-open {
  background: rgba(0, 0, 0, 0.0);
}

/* YAZI — mührün tam ortasında, yukarı aşağı oynar */
.tap-label {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate3d(-50%, -50%, 10px);
  z-index: 3;
  font-family: 'Cormorant Garamond', serif;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 4px;
  color: #ffffff;
  white-space: nowrap;
  text-shadow:
    0 0 20px rgba(0,0,0,0.8),
    0 2px 12px rgba(0,0,0,0.7);
  animation: floatText 3s ease-in-out infinite;
  transition: opacity 1.2s ease;
}

/* Video başlayınca yazı kaybolur — animasyonu durdur, opacity sıfırla */
.tap-label.hidden {
  animation: none !important;
  opacity: 0 !important;
  pointer-events: none;
}

@keyframes floatText {
  0%, 100% { transform: translate3d(-50%, -50%, 10px) translateY(0px);   opacity: 0.75; }
  50%       { transform: translate3d(-50%, -50%, 10px) translateY(-12px); opacity: 1;    }
}

/* ══════════════════════════════════════════════
   EKRAN 2 — ANA DAVETİYE
   ══════════════════════════════════════════════ */
#screen-invite {
  z-index: 5;
  display: block;
  background: var(--cream);
}
#screen-invite.active {
  /* iOS native scroll için ekstra ayara gerek yok */
}

/* ── Hero ── */
.hero {
  height: 100vh; /* Eski tarayıcılar için yedek */
  height: 100dvh; /* Yeni nesil mobiller (URL çubuğunu hesaba katar) */
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px 30px; /* Ekrana sığması için boşluklar küçültüldü */
  overflow: hidden;
}

/* Video üzerindeki şeffaf katman (Yazıların okunması için) */
.hero-bg {
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.4); /* Koyu renk yazılar için hafif beyaz filtre */
  z-index: 1;
}

/* Video arka plan */
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

/* İsimler — Yeni ve daha şık el yazısı fontu */
h1.names {
  font-family: 'Alex Brush', cursive;
  font-size: clamp(64px, 15vw, 110px);
  font-weight: 400; /* Alex Brush kendinden kalın bir fonttur, 700'e gerek yok */
  color: #3b3834;
  line-height: 1;
  margin-bottom: 24px;
  text-shadow: 1px 2px 0 rgba(255,255,255,0.7), 0 3px 18px rgba(0,0,0,0.10);
  letter-spacing: 1px;
}
h1.names .amp {
  font-size: 0.8em;
  color: #555; /* "ve" işareti biraz daha belirgin */
}

/* EVLENİYORUZ */
.evleniyoruz {
  font-family: 'Cormorant Garamond', serif;
  font-size: 13px;
  letter-spacing: 9px;
  color: #222; /* Daha belirgin koyu renk */
  margin-bottom: 30px;
  font-weight: 600; /* Daha kalın */
}

/* Tarih satırı: KASIM — 08 — 2026 */
.date-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-bottom: 14px;
}

.date-side {
  display: flex;
  align-items: center;
  padding: 0 18px;
}

.date-month,
.date-year {
  font-size: 14px;
  letter-spacing: 4px;
  color: #222; /* Daha belirgin */
  font-weight: 600; /* Kalınlaştırıldı */
}

.date-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 4px;
}

.date-line-top,
.date-line-bottom {
  width: 55px;
  height: 1px;
  background: #aaa;
}

.date-day {
  font-size: clamp(62px, 18vw, 90px);
  color: #333; /* Gri yerine koyu siyah */
  line-height: 1;
  font-weight: 400; /* Biraz daha kalın */
  padding: 2px 0;
}

/* Gün adı */
.day-name {
  font-size: 12px;
  letter-spacing: 8px;
  color: #222;
  margin-bottom: 36px;
  font-weight: 600;
}

/* Takvim / Hatırlatıcı butonu */
.calendar-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 30px;
  background: rgba(255,255,255,0.75);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,0.9);
  border-radius: 50px;
  color: #666;
  font-family: 'Cormorant Garamond', serif;
  font-size: 13px;
  letter-spacing: 2px;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
}
.calendar-btn:hover {
  background: rgba(255,255,255,0.95);
  box-shadow: 0 6px 28px rgba(0,0,0,0.13);
  transform: translateY(-2px);
}

/* Aşağı ok */
.scroll-down {
  position: absolute;
  bottom: 55px; /* Yazıyı yukarı kaldırmak için değer artırıldı (eski: 28px) */
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  text-align: center;
  animation: bounceDown 2.2s ease-in-out infinite;
}
.scroll-chevron {
  font-size: 28px;
  color: #999;
  line-height: 1;
}
.scroll-text {
  font-size: 11px;
  letter-spacing: 2px;
  color: #999;
  margin-top: 4px;
}

@keyframes bounceDown {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(7px); }
}



/* ── Detay ── */
.details-section {
  background: #fff;
  padding: 52px 24px;
  text-align: center;
}
.section-label {
  font-size: 9px;
  letter-spacing: 5px;
  color: var(--gold);
  margin-bottom: 20px;
}
.detail-card {
  background: linear-gradient(135deg, #fdfcfa 0%, #f7f5f0 100%);
  border: 1px solid rgba(201,169,110,0.18);
  border-radius: 14px;
  padding: 28px 20px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.05);
  position: relative;
  overflow: hidden;
}
.detail-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.dc-icon    { font-size: 26px; margin-bottom: 10px; }
.dc-time    { font-size: clamp(32px, 9vw, 46px); color: var(--ink); line-height: 1; }
.dc-name    { font-size: 12px; letter-spacing: 3px; color: var(--muted); margin: 7px 0 4px; }
.dc-venue   { font-family: 'Great Vibes', cursive; font-size: 26px; color: var(--ink); margin-bottom: 6px; }
.dc-address { font-size: 12px; color: var(--muted); }
.map-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 16px;
  padding: 9px 22px;
  border: 1px solid var(--gold);
  border-radius: 50px;
  color: var(--gold);
  font-family: 'Cormorant Garamond', serif;
  font-size: 11px;
  letter-spacing: 2px;
  text-decoration: none;
  transition: all 0.3s ease;
}
.map-btn:hover { background: var(--gold); color: #fff; }

/* ── Geri sayım ── */
.countdown-section {
  background: linear-gradient(135deg, #1f1d1b 0%, #151413 100%);
  padding: 60px 24px;
  text-align: center;
  position: relative;
}
.countdown-section::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201,169,110,0.5), transparent);
}
.countdown-section::after {
  content: "";
  position: absolute;
  bottom: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201,169,110,0.5), transparent);
}
.cd-title {
  font-size: 9px;
  letter-spacing: 5px;
  color: var(--gold-lt);
  margin-bottom: 28px;
}
.cd-blocks {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.cd-block {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(201,169,110,0.22);
  border-radius: 10px;
  padding: 14px 10px;
  min-width: 62px;
}
.cd-num  { 
  font-size: clamp(26px, 7vw, 38px); 
  color: #fff; 
  line-height: 1; 
  text-shadow: 0 0 15px rgba(201,169,110,0.4); 
}
.cd-lbl  { font-size: 8px; letter-spacing: 3px; color: var(--gold-lt); margin-top: 4px; }
.cd-dot  { font-size: 26px; color: var(--gold-lt); margin-bottom: 18px; }

/* ── Konum ve Tarih ── */
.location-section {
  background: #fff;
  padding: 52px 24px 60px;
  text-align: center;
}

.location-title {
  font-family: 'Alex Brush', cursive;
  font-size: clamp(48px, 13vw, 64px);
  color: #4a4744;
  margin-bottom: 40px;
  line-height: 1.1;
  position: relative;
  display: inline-block;
}
/* Başlığın altına zarif altın detaylı çizgi */
.location-title::after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-lt), transparent);
}
.location-title::before {
  content: "♦";
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 10px;
  color: var(--gold-lt);
}

.loc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 0;
}

.loc-card {
  background: linear-gradient(160deg, #ffffff 0%, #f7f4ef 100%);
  border: 1px solid rgba(201,169,110,0.3);
  border-radius: 16px;
  padding: 24px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.04);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.loc-card:hover {
}
.loc-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.loc-icon    { font-size: 28px; margin-bottom: 8px; }
.loc-type    { font-size: 9px; letter-spacing: 5px; color: var(--gold); margin-bottom: 8px; }
.loc-name    { font-family: 'Pinyon Script', 'Great Vibes', cursive; font-size: 32px; color: #555; margin-bottom: 8px; line-height: 1.2; }
.loc-detail  { font-size: 13px; color: var(--ink); margin-bottom: 6px; letter-spacing: 0.5px; }
.loc-address { font-size: 12px; color: var(--muted); line-height: 1.6; margin-bottom: 18px; }

.loc-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 10px 26px;
  border: 1.5px solid #ccc;
  border-radius: 50px;
  color: #555;
  font-family: 'Cormorant Garamond', serif;
  font-size: 13px;
  letter-spacing: 1.5px;
  text-decoration: none;
  transition: all 0.3s ease;
  background: #fff;
}
.loc-btn:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(201,169,110,0.06);
  transform: translateY(-1px);
}

/* ── Galeri ── */
.gallery-section {
  background: var(--cream);
  padding: 52px 20px 60px;
  text-align: center;
}

.gallery-title {
  font-family: 'Pinyon Script', 'Great Vibes', cursive;
  font-size: clamp(44px, 13vw, 64px);
  color: #7a7a7a;
  margin-bottom: 28px;
  line-height: 1.1;
}

.gallery-grid {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.gallery-item {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 6px 28px rgba(0,0,0,0.10);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.gallery-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 40px rgba(0,0,0,0.15);
}

.gallery-item img {
  width: 100%;
  display: block;
  object-fit: cover;
  max-height: 480px;
  transition: transform 0.5s ease;
}
.gallery-item:hover img {
  transform: scale(1.03);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease;
  opacity: 0;
}
.gallery-item:hover .gallery-overlay {
  background: rgba(0,0,0,0.25);
  opacity: 1;
}

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0,0,0,0.92);
  align-items: center;
  justify-content: center;
  cursor: zoom-out;
  animation: fadeIn 0.25s ease;
}
.lightbox.open {
  display: flex;
}
.lightbox img {
  max-width: 95vw;
  max-height: 92vh;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}
.lightbox-close {
  position: absolute;
  top: 18px;
  right: 22px;
  background: rgba(255,255,255,0.15);
  border: none;
  color: #fff;
  font-size: 32px;
  line-height: 1;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  z-index: 10000;
}
.lightbox-close:hover { background: rgba(255,255,255,0.3); }

/* ── Anı Albümü ── */
.memory-section {
  background: #fdfdfd;
  padding: 52px 20px 40px;
  text-align: center;
  position: relative;
}
.memory-title {
  font-family: 'Pinyon Script', 'Great Vibes', cursive;
  font-size: clamp(48px, 14vw, 68px);
  color: #7a7a7a;
  margin-bottom: 8px;
  line-height: 1.1;
}
.memory-subtitle {
  font-family: 'Cormorant Garamond', serif;
  font-size: 15px;
  color: #999;
  margin-bottom: 24px;
}
.memory-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 24px;
}
.memory-divider::before,
.memory-divider::after {
  content: '';
  height: 1px;
  width: 50px;
  background: #ddd;
}
.memory-divider span {
  font-size: 10px;
  letter-spacing: 3px;
  color: #a0a0a0;
}
.memory-expand-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: #f4f4f4;
  border-radius: 50%;
  color: #999;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-bottom: 10px;
}
.memory-expand-btn.active {
  transform: rotate(180deg);
}
.memory-expand-btn:hover {
  background: #e8e8e8;
}

.memory-form-container {
  background: #fdfdfd;
  animation: slideDown 0.3s ease;
  max-width: 400px;
  margin: 0 auto;
}
@keyframes slideDown {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}

.memory-tabs {
  display: flex;
  background: #f6f6f6;
  border-radius: 12px;
  padding: 4px;
  margin-bottom: 20px;
}
.memory-tab {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 12px 0;
  border: none;
  background: transparent;
  color: #a0a0a0;
  font-family: 'Cormorant Garamond', serif;
  font-size: 14px;
  cursor: pointer;
  border-radius: 8px;
  transition: all 0.3s ease;
}
.memory-tab.active {
  background: #fff;
  color: #555;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}
.memory-tab svg { width: 14px; height: 14px; }

.memory-upload-area {
  border: 1px dashed #dcdcdc;
  border-radius: 16px;
  padding: 20px 16px;
  background: #fdfdfd;
  margin-bottom: 12px;
}
.upload-icon-wrapper {
  width: 44px;
  height: 44px;
  background: #f4f4f4;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 8px;
  color: #777;
}
.upload-icon-wrapper svg {
  width: 20px;
  height: 20px;
}
.upload-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  color: #555;
  margin-bottom: 6px;
}
.upload-subtitle {
  font-size: 12px;
  color: #999;
  margin-bottom: 12px;
}
.upload-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  font-size: 10px;
  letter-spacing: 3px;
  color: #bbb;
  margin-bottom: 12px;
}
.upload-divider::before,
.upload-divider::after {
  content: '';
  height: 1px;
  width: 40px;
  background: #eee;
}
.upload-btn {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  background: #f9f9f9;
  border-radius: 10px;
  color: #777;
  font-family: 'Cormorant Garamond', serif;
  font-size: 13px;
  letter-spacing: 2px;
  cursor: pointer;
  transition: all 0.2s ease;
}
.upload-btn:hover {
  background: #f0f0f0;
}

.memory-name-input {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid transparent;
  background: #f6f6f6;
  border-radius: 10px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 15px;
  color: #555;
  margin-bottom: 12px;
  outline: none;
}
.memory-name-input::placeholder { color: #bbb; }
.memory-name-input:focus { border-color: #ddd; background: #fff; }

.memory-submit-btn {
  width: 100%;
  padding: 14px;
  border: 1px solid var(--gold);
  background: var(--cream);
  border-radius: 10px;
  color: #333;
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}
.memory-submit-btn:hover {
  background: var(--gold);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(201,169,110,0.3);
}

/* ── Hava Durumu ── */
.weather-section {
  background: var(--cream);
  padding: 40px 20px 60px;
  display: flex;
  justify-content: center;
}
.weather-card {
  background: #fff;
  border-radius: 30px;
  padding: 40px 30px;
  width: 100%;
  max-width: 380px;
  text-align: center;
  box-shadow: 0 10px 40px rgba(0,0,0,0.04);
}
.weather-icon-wrapper {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 1px solid #eaeaea;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  color: #888;
}
.weather-title {
  font-family: 'Pinyon Script', 'Great Vibes', cursive;
  font-size: 54px;
  color: #7a7a7a;
  margin-bottom: 8px;
  line-height: 1;
}
.weather-date {
  font-family: 'Cormorant Garamond', serif;
  font-size: 13px;
  letter-spacing: 3px;
  color: #777;
  margin-bottom: 24px;
  text-transform: uppercase;
}
.weather-city {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  color: #555;
  margin-bottom: 4px;
}
.weather-desc {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  color: #777;
  margin-bottom: 12px;
}
.weather-temp {
  font-family: 'Cormorant Garamond', serif;
  font-size: 64px;
  color: #888;
  line-height: 1;
  margin-bottom: 20px;
  position: relative;
}
.weather-minmax {
  display: inline-block;
  padding: 14px 24px;
  border: 1px solid #eaeaea;
  border-radius: 20px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 14px;
  color: #999;
  margin-bottom: 24px;
  width: 100%;
}
.weather-footer-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 13px;
  color: #aaa;
}

/* ── Mesaj ── */
.message-section {
  background: var(--cream);
  padding: 64px 32px;
  text-align: center;
}
.msg-quote {
  font-family: 'Great Vibes', cursive;
  font-size: 80px;
  color: #3b3834;
  line-height: 0.5;
  margin-bottom: 20px;
}
.msg-text {
  font-size: 16px;
  line-height: 1.9;
  color: var(--ink);
  font-style: italic;
}
.msg-sign {
  font-family: 'Great Vibes', cursive;
  font-size: 34px;
  color: var(--gold);
  margin-top: 24px;
}

/* ── Footer ── */
.footer {
  position: relative;
  background: #1a1817;
  padding: 120px 20px 40px;
  text-align: center;
  overflow: hidden;
}
.footer-divider {
  position: absolute;
  top: -1px;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
}
.footer-divider svg {
  position: relative;
  display: block;
  width: calc(100% + 1.3px);
  height: 60px;
}
.footer-divider .shape-fill {
  fill: var(--cream);
}
.footer-content {
  position: relative;
  z-index: 2;
}
.footer-names {
  font-family: 'Great Vibes', cursive;
  font-size: 52px;
  color: var(--cream);
  margin-bottom: 12px;
}
.footer-thanks {
  font-family: 'Cormorant Garamond', serif;
  font-size: 16px;
  color: #a09d9a;
  line-height: 1.6;
  margin-bottom: 30px;
  font-style: italic;
}
.footer-date {
  font-family: 'Cormorant Garamond', serif;
  font-size: 12px;
  letter-spacing: 6px;
  color: rgba(255,255,255,0.4);
  margin-bottom: 40px;
}
.footer-credit {
  font-family: 'Cormorant Garamond', serif;
  font-size: 11px;
  letter-spacing: 1px;
  color: rgba(255,255,255,0.15);
  text-transform: uppercase;
}

/* ══════════════════════════════════════════════
   HATIRLATICI MODAL
   ══════════════════════════════════════════════ */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 900;
  background: rgba(0,0,0,0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  animation: fadeIn 0.25s ease;
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.modal-box {
  background: #fff;
  border-radius: 18px;
  padding: 28px 24px;
  width: min(340px, 88vw);
  box-shadow: 0 20px 60px rgba(0,0,0,0.22);
  animation: slideUp 0.3s ease;
}
@keyframes slideUp {
  from { transform: translateY(30px); opacity: 0; }
  to   { transform: translateY(0);    opacity: 1; }
}

.modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 22px;
}
.modal-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 17px;
  color: #333;
  letter-spacing: 0.5px;
}
.modal-close {
  background: none;
  border: none;
  font-size: 22px;
  color: #aaa;
  cursor: pointer;
  line-height: 1;
  padding: 0 4px;
  transition: color 0.2s;
}
.modal-close:hover { color: #555; }

.modal-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 12px;
}

.modal-opt {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 10px;
  background: #fff;
  border: 1.5px solid #e8e8e8;
  border-radius: 12px;
  cursor: pointer;
  font-family: 'Cormorant Garamond', serif;
  font-size: 14px;
  color: #444;
  letter-spacing: 0.3px;
  transition: all 0.2s ease;
}
.modal-opt:hover {
  border-color: #bbb;
  background: #f9f9f9;
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(0,0,0,0.08);
}
.modal-opt--full {
  grid-column: 1 / -1;
  flex-direction: row;
  gap: 10px;
}

/* ── Mobil ── */
@media (max-width: 480px) {
  .cd-block { min-width: 54px; padding: 12px 7px; }
  .cd-dot   { font-size: 20px; }
  .tap-label { font-size: 9px; letter-spacing: 2.5px; }
  /* Konum kartları küçük ekranda yan yana kalır ama daha sıkışık */
  .loc-grid { gap: 10px; }
  .loc-name { font-size: 22px; }
  .loc-btn  { padding: 8px 14px; font-size: 11px; }
}

/* Çok küçük ekranda (360px altı) alt alta geç */
@media (max-width: 360px) {
  .loc-grid { grid-template-columns: 1fr; }
}
