/* YZ Hukuk Bürosu - Kurumsal Tasarım Sistemi & Animasyonlar */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,500;0,600;0,700;1,400&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
  --navy-primary: #0b132a;
  --navy-light: #162447;
  --navy-dark: #060b18;
  --gold-primary: #c5a059;
  --gold-hover: #d4af37;
  --gold-dark: #9a7b38;
  --gold-soft: rgba(197, 160, 89, 0.12);
  --text-dark: #1e293b;
  --text-muted: #64748b;
  --text-light: #f8fafc;
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

body {
  font-family: var(--font-sans);
  color: var(--text-dark);
  background-color: #fafafa;
  overflow-x: hidden;
}

h1, h2, h3, h4, .font-serif {
  font-family: var(--font-serif);
}

/* Altın Metin & Kenarlık Utilleri */
.text-gold {
  color: var(--gold-primary);
}
.bg-navy {
  background-color: var(--navy-primary);
}
.bg-navy-dark {
  background-color: var(--navy-dark);
}
.bg-gold {
  background-color: var(--gold-primary);
}
.border-gold {
  border-color: var(--gold-primary);
}

/* Glassmorphism ve Lüks Kartlar */
.glass-nav {
  background: rgba(11, 19, 42, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(197, 160, 89, 0.2);
}

.legal-card {
  background: #ffffff;
  border: 1px solid rgba(226, 232, 240, 0.8);
  border-radius: 12px;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.legal-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 0%;
  background: var(--gold-primary);
  transition: height 0.35s ease;
}

.legal-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 30px -10px rgba(11, 19, 42, 0.12), 0 10px 15px -5px rgba(197, 160, 89, 0.1);
  border-color: rgba(197, 160, 89, 0.4);
}

.legal-card:hover::before {
  height: 100%;
}

/* MOBİL MENÜ (%70 Ekran Genişliği Kuralları) */
.mobile-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: 70vw !important;
  max-width: 70% !important;
  height: 100vh;
  background-color: var(--navy-primary);
  z-index: 9999;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.77, 0, 0.175, 1);
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
  display: flex;
  flex-direction: column;
  border-left: 2px solid var(--gold-primary);
}

.mobile-drawer.open {
  transform: translateX(0);
}

.mobile-drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(6, 11, 24, 0.7);
  backdrop-filter: blur(4px);
  z-index: 9998;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.mobile-drawer-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

/* Buton Tasarımları */
.btn-gold {
  background: linear-gradient(135deg, #c5a059 0%, #9a7b38 100%);
  color: #ffffff;
  font-weight: 600;
  padding: 0.75rem 1.75rem;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 14px rgba(197, 160, 89, 0.35);
}

.btn-gold:hover {
  background: linear-gradient(135deg, #d4af37 0%, #c5a059 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(197, 160, 89, 0.5);
}

.btn-outline-gold {
  border: 2px solid var(--gold-primary);
  color: var(--gold-primary);
  font-weight: 600;
  padding: 0.7rem 1.6rem;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.btn-outline-gold:hover {
  background-color: var(--gold-primary);
  color: #ffffff;
  transform: translateY(-2px);
}

/* Scroll Reveal Animasyonları */
.reveal-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

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

/* Altın Lüks Çizgi */
.gold-divider {
  height: 2px;
  width: 60px;
  background: linear-gradient(90deg, var(--gold-primary) 0%, transparent 100%);
  margin: 1rem 0;
}

.gold-divider-center {
  margin: 1rem auto;
}

/* Hero Arka Plan Efekti */
.hero-overlay {
  background: linear-gradient(135deg, rgba(11, 19, 42, 0.93) 0%, rgba(6, 11, 24, 0.88) 100%);
}
