/* GLOBAL + THEME TOKENS */

:root{
  --bg:#0b1220;
  --text:#eaf0ff;
  --muted:rgba(234,240,255,.78);
  --muted2:rgba(234,240,255,.58);

  --border:rgba(255,255,255,.14);
  --card:rgba(255,255,255,.06);

  --accent:#0a66ff;
  --accent2:#00c2a8;

  --radius:20px;
  --shadow:0 18px 60px rgba(0,0,0,.35);
}

/* LIGHT THEME */
body.theme-light{
  --bg:#f6f8ff;
  --text:#0b1220;
  --muted:rgba(11,18,32,.76);
  --muted2:rgba(11,18,32,.56);

  --border:rgba(11,18,32,.14);
  --card:rgba(255,255,255,.90);

  --shadow:0 18px 60px rgba(11,18,32,.10);
}

*{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }

body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial;
  color:var(--text);
  background:
    radial-gradient(1000px 520px at 15% -10%, rgba(10,102,255,.22), transparent 60%),
    radial-gradient(900px 460px at 90% 10%, rgba(0,194,168,.18), transparent 60%),
    var(--bg);
}

a{ color:inherit; text-decoration:none; }
.container{ width:min(1120px, calc(100% - 32px)); margin:0 auto; }

.muted{ color: var(--muted); }
.muted2{ color: var(--muted2); }
.tiny{ color: var(--muted2); font-size:.82rem; line-height:1.5; }

/* ===========================
   FLOATING ACTION BUTTONS
   =========================== */

.floating-actions{
  position: fixed;
  right: 16px;
  bottom: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 9999;
}

/* SOL ALT versiyonu */
.floating-actions--left{
  left: 16px;
  right: auto;
}

.fab{
  display: inline-flex;
  align-items: center;
  gap: 10px;

  padding: 12px 16px;
  border-radius: 999px;

  font-weight: 800;
  font-size: 14px;
  text-decoration: none;
  color: #fff;

  border: 1px solid rgba(255,255,255,.18);
  backdrop-filter: blur(12px);
  box-shadow: 0 10px 30px rgba(0,0,0,.35);

  transition: transform .15s ease, box-shadow .15s ease;
}

/* ICON FONT */
.fab i{
  font-size: 18px;
  line-height: 1;
}

/* Ara */
.fab-call{
  background: rgba(30,35,45,.85);
}

/* WhatsApp */
.fab-wa{
  background: linear-gradient(135deg,#25d366,#1ebe5d);
}

.fab:hover{
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(0,0,0,.45);
}

/* Mobil */
@media (max-width: 480px){
  .fab span{
    display: none;
  }
  .fab{
    padding: 12px;
  }
}

/* Instagram */
.fab-ig{
  background: linear-gradient(45deg,#f58529,#dd2a7b,#8134af,#515bd4);
}

/* Contact CTA butonlarında ikon hizası (bozmaz) */
.cta .btn{
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.cta .btn i{
  font-size: 18px;
  line-height: 1;
}
/* =========================
   HEADER – INSTAGRAM ICON
   ========================= */

.topbar__inner{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.header-actions{
  display: flex;
  align-items: center;
  gap: 14px;
}

/* Instagram icon (header sağ) */
.header-instagram{
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;

  background: linear-gradient(
    45deg,
    #f58529,
    #dd2a7b,
    #8134af,
    #515bd4
  );

  color: #fff;
  font-size: 20px;

  box-shadow: 0 8px 22px rgba(0,0,0,.35);
  transition: transform .15s ease, box-shadow .15s ease;
}

.header-instagram:hover{
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(0,0,0,.45);
}
/* ===============================
   LIGHT THEME – İLETİŞİM DÜZELTME
   =============================== */

body.theme-light .contact-section {
  background: #f6f7fb;
}

body.theme-light .contact-card {
  background: #ffffff;
  color: #111;
  border: 1px solid #e5e7eb;
}

body.theme-light .contact-card h3,
body.theme-light .contact-card h4,
body.theme-light .contact-card p,
body.theme-light .contact-card span,
body.theme-light .contact-card strong {
  color: #111 !important;
}

body.theme-light .contact-card .muted,
body.theme-light .contact-card .label {
  color: #555 !important;
}

/* Ara / WhatsApp butonları */
body.theme-light .contact-card .icon-btn {
  background: #f1f5f9;
  color: #111;
  border: 1px solid #d1d5db;
}

body.theme-light .contact-card .icon-btn svg {
  fill: #111;
}

/* Konum kartı */
body.theme-light .location-pill {
  background: #f1f5f9;
  color: #111;
}
/* LIGHT THEME – ÇALIŞMA SAATLERİ YAZISI DÜZELTME */

body.theme-light .contact-card .work-hours,
body.theme-light .contact-card .hours,
body.theme-light .contact-card .time {
  color: #111 !important;
  font-weight: 600;
}
/* LIGHT THEME – İLETİŞİM AÇIKLAMA YAZISI DÜZELTME */

body.theme-light .contact-header p,
body.theme-light .contact-header .subtitle,
body.theme-light .contact-description {
  color: #444 !important;
}
/* LIGHT MODE – İLETİŞİM BAŞLIK AÇIKLAMA YAZISI */

body.theme-light .section-head p {
  color: #444 !important;
}
