/* Keşif Evi Anaokulu - Didim
 * Özel Stil Dosyası
 * Menü: Outfit | Ana Başlıklar: DM Serif Display - 400 | Detaylar: Outfit
 */

@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display&family=Outfit:wght@300;400;500;600;700;800&display=swap');

:root {
  --brand-green: #2D8B3C;
  --brand-green-dark: #1e5f29;
  --brand-orange: #F07817;
  --brand-orange-gold: #d88932;
  --brand-blue: #1888C8;
}

/* Genel Tipografi: Detay yazıları Outfit */
body, p, span, li, a, input, select, textarea, button, .font-sans {
  font-family: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* Menü Fontu: Outfit */
.nav-link, #site-header, .menu-font {
  font-family: 'Outfit', sans-serif !important;
}

/* Ana Başlıklar: DM Serif Display - 400 */
h1, h2, h3, h4, .font-serif, .heading-serif {
  font-family: 'DM Serif Display', Georgia, serif !important;
  font-weight: 400 !important;
}

/* Hero Arka Plan Karartma */
.hero-overlay {
  background: linear-gradient(
    180deg,
    rgba(15, 23, 42, 0.55) 0%,
    rgba(22, 39, 26, 0.45) 40%,
    rgba(15, 23, 42, 0.85) 100%
  );
}

/* Canlı Rozet Parlama */
.pulsing-badge-dot {
  position: relative;
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #22c55e;
  box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7);
  animation: pulse-ring 2s infinite cubic-bezier(0.66, 0, 0, 1);
}

@keyframes pulse-ring {
  to {
    box-shadow: 0 0 0 10px rgba(34, 197, 94, 0);
  }
}

/* WhatsApp Butonu Altında ve Çevresinde Yanıp Sönme Animasyonu */
.whatsapp-pulse-ring {
  position: absolute;
  inset: -6px;
  border-radius: 9999px;
  background: rgba(37, 211, 102, 0.35);
  animation: wa-pulse 1.8s infinite ease-out;
  pointer-events: none;
  z-index: -1;
}

.whatsapp-pulse-ring-2 {
  position: absolute;
  inset: -12px;
  border-radius: 9999px;
  background: rgba(37, 211, 102, 0.2);
  animation: wa-pulse 1.8s infinite 0.4s ease-out;
  pointer-events: none;
  z-index: -2;
}

@keyframes wa-pulse {
  0% {
    transform: scale(0.9);
    opacity: 1;
  }
  100% {
    transform: scale(1.35);
    opacity: 0;
  }
}

/* Canlı Çevrimiçi Yanıp Sönen Rozet */
.live-beacon-dot {
  position: relative;
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #4ade80;
  box-shadow: 0 0 8px #4ade80;
  animation: beacon-blink 1.2s infinite ease-in-out;
}

@keyframes beacon-blink {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.3; transform: scale(0.7); }
}

/* Galeri Kartları ve Lightbox */
.gallery-item {
  overflow: hidden;
  border-radius: 1.5rem;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.gallery-item img {
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.gallery-item:hover img {
  transform: scale(1.08);
}

/* Zaman Çizelgesi (Timeline) Çizgisi */
.timeline-line {
  position: absolute;
  left: 23px;
  top: 30px;
  bottom: 30px;
  width: 2px;
  background: linear-gradient(180deg, #F07817 0%, #2D8B3C 50%, #d88932 100%);
  opacity: 0.35;
}

@media (max-width: 640px) {
  .timeline-line {
    left: 19px;
  }
}
