/* ==========================================================================
   EMİNE & BAYRAM DÜĞÜN WEB SİTESİ
   Premium Custom Styling - Akdeniz Concept (Vanilla CSS)
   ========================================================================== */

/* --- Tasarım Değişkenleri & Renk Paleti --- */
:root {
  --bg-cream-light: #FAF8F5;   /* Fildişi / Krem Arka Plan */
  --bg-cream-dark: #F3EFEA;    /* Koyu Krem / Yumuşak Kağıt */
  --bg-card: #FFFFFF;          /* Kart Arka Planı */
  --text-dark: #3C2F2F;        /* Koyu Kahverengi */
  --text-light: #8A7E72;       /* Açık Kahve Yardımcı Metin */
  
  --color-olive: #6E775B;      /* Akdeniz Zeytin Yeşili */
  --color-olive-light: #ECEFEA;/* Hafif Zeytin Yeşili Tonu */
  --color-olive-dark: #535C42; /* Derin Zeytin Yeşili */
  --color-gold-warm: #C3A37A;  /* Sıcak Şampanya Altını */
  --color-gold-light: #E7DCC4; /* Hafif Altın Vurgusu */
  --color-sand: #E2DCD5;       /* Kum Rengi Çizgiler */
  
  --font-serif: 'Cormorant Garamond', 'Times New Roman', serif;
  --font-sans: 'Montserrat', 'Inter', sans-serif;
  --font-cursive: 'Pinyon Script', cursive;
  
  --transition-smooth: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  --transition-slow: all 0.8s cubic-bezier(0.25, 1, 0.5, 1);
  
  --card-border: 1px solid rgba(195, 163, 122, 0.4); /* Zarif altın kenarlık */
}

/* --- Genel Sıfırlama & Temel Stiller --- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  background-color: var(--bg-cream-light); /* En alttaki katı pamuk kağıt zemin */
  color: var(--text-dark);
  font-family: var(--font-sans);
  font-weight: 400;
  line-height: 1.7;
  overflow-x: hidden;
}

/* Tipografi Kuralları */
h1, h2, h3, h4, h5, h6,
.hero-names,
.section-title,
.event-card-title,
.footer-names,
.countdown-num,
.success-heart-icon {
  font-family: var(--font-serif);
  font-weight: normal;
}

/* --- Kağıt Dokusu Overlay --- */
.paper-texture-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-image: radial-gradient(rgba(250, 248, 245, 0.05) 0%, rgba(243, 239, 234, 0.1) 100%);
  pointer-events: none;
  z-index: 99;
}

/* ==========================================================================
   Müzik Oynatıcı (Yüzen Dairesel Buton)
   ========================================================================== */
.floating-music-toggle {
  position: fixed;
  bottom: 25px;
  right: 25px;
  z-index: 100;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: var(--bg-card);
  border: 1px solid var(--color-gold-warm);
  box-shadow: 0 4px 15px rgba(110, 119, 91, 0.15);
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  outline: none;
  transition: var(--transition-smooth);
}

.floating-music-toggle:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(110, 119, 91, 0.25);
  border-color: var(--text-dark);
}

.vinyl-disk {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: transform 0.5s ease;
}

.floating-music-toggle.playing .vinyl-disk {
  animation: spinVinyl 4s linear infinite;
}

.music-note-icon {
  font-size: 1.1rem;
  color: var(--text-dark);
}

@keyframes spinVinyl {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* ==========================================================================
   Sabit Arka Plan Videosu (Filtresiz Canlı Renkler)
   ========================================================================== */
.hero-video-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 1; /* Body (0) üzerinde, Davetiyenin (5) altında */
  overflow: hidden;
  pointer-events: none; /* Sayfa etkileşimini ve tıklamaları engellememesi için */
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: none;
}

/* Masaüstü ve Mobil Video Gösterim Kuralları */
@media screen and (min-width: 768px) {
  #bgVideoDesktop {
    display: block;
  }
}

@media screen and (max-width: 767px) {
  #bgVideoMobile {
    display: block;
  }
}

