/* ── Deka Life Public CSS ─────────────────────────────── */
:root {
  --gold: #C9A84C;
  --gold-light: #E8C96A;
  --dark: #1A1A1A;
  --dark-2: #2C2C2C;
  --white: #FFFFFF;
  --gray: #F5F5F5;
  --text: #333333;
  --text-muted: #777;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--text);
  background: var(--white);
}

/* Placeholder — Faz 3'te detaylandırılacak */

/* WhatsApp Button */
.whatsapp-btn {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 56px; height: 56px;
  background: #25D366;
  color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 26px;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  z-index: 999;
  transition: transform 0.2s, box-shadow 0.2s;
}
.whatsapp-btn:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 28px rgba(37,211,102,0.5);
  color: #fff;
}
