/* ============================================================
   Aura Royal Spa — Özel stil katmanı
   Tailwind CDN yüklendikten sonra bu dosya component class'larını
   tanımlar. Sayfa şablonlarında uzun Tailwind zincirleri yerine
   bu kısa class'ları kullanın.
   ============================================================ */

:root {
  --gold-400: #d4af37;
  --gold-300: #dcb95c;
  --ink-950:  #0a0a0a;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

/* Mobil sticky CTA için footer altına nefes alanı */
@media (max-width: 767px) {
  body { padding-bottom: 76px; }
}

/* ----------------------------------------------------------------
   Tipografi yardımcıları
   --------------------------------------------------------------*/
.eyebrow {
  display: inline-flex;
  align-items: center;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: #a8842a;
}

.section-title {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 600;
  font-size: clamp(1.85rem, 1.2rem + 2vw, 2.75rem);
  line-height: 1.15;
  color: #0a0a0a;
  letter-spacing: -0.01em;
}

.footer-title {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.25rem;
  color: var(--gold-300);
  margin-bottom: 1rem;
}

/* ----------------------------------------------------------------
   Buton sistemi
   --------------------------------------------------------------*/
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.5rem;
  border-radius: 9999px;
  background: var(--gold-400);
  color: var(--ink-950);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.01em;
  box-shadow: 0 10px 25px -10px rgba(212, 175, 55, 0.55);
  transition: background-color .2s ease, transform .2s ease, box-shadow .2s ease;
}
.btn-primary:hover {
  background: #e3c25b;
  transform: translateY(-1px);
}
.btn-primary:focus-visible {
  outline: 2px solid var(--gold-400);
  outline-offset: 3px;
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.5rem;
  border-radius: 9999px;
  border: 1px solid rgba(212, 175, 55, 0.35);
  color: #f4e9c4;
  font-weight: 500;
  font-size: 0.9rem;
  transition: background-color .2s ease, color .2s ease, border-color .2s ease;
}
.btn-outline:hover {
  background: rgba(212, 175, 55, 0.1);
  border-color: var(--gold-400);
  color: var(--gold-300);
}

.btn-outline-light {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.5rem;
  border-radius: 9999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #faf7f2;
  font-weight: 500;
  font-size: 0.9rem;
  transition: background-color .2s ease, color .2s ease;
}
.btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.06);
}

.btn-outline-dark {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.5rem;
  border-radius: 9999px;
  border: 1px solid #0a0a0a;
  color: #0a0a0a;
  font-weight: 600;
  font-size: 0.9rem;
  transition: background-color .2s ease, color .2s ease;
}
.btn-outline-dark:hover {
  background: #0a0a0a;
  color: var(--gold-300);
}

.btn-ghost-mobile {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1rem;
  border-radius: 0.75rem;
  background: rgba(255, 255, 255, 0.06);
  color: #f4e9c4;
  font-weight: 500;
  font-size: 0.9rem;
}

/* ----------------------------------------------------------------
   Kartlar
   --------------------------------------------------------------*/
.service-card {
  background: #ffffff;
  border-radius: 1.25rem;
  padding: 1.75rem;
  border: 1px solid rgba(10, 10, 10, 0.06);
  box-shadow: 0 1px 0 rgba(10, 10, 10, 0.02);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.service-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 40px -25px rgba(10, 10, 10, 0.25);
  border-color: rgba(212, 175, 55, 0.4);
}

.testimonial-card {
  background: #ffffff;
  border-radius: 1.25rem;
  padding: 1.75rem;
  border: 1px solid rgba(10, 10, 10, 0.06);
  height: 100%;
}

/* ----------------------------------------------------------------
   Form alanları
   --------------------------------------------------------------*/
.field-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  color: #1a1a1a;
  margin-bottom: 0.4rem;
}

.field-input,
.field-textarea,
.field-select {
  width: 100%;
  background: #ffffff;
  border: 1px solid rgba(10, 10, 10, 0.12);
  border-radius: 0.75rem;
  padding: 0.75rem 1rem;
  font-size: 0.95rem;
  color: #0a0a0a;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.field-input:focus,
.field-textarea:focus,
.field-select:focus {
  outline: none;
  border-color: var(--gold-400);
  box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.15);
}
.field-textarea { min-height: 130px; resize: vertical; }

/* ----------------------------------------------------------------
   Yardımcılar
   --------------------------------------------------------------*/
.divider-gold {
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(212,175,55,0.4), transparent);
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}