/* ==========================================================================
   Genel Sayfa Düzeni & Giriş (Hero) Bölümü
   ========================================================================== */
.invitation-container {
  max-width: 100%;
  margin: 0 auto;
  position: relative;
  z-index: 5; /* Videonun (1) üzerinde yer alarak yazıları üste taşır */
}

.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  padding-bottom: 65px;
  background: transparent; /* Altındaki videoyu göstermek için */
}

/* Giriş Bölümü Logo (Aşağı Kaydır Üzeri) */
.hero-logo-scroll {
  max-width: 48px;
  height: auto;
  margin-bottom: 0.8rem;
  opacity: 0.9;
  filter: brightness(0) invert(1) drop-shadow(0 1px 4px rgba(0, 0, 0, 0.4));
  transition: var(--transition-smooth);
}


/* Aşağı Kaydırma İpucu (Scroll Indicator) */
.scroll-down-indicator {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #FFFFFF;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.45);
  cursor: pointer;
  z-index: 10;
  font-family: var(--font-sans);
  animation: bounceIndicator 2.2s infinite ease-in-out;
  user-select: none;
}

.scroll-text {
  font-size: 0.8rem;
  letter-spacing: 0.28rem;
  text-transform: uppercase;
  margin-bottom: 0.6rem;
  opacity: 0.85;
  font-weight: 500;
}

.scroll-arrow {
  font-size: 1.3rem;
}

@keyframes bounceIndicator {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* ==========================================================================
   Zarif Minimalist Bölüm Ayraçları (Ince Altın Çizgiler)
   ========================================================================== */
.section-divider-minimal {
  width: 130px;
  height: 15px;
  margin: 1.5rem auto 1rem auto;
  opacity: 0.8;
}

.section-divider-minimal svg {
  width: 100%;
  height: 100%;
}

.section-title {
  text-align: center;
  font-size: 2.2rem;
  letter-spacing: 0.25rem;
  color: var(--text-dark);
  margin-bottom: 0.8rem;
  text-transform: uppercase;
}

.section-subtitle {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 3rem auto;
  font-size: 1.05rem;
  color: var(--text-light);
  padding: 0 1.5rem;
  font-style: italic;
}

/* ==========================================================================
   Ana İçerik Kapsayıcısı (Şeffaf Geçişli Yazılı Kısım)
   ========================================================================== */
#mainContentContainer {
  position: relative;
  background-color: transparent; /* Kutu hissini önlemek için arka plan tamamen şeffaf */
  z-index: 10;
  opacity: 0; /* Başlangıçta görünmez, scroll ile belirecek */
  will-change: opacity;
}

