/* Avukat Portfolyo Özel CSS Dosyası */
:root {
  --gold-primary: #D9B470;
  --gold-secondary: #B87D2B;
  --gold-accent: #E7D1A5;
  --dark-navy: #0B132B;
  --dark-slate: #0F172A;
  --gold-gradient: linear-gradient(135deg, #E7D1A5 0%, #D9B470 50%, #B87D2B 100%);
}

/* Kaydırma davranışı */
html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: #070B19; /* Navy-950 */
  color: #F8FAFC;
  overflow-x: hidden;
}

/* Serif Font Ayarı (Başlıklar için) */
.font-serif-playfair {
  font-family: 'Playfair Display', Georgia, Cambria, "Times New Roman", Times, serif;
}

/* Cam Morfolojisi (Glassmorphism) Paneli */
.glass-panel {
  background: rgba(15, 23, 42, 0.65);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(217, 180, 112, 0.15);
}

/* Şeffaf Navigasyon Barı */
.glass-nav {
  background: rgba(7, 11, 25, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(217, 180, 112, 0.1);
}

/* Altın Degrade Metinleri */
.text-gold-gradient {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Altın Degrade Arka Planı (Butonlar vb.) */
.bg-gold-gradient {
  background: var(--gold-gradient);
}

/* Altın Parıltısı Hover Efektleri */
.hover-gold-glow {
  transition: all 0.3s ease;
}

.hover-gold-glow:hover {
  box-shadow: 0 0 20px rgba(217, 180, 112, 0.25);
  border-color: rgba(217, 180, 112, 0.4);
}

/* Özel Dikey Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: #070B19;
}
::-webkit-scrollbar-thumb {
  background: rgba(217, 180, 112, 0.25);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: rgba(217, 180, 112, 0.5);
}

/* Scroll Reveal Animasyon Altyapısı */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

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

/* Animasyon Gecikme Sınıfları */
.delay-100 { transition-delay: 100ms; }
.delay-200 { transition-delay: 200ms; }
.delay-300 { transition-delay: 300ms; }
.delay-400 { transition-delay: 400ms; }
.delay-500 { transition-delay: 500ms; }

/* Yüzen WhatsApp Butonu Stilleri */
.whatsapp-btn {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 40;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.3);
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.whatsapp-btn:hover {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.5);
}
.whatsapp-pulse {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: #25D366;
  opacity: 0.4;
  z-index: -1;
  animation: whatsapp-pulsate 2s infinite ease-out;
}
@keyframes whatsapp-pulsate {
  0% {
    transform: scale(1);
    opacity: 0.6;
  }
  100% {
    transform: scale(1.5);
    opacity: 0;
  }
}
