/*
 * Turuncu Fal - Optimized CSS
 * Tüm inline CSS kodları ve gereksiz tekrarlar temizlendi
 */

/* Temel Animasyonlar */
@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
  100% { transform: translateY(0px); }
}

@keyframes float-teller {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-20px); }
  100% { transform: translateY(0px); }
}

@keyframes alias-shimmer {
  0% { left: -100%; }
  100% { left: 100%; }
}

@keyframes floatParticle {
  0%, 100% { transform: translate(0, 0); }
  25% { transform: translate(10px, -10px); }
  50% { transform: translate(-5px, 10px); }
  75% { transform: translate(-10px, -5px); }
}

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

@keyframes twinkle {
  0% { opacity: 0; transform: scale(0.5); }
  50% { opacity: 1; transform: scale(1.2); }
  100% { opacity: 0; transform: scale(0.5); }
}

/* Ana sayfa section header stilleri - Merkez hizalama düzeltmesi */
.section-header {
  margin-bottom: 3rem;
  text-align: center;
  display: block;
}

.section-header .section-title {
  margin: 0 0 1rem;
  color: #fff;
  font-size: 2.5rem;
  display: block;
  text-align: center;
}

.section-header .section-subtitle {
  color: #ff6b00;
  font-size: 1.2rem;
  margin-bottom: 1rem;
  display: block;
  text-align: center;
}

/* Floating animation for the fortune teller image */
.floating-fortune-teller {
  animation: float-teller 6s ease-in-out infinite;
  max-height: 500px;
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.8));
}

/* Force meta section visibility */
.fortune-type-meta {
  display: flex !important;
  justify-content: center !important;
  gap: 15px !important;
  margin-bottom: 15px !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.meta-item, .price-badge, .duration-badge {
  display: inline-flex !important;
  align-items: center !important;
  visibility: visible !important;
  opacity: 1 !important;
}

/* WhatsApp ve Telefon Butonları */
.whatsapp-now {
  position: fixed;
  bottom: 80px;
  right: 20px;
  padding: 0;
  z-index: 9999;
  transition: transform 0.3s ease;
  display: block !important;
}

.whatsapp-now:hover {
  transform: scale(1.1);
}

.whatsapp-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background-color: #25d366;
  border-radius: 50%;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.whatsapp-icon i {
  font-size: 24px;
  color: #fff;
}

.telefon-now {
  position: fixed;
  bottom: 15px;
  right: 20px;
  padding: 0;
  z-index: 9999;
  transition: transform 0.3s ease;
  display: block !important;
}

.telefon-now:hover {
  transform: scale(1.1);
}

.telefon-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background-color: #ff6b00;
  border-radius: 50%;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.telefon-icon i {
  font-size: 20px;
  color: #fff;
}

/* Mobile adjustments for stacked buttons in bottom right */
@media (max-width: 767px) {
  .whatsapp-now {
    bottom: 85px;
    right: 15px;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
  }
  .telefon-now {
    bottom: 20px;
    right: 15px;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
  }
  .whatsapp-icon, .telefon-icon {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
  }
}

/* Sayfa yükleme optimizasyonu için kritik CSS */
.hero-image {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}

/* Sayfa yükleme sırasında içeriği gizleme ve kademeli gösterme */
.content-fade-in {
  opacity: 0;
  animation: fadeIn 0.5s ease-in-out forwards;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* Sayfa yükleme göstergesi kaldırıldı */