/* İsimler ve Giriş Başlığı */
.intro-names-section {
  padding: 100px 20px 25px 20px;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.olive-branch-header {
  width: 110px;
  margin: 0 auto 1.8rem auto;
  opacity: 0.85;
}

.hero-intro-text {
  font-size: 0.9rem;
  letter-spacing: 0.38rem;
  color: var(--text-dark);
  margin-bottom: 1.8rem;
  text-transform: uppercase;
}

/* Koyu Kahverengi El Yazılı Başlık */
.hero-names {
  font-family: var(--font-cursive);
  font-size: 5.8rem;
  letter-spacing: normal;
  color: #3C2F2F; /* Lüks Koyu Kahverengi */
  line-height: 1.1;
  margin-bottom: 2.2rem;
  display: block;
  text-transform: none;
}

.hero-story-text {
  font-size: 1.2rem;
  line-height: 1.9;
  color: var(--text-dark);
  margin: 2.2rem auto 2rem auto;
  max-width: 520px;
  font-style: italic;
}

.families-container {
  display: flex;
  justify-content: space-between;
  border-top: none;
  padding-top: 0;
  margin: 0 auto 0 auto;
  max-width: 600px;
  width: 100%;
}

.family-column {
  width: 48%;
}

.family-names {
  font-size: 0.9rem;
  letter-spacing: 0.18rem;
  color: var(--text-dark);
  text-transform: uppercase;
  font-weight: 500;
}

/* ==========================================================================
   Geri Sayım (Countdown) Bölümü
   ========================================================================== */
.countdown-section {
  padding: 0.5rem 20px 1.5rem 20px;
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

/* Teşekkür Mesajı Cursive Yazı Stili */
.thank-you-text {
  font-family: var(--font-cursive);
  font-size: 3.5rem;
  color: var(--text-dark);
  line-height: 1.3;
  max-width: 600px;
  margin: 1.5rem auto 0 auto;
  text-transform: none;
  padding: 0 1rem;
  animation: fadeInText 1s ease-in-out forwards;
}

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

@media screen and (max-width: 767px) {
  .thank-you-text {
    font-size: 2.2rem;
    line-height: 1.4;
  }
}

/* Geri Sayım Şehir Alt Başlığı */
.countdown-city-title {
  text-align: center;
  font-family: var(--font-serif);
  font-size: 1.35rem;
  letter-spacing: 0.25rem;
  color: var(--color-gold-warm);
  margin-top: -0.4rem;
  margin-bottom: 2.2rem;
  text-transform: uppercase;
}

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

.countdown-box {
  background-color: var(--bg-card);
  border: 1px solid var(--color-sand);
  padding: 1.5rem 1.2rem;
  min-width: 90px;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  transition: var(--transition-smooth);
}

.countdown-box:hover {
  border-color: var(--color-gold-warm);
  transform: translateY(-2px);
}

.countdown-num {
  font-size: 2.2rem;
  color: var(--text-dark);
  line-height: 1.1;
}

.countdown-label {
  font-size: 0.85rem;
  color: var(--text-light);
  text-transform: uppercase;
  margin-top: 0.4rem;
  letter-spacing: 0.08rem;
}

.countdown-divider {
  font-size: 2rem;
  color: var(--color-gold-warm);
}

/* ==========================================================================
   Program Detay Kartları (Events)
   ========================================================================== */
.events-section {
  padding: 1rem 20px 1.5rem 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.events-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  width: 100%;
}

@media screen and (min-width: 1024px) {
  .events-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.event-card {
  background-color: var(--bg-card);
  border: var(--card-border);
  transition: var(--transition-smooth);
  position: relative;
  display: flex;
  border-radius: 16px;
}

.event-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 35px rgba(60, 47, 47, 0.06);
  border-color: var(--text-dark);
}

.event-card-inner {
  padding: 2.5rem 2rem;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.event-header {
  text-align: center;
  border-bottom: 1px solid var(--color-sand);
  padding-bottom: 1.2rem;
  margin-bottom: 1.8rem;
}

.event-card-title {
  font-size: 1.4rem;
  letter-spacing: 0.2rem;
  color: var(--text-dark);
  text-transform: uppercase;
}

.event-body {
  flex-grow: 1;
  margin-bottom: 1.8rem;
}

.event-detail-row {
  margin-bottom: 0.9rem;
  font-size: 1.02rem;
}

.detail-label {
  color: var(--text-light);
  font-weight: 500;
  display: inline-block;
  width: 65px;
}

.detail-value {
  color: var(--text-dark);
}

.event-info-note {
  font-size: 0.98rem;
  font-style: italic;
  color: var(--text-dark);
  background-color: var(--bg-cream-dark);
  padding: 0.8rem 1rem;
  border-left: 2px solid var(--color-gold-warm);
  margin: 1.2rem 0;
  line-height: 1.5;
}

.event-map-wrapper {
  margin-bottom: 1.8rem;
  overflow: hidden;
  border: 1px solid var(--color-sand);
  border-radius: 8px;
}

.event-map-wrapper iframe {
  display: block;
  filter: grayscale(0.1) contrast(0.9);
}

.event-footer {
  text-align: center;
}

.map-link-btn {
  display: inline-block;
  padding: 0.8rem 2rem;
  background-color: transparent;
  border: 1px solid var(--text-dark);
  color: var(--text-dark);
  text-decoration: none;
  font-size: 0.9rem;
  letter-spacing: 0.18rem;
  text-transform: uppercase;
  transition: var(--transition-smooth);
  border-radius: 24px;
}

.map-link-btn i {
  margin-right: 0.5rem;
}

.map-link-btn:hover {
  background-color: var(--text-dark);
  color: #FFFFFF;
}

/* ==========================================================================
   Fotoğraf & Video Paylaşım Bölümü (Google Drive Yükleme)
   ========================================================================== */
.sharing-section {
  padding: 1rem 20px 1.5rem 20px;
  max-width: 680px;
  margin: 0 auto;
}

.upload-container {
  background-color: var(--bg-card);
  border: var(--card-border);
  padding: 3rem 2.2rem;
  box-shadow: 0 10px 30px rgba(60, 47, 47, 0.03);
  text-align: center;
  border-radius: 16px;
}

.upload-name-group {
  margin-bottom: 2.2rem;
  text-align: left;
}

.form-group {
  position: relative;
  z-index: 2;
}

.form-label {
  display: block;
  font-size: 1rem;
  color: var(--text-dark);
  margin-bottom: 0.6rem;
  letter-spacing: 0.05rem;
  font-weight: 500;
}

.form-input {
  width: 100%;
  padding: 0.85rem 1.1rem;
  border: 1px solid var(--color-sand);
  background-color: #FFFFFF;
  color: var(--text-dark);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  outline: none;
  border-radius: 8px;
  transition: var(--transition-smooth);
}

.form-input:focus {
  border-color: var(--text-dark);
  box-shadow: 0 0 8px rgba(60, 47, 47, 0.06);
}

.upload-dropzone {
  border: 1px dashed var(--color-gold-warm);
  padding: 3.5rem 1.8rem;
  cursor: pointer;
  background-color: var(--bg-cream-light);
  transition: var(--transition-smooth);
  border-radius: 12px;
}

.upload-dropzone:hover,
.upload-dropzone.dragover {
  background-color: var(--bg-cream-dark);
  border-color: var(--text-dark);
}

.upload-icon {
  font-size: 2.6rem;
  color: var(--color-gold-warm);
  margin-bottom: 1.2rem;
  transition: var(--transition-smooth);
}

.upload-dropzone:hover .upload-icon,
.upload-dropzone.dragover .upload-icon {
  color: var(--text-dark);
  transform: translateY(-3px);
}

.upload-text {
  font-size: 1.1rem;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.upload-text strong {
  color: var(--color-olive);
  font-weight: normal;
  text-decoration: underline;
}

.upload-subtext {
  font-size: 0.85rem;
  color: var(--text-light);
}

/* Seçilen Dosyaların Önizleme Listesi */
.upload-files-preview-container {
  margin-top: 2rem;
  text-align: left;
  background-color: var(--bg-cream-light);
  border: 1px solid var(--color-sand);
  padding: 1.8rem;
  border-radius: 12px;
}

.preview-title {
  font-size: 1.05rem;
  color: var(--text-dark);
  margin-bottom: 1.2rem;
  letter-spacing: 0.08rem;
  text-transform: uppercase;
}

.preview-files-list {
  max-height: 220px;
  overflow-y: auto;
  margin-bottom: 1.8rem;
  border: 1px solid var(--color-sand);
  background: #FFFFFF;
  border-radius: 8px;
}

.preview-file-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.8rem 1.1rem;
  border-bottom: 1px solid var(--color-sand);
  font-size: 0.95rem;
}

.preview-file-row:last-child {
  border-bottom: none;
}

.preview-file-name {
  color: var(--text-dark);
  font-weight: 500;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: 60%;
}

.preview-file-info {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.preview-file-size {
  color: var(--text-light);
  font-size: 0.85rem;
}

.remove-file-btn {
  background: none;
  border: none;
  color: var(--color-gold-warm);
  cursor: pointer;
  font-size: 1rem;
  transition: var(--transition-smooth);
  padding: 0.2rem;
}

.remove-file-btn:hover {
  color: var(--text-dark);
  transform: scale(1.15);
}

/* Yükleme Butonu */
.rsvp-submit-btn {
  width: 100%;
  padding: 1rem;
  background-color: var(--text-dark);
  color: #FFFFFF;
  border: none;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.15rem;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition-smooth);
  border-radius: 24px;
}

.rsvp-submit-btn:hover {
  background-color: #2D2323;
  box-shadow: 0 4px 15px rgba(60, 47, 47, 0.2);
}

/* İlerleme Paneli (Progress Bar) */
.upload-progress-container {
  padding: 1.8rem 0;
  text-align: left;
}

.progress-info-row {
  display: flex;
  justify-content: space-between;
  font-size: 1rem;
  color: var(--text-dark);
  margin-bottom: 0.8rem;
}

.progress-bar-bg {
  width: 100%;
  height: 6px;
  background-color: var(--color-sand);
  border-radius: 6px;
  overflow: hidden;
  margin-bottom: 1.5rem;
}

.progress-bar-fill {
  height: 100%;
  background-color: var(--text-dark);
  width: 0%;
  transition: width 0.3s ease;
}

.upload-files-list {
  max-height: 180px;
  overflow-y: auto;
  border: 1px solid var(--color-sand);
  padding: 0.6rem;
  background-color: #FFFFFF;
  border-radius: 8px;
}

.upload-file-row {
  display: flex;
  justify-content: space-between;
  padding: 0.6rem;
  border-bottom: 1px solid var(--color-sand);
  font-size: 0.92rem;
}

.upload-file-row:last-child {
  border-bottom: none;
}

.upload-file-name {
  color: var(--text-dark);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 70%;
}

.upload-file-status {
  font-size: 0.85rem;
  padding: 0.1rem 0.5rem;
}

.upload-file-status.pending {
  color: var(--text-light);
}

.upload-file-status.uploading {
  color: var(--color-gold-warm);
  font-style: italic;
}

.upload-file-status.success {
  color: #27AE60;
  font-weight: bold;
}

.upload-file-status.error {
  color: var(--color-olive);
  font-weight: bold;
}

/* Başarı Mesajı */
.upload-success-message {
  padding: 2rem 0;
}

.success-heart-icon {
  font-size: 3.2rem;
  color: var(--text-dark);
  margin-bottom: 1.2rem;
  animation: beatHeart 1.2s infinite alternate ease-in-out;
}

@keyframes beatHeart {
  0% { transform: scale(1); }
  100% { transform: scale(1.1); }
}

.success-text-content {
  font-size: 1.15rem;
  color: var(--text-dark);
  margin-bottom: 1.8rem;
}

.reset-upload-btn {
  background-color: var(--text-dark);
  color: #FFFFFF;
  border: none;
  padding: 0.8rem 2rem;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  letter-spacing: 0.12rem;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition-smooth);
  border-radius: 24px;
}

.reset-upload-btn:hover {
  background-color: #2D2323;
}

/* ==========================================================================
   İletişim Bölümü (Contact)
   ========================================================================== */
.contact-section {
  padding: 1rem 20px 1.5rem 20px;
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.contact-card {
  background-color: var(--bg-card);
  border: var(--card-border);
  padding: 3rem 2.2rem;
  box-shadow: 0 10px 30px rgba(60, 47, 47, 0.03);
  border-radius: 16px;
}

.contact-phone {
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 1.8rem;
  color: var(--text-dark);
  letter-spacing: 0.05rem;
  margin-bottom: 1.8rem;
}

.whatsapp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 2.2rem;
  background-color: var(--text-dark);
  color: #FFFFFF;
  text-decoration: none;
  font-size: 1rem;
  letter-spacing: 0.15rem;
  text-transform: uppercase;
  transition: var(--transition-smooth);
  width: 100%;
  max-width: 340px;
  border-radius: 24px;
}

.whatsapp-btn i {
  font-size: 1.1rem; /* WhatsApp iconu daha orantılı hale getirildi */
  margin-right: 0.5rem;
}

.whatsapp-btn:hover {
  background-color: #2D2323;
  box-shadow: 0 6px 20px rgba(60, 47, 47, 0.18);
}

/* ==========================================================================
   Alt Bilgi (Footer)
   ========================================================================== */
.site-footer {
  background-color: var(--bg-cream-dark);
  border-top: 1px solid var(--color-sand);
  padding: 4.5rem 20px;
  text-align: center;
}

.footer-names {
  font-size: 2rem;
  letter-spacing: 0.35rem;
  color: var(--text-dark);
  margin-bottom: 1.8rem;
}

.footer-dates {
  margin-bottom: 2.5rem;
}

.footer-date-row {
  font-size: 0.95rem;
  letter-spacing: 0.18rem;
  color: var(--text-light);
  margin-bottom: 0.5rem;
}

.footer-logo-container {
  margin-top: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.footer-logo {
  max-width: 60px;
  height: auto;
  opacity: 0.75;
  transition: var(--transition-smooth);
}

.footer-logo:hover {
  opacity: 1;
  transform: scale(1.05);
}

/* ==========================================================================
   Duyarlı Tasarım Ekleri (Responsive Media Queries)
   ========================================================================== */

/* Masaüstü Ekranlar */
@media screen and (min-width: 1024px) {
  .intro-names-section {
    padding: 120px 40px 90px 40px;
  }
}

/* Tablet Ekranlar */
@media screen and (max-width: 1023px) {
  .hero-names {
    font-size: 4.8rem;
  }
}

/* Mobil Cihazlar */
@media screen and (max-width: 767px) {
  .hero-names {
    font-size: 3.6rem;
  }
  
  .intro-names-section {
    padding: 80px 15px 60px 15px;
  }
  
  .hero-story-text {
    font-size: 1.15rem;
    margin: 1.8rem auto 2.2rem auto;
  }
  
  .families-container {
    flex-direction: column;
    gap: 1.2rem;
    padding-top: 1.8rem;
  }
  
  .family-column {
    width: 100%;
  }
  
  .section-title {
    font-size: 1.8rem;
    letter-spacing: 0.2rem;
  }
  
  .event-card {
    max-width: 100%;
  }
  
  .events-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .countdown-grid {
    gap: 0.7rem;
  }

  .countdown-box {
    min-width: 65px;
    padding: 1rem 0.5rem;
  }

  .countdown-num {
    font-size: 1.6rem;
  }

  .countdown-divider {
    font-size: 1.3rem;
  }
}

/* ==========================================================================
   Münferit Yükleme Sayfası Stilleri (Standalone Upload Page)
   ========================================================================== */
.standalone-upload-page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  justify-content: space-between;
  padding: 3rem 1.5rem;
  background-color: var(--bg-cream-light);
}

.standalone-header {
  text-align: center;
  margin-bottom: 2rem;
  animation: fadeInDown 0.8s ease-out;
}

.standalone-logo {
  max-width: 60px;
  height: auto;
  margin-bottom: 0.8rem;
  opacity: 0.9;
  transition: var(--transition-smooth);
}

.standalone-logo:hover {
  transform: scale(1.08);
}

.standalone-names {
  font-family: var(--font-cursive);
  font-size: 3.4rem;
  color: var(--text-dark);
  line-height: 1.1;
  margin-bottom: 0.2rem;
}

.standalone-title {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  letter-spacing: 0.22rem;
  text-transform: uppercase;
  color: var(--text-light);
  margin-top: 0.6rem;
}

.standalone-upload-wrapper {
  flex-grow: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 680px;
  margin: 0 auto;
  animation: fadeInUp 0.8s ease-out;
}

.standalone-upload-wrapper .upload-container {
  width: 100%;
}

.standalone-footer {
  text-align: center;
  margin-top: 3rem;
  font-size: 0.85rem;
  letter-spacing: 0.15rem;
  color: var(--text-light);
  text-transform: uppercase;
}

@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}

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

@media screen and (max-width: 767px) {
  .standalone-names {
    font-size: 2.6rem;
  }
  .standalone-title {
    font-size: 1.25rem;
    letter-spacing: 0.16rem;
  }
  .standalone-upload-page {
    padding: 2rem 1rem;
  }
}

