/* ============================================================
   css/style.css — Saraylı Künefe | Özel Stil Dosyası
   ============================================================ */

/* ── Google Fonts ─────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700&family=Nunito:wght@400;600;700&display=swap');

/* ── CSS Değişkenleri ─────────────────────────────────────── */
:root {
  --renk-koyu:    #1A0A00;
  --renk-altin:   #C8860A;
  --renk-karamel: #F5A623;
  --renk-krem:    #FAF3E0;
  --renk-kum:     #F2EAD3;
  --renk-yesil:   #1B5E20;
  --renk-lacivert:#0D1B4B;
  --font-baslik:  'Playfair Display', Georgia, serif;
  --font-govde:   'Nunito', 'Segoe UI', sans-serif;
  --gecis:        all 0.45s cubic-bezier(0.25, 1, 0.5, 1);
  --kart-shadow:  0 14px 40px rgba(26,10,0,0.12);
  --kart-shadow-hover: 0 24px 64px rgba(26,10,0,0.24);
  --kart-radius:  24px;
  --navbar-h:     84px;
}

/* ── Noise Texture Filter ─────────────────────────────────── */
.noise-bg {
  position: relative;
}
.noise-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
  border-radius: inherit;
}

/* ── Temel Sıfırlama ──────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  background-color: var(--renk-krem);
  font-family: var(--font-govde);
  color: var(--renk-koyu);
  overflow-x: hidden;
  font-size: 1.05rem;
  line-height: 1.8;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-baslik);
  color: var(--renk-koyu);
  line-height: 1.28;
}

a { color: inherit; text-decoration: none; transition: var(--gecis); }
img { max-width: 100%; height: auto; }

/* ── Animasyonlar ─────────────────────────────────────────── */
@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(32px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes shimmer {
  0%   { background-position: -200% center; }
  100% { background-position: 200% center; }
}

@keyframes bounceDown {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(10px); }
}

@keyframes rotateIn {
  from { transform: rotate(-5deg) scale(0.85); opacity: 0; }
  to   { transform: rotate(0) scale(1); opacity: 1; }
}

@keyframes pulse-ring {
  0%   { box-shadow: 0 0 0 0 rgba(200,134,10,0.45); }
  70%  { box-shadow: 0 0 0 14px rgba(200,134,10,0); }
  100% { box-shadow: 0 0 0 0 rgba(200,134,10,0); }
}

/* ── Fade-in Section ──────────────────────────────────────── */
.fade-in-section {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.fade-in-section.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Bootstrap Btn Override ───────────────────────────────── */
.btn-primary {
  background: linear-gradient(135deg, var(--renk-altin) 0%, var(--renk-karamel) 100%);
  border: none;
  color: var(--renk-koyu) !important;
  font-family: var(--font-govde);
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: 0.05em;
  border-radius: 50px;
  padding: 14px 36px;
  box-shadow: 0 8px 24px rgba(200,134,10,0.35);
  transition: var(--gecis);
  position: relative;
  overflow: hidden;
  text-transform: uppercase;
}
.btn-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(255,255,255,0.35) 50%,
    transparent 100%);
  background-size: 200% 100%;
  opacity: 0;
  transition: opacity 0.3s;
}
.btn-primary:hover {
  transform: scale(1.06) translateY(-4px);
  box-shadow: 0 14px 32px rgba(245,166,35,0.6);
  background: linear-gradient(135deg, #e09d10 0%, #ffae2b 100%);
  color: var(--renk-koyu) !important;
}
.btn-primary:hover::after { opacity: 1; animation: shimmer 0.7s linear infinite; }
.btn-primary:active { transform: scale(0.96); box-shadow: 0 4px 12px rgba(200,134,10,0.3); }

.btn-outline-altin {
  background: transparent;
  border: 2px solid var(--renk-karamel);
  color: var(--renk-karamel) !important;
  font-weight: 800;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: 50px;
  padding: 12px 34px;
  transition: var(--gecis);
}
.btn-outline-altin:hover {
  background: var(--renk-karamel);
  color: var(--renk-koyu) !important;
  transform: scale(1.06) translateY(-4px);
  box-shadow: 0 10px 24px rgba(245,166,35,0.5);
}

/* ── Navbar ───────────────────────────────────────────────── */
.navbar-sarayli {
  background: 
    linear-gradient(135deg, rgba(20, 8, 0, 0.90) 0%, rgba(30, 12, 0, 0.95) 100%),
    url('../uploads/navbar_premium_v2.png') center/cover no-repeat;
  background-blend-mode: multiply;
  backdrop-filter: blur(20px) saturate(1.8);
  -webkit-backdrop-filter: blur(20px) saturate(1.8);
  border-bottom: 1px solid rgba(245,166,35,0.25);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  min-height: var(--navbar-h);
  z-index: 1040;
}
.navbar-sarayli.scrolled {
  background: 
    linear-gradient(rgba(10, 4, 0, 0.94), rgba(15, 6, 0, 0.97)),
    url('../uploads/navbar_premium_v2.png') center/cover no-repeat;
  background-blend-mode: multiply;
  box-shadow: 0 8px 32px rgba(26,10,0,0.45);
  border-bottom: 1px solid rgba(245,166,35,0.4);
}
.navbar-brand {
  font-family: var(--font-baslik);
  font-size: 1.55rem;
  font-weight: 700;
  color: var(--renk-karamel) !important;
  letter-spacing: 0.01em;
  text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}
.navbar-brand span { color: var(--renk-krem); }
.navbar-sarayli .nav-link {
  color: rgba(250,243,224,0.85) !important;
  font-weight: 600;
  font-size: 0.92rem;
  letter-spacing: 0.03em;
  padding: 0.45rem 0.9rem !important;
  transition: var(--gecis);
  position: relative;
  text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}
.navbar-sarayli .nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 50%; right: 50%;
  height: 2px;
  background: var(--renk-karamel);
  border-radius: 2px;
  transition: left 0.3s ease, right 0.3s ease;
}
.navbar-sarayli .nav-link:hover,
.navbar-sarayli .nav-link.active {
  color: var(--renk-karamel) !important;
}
.navbar-sarayli .nav-link:hover::after,
.navbar-sarayli .nav-link.active::after {
  left: 0.9rem; right: 0.9rem;
}
.navbar-toggler {
  border: 1px solid rgba(200,134,10,0.5);
  border-radius: 8px;
  padding: 6px 10px;
}
.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(245,166,35,0.9)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ── SVG Dalga Ayraçları ──────────────────────────────────── */
.wave-divider {
  position: relative;
  overflow: hidden;
  line-height: 0;
}
.wave-divider svg {
  display: block;
  width: 100%;
}
.wave-top { margin-bottom: -2px; }
.wave-bottom { margin-top: -2px; }

/* ── Hero Bölümü ──────────────────────────────────────────── */
.hero-section {
  position: relative;
  height: 100vh;
  min-height: 620px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  text-align: center;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: url('../uploads/hero_bg.png') center center / cover no-repeat;
  transform: scale(1.05);
  transition: transform 8s ease;
}
@media (max-width: 768px) {
  .hero-bg {
    background-position: 85% center;
  }
}
.hero-bg.loaded { transform: scale(1); }
.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(26,10,0,0.58);
  background: linear-gradient(
    to bottom,
    rgba(26,10,0,0.35) 0%,
    rgba(26,10,0,0.62) 60%,
    rgba(26,10,0,0.85) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  color: var(--renk-krem);
  padding: 0 1.5rem;
  animation: fadeSlideUp 1.1s cubic-bezier(0.4,0,0.2,1) both;
}
.hero-content .hero-eyebrow {
  font-size: 0.88rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--renk-karamel);
  font-weight: 600;
  margin-bottom: 1rem;
  display: block;
}
.hero-content h1 {
  font-size: clamp(2.5rem, 6vw, 4.8rem);
  font-weight: 800;
  color: var(--renk-krem);
  text-shadow: 0 8px 32px rgba(26,10,0,0.85);
  margin-bottom: 1rem;
  line-height: 1.15;
}
.hero-content .hero-slogan {
  font-size: clamp(1rem, 2.2vw, 1.3rem);
  color: rgba(250,243,224,0.88);
  font-weight: 400;
  margin-bottom: 2.2rem;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
}
.hero-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* Aşağı kaydır oku */
.scroll-down {
  position: absolute;
  bottom: 2.2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: rgba(250,243,224,0.7);
  font-size: 0.8rem;
  letter-spacing: 0.08em;
}
.scroll-down .arrow {
  width: 22px; height: 22px;
  border-right: 2px solid var(--renk-karamel);
  border-bottom: 2px solid var(--renk-karamel);
  transform: rotate(45deg);
  animation: bounceDown 1.6s ease-in-out infinite;
  border-radius: 2px;
}

/* ── Section Genel ────────────────────────────────────────── */
.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 700;
  color: var(--renk-koyu);
  position: relative;
  display: inline-block;
  margin-bottom: 0.5rem;
}
.section-title::after {
  content: '';
  display: block;
  width: 56px;
  height: 3px;
  background: linear-gradient(90deg, var(--renk-altin), var(--renk-karamel));
  border-radius: 3px;
  margin: 0.55rem auto 0;
}
.section-subtitle {
  color: rgba(26,10,0,0.58);
  font-size: 1.05rem;
  max-width: 520px;
  margin: 0 auto;
}

/* ── Ürün Kartları ────────────────────────────────────────── */
.urun-kart {
  background: #fff;
  border-radius: var(--kart-radius);
  box-shadow: var(--kart-shadow);
  overflow: hidden;
  transition: var(--gecis);
  border: 1px solid rgba(200,134,10,0.1);
  position: relative;
}
.urun-kart:hover {
  transform: translateY(-12px) scale(1.015);
  box-shadow: var(--kart-shadow-hover);
  border-color: rgba(245,166,35,0.5);
}
.urun-kart .kart-img-wrap {
  overflow: hidden;
  height: 215px;
  background: var(--renk-kum);
}
.urun-kart .kart-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s cubic-bezier(0.4,0,0.2,1);
}
.urun-kart:hover .kart-img-wrap img { transform: scale(1.07); }
.urun-kart .kart-body {
  padding: 1.3rem 1.4rem 1.5rem;
}
.urun-kart .kart-ad {
  font-family: var(--font-baslik);
  font-size: 1.18rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
  color: var(--renk-koyu);
}
.urun-kart .kart-aciklama {
  font-size: 0.9rem;
  color: rgba(26,10,0,0.62);
  margin-bottom: 0.8rem;
  line-height: 1.55;
}
.urun-kart .kart-fiyat {
  font-family: var(--font-baslik);
  font-size: 1.28rem;
  font-weight: 700;
  color: var(--renk-altin);
}

/* Şef Önerisi Rozeti */
.sef-rozet {
  position: absolute;
  top: 12px; left: 12px;
  background: linear-gradient(135deg, var(--renk-altin), var(--renk-karamel));
  color: var(--renk-koyu);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 50px;
  box-shadow: 0 2px 10px rgba(200,134,10,0.45);
  z-index: 5;
}

/* Köşe altın rozet (menü sayfası) */
.one-cikan-rozet {
  position: absolute;
  top: 0; right: 0;
  width: 0; height: 0;
  border-style: solid;
  border-width: 0 52px 52px 0;
  border-color: transparent var(--renk-altin) transparent transparent;
  z-index: 5;
}
.one-cikan-rozet::after {
  content: '★';
  position: absolute;
  top: 6px; right: -44px;
  font-size: 1rem;
  color: var(--renk-koyu);
}

/* ── Yorumlar Bölümü ──────────────────────────────────────── */
.yorumlar-section {
  background: var(--renk-koyu);
  background-image: url('../uploads/reviews_bg.png');
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  color: var(--renk-krem);
  position: relative;
  overflow: hidden;
}
.yorum-kart {
  background: rgba(255,255,255,0.08); /* More visible */
  border: 1px solid rgba(245,166,35,0.35); /* stronger border */
  border-radius: var(--kart-radius);
  padding: 2.5rem 2.5rem;
  max-width: 720px;
  margin: 0 auto;
  backdrop-filter: blur(12px); /* Stronger blur */
  box-shadow: 0 16px 40px rgba(0,0,0,0.4);
}
.yorum-kart .yorum-metin {
  font-size: 1.05rem;
  font-style: italic;
  line-height: 1.75;
  color: rgba(250,243,224,0.92);
  margin-bottom: 1.2rem;
}
.yorum-kart .yorum-metin::before { content: '"'; font-size: 2.5rem; color: var(--renk-altin); line-height: 0; vertical-align: -0.7rem; margin-right: 4px; }
.yorum-kart .yorum-metin::after  { content: '"'; font-size: 2.5rem; color: var(--renk-altin); line-height: 0; vertical-align: -0.7rem; margin-left: 4px; }
.yorum-kart .yorum-musteri {
  font-weight: 700;
  color: var(--renk-karamel);
  font-size: 0.95rem;
  letter-spacing: 0.04em;
}
.carousel-control-prev-icon,
.carousel-control-next-icon {
  background-color: rgba(200,134,10,0.7);
  border-radius: 50%;
  padding: 18px;
  background-size: 50%;
}
.carousel-indicators [data-bs-target] {
  background-color: var(--renk-karamel);
  border-radius: 50%;
  width: 9px;
  height: 9px;
  border: none;
  opacity: 0.45;
}
.carousel-indicators .active { opacity: 1; }

/* ── Neden Biz Kartları ───────────────────────────────────── */
.neden-kart {
  background: #fff;
  border-radius: var(--kart-radius);
  box-shadow: var(--kart-shadow);
  padding: 2.5rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: var(--gecis);
  border: 1px solid rgba(200,134,10,0.1);
}
.neden-kart::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--renk-altin), var(--renk-karamel));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.neden-kart:hover { transform: translateY(-10px) scale(1.02); box-shadow: var(--kart-shadow-hover); border-color: rgba(245,166,35,0.4); }
.neden-kart:hover::after { transform: scaleX(1); }
.neden-kart .ikon-wrap {
  width: 68px; height: 68px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--renk-altin) 0%, var(--renk-karamel) 100%);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.3rem;
  font-size: 1.6rem;
  color: var(--renk-koyu);
  box-shadow: 0 4px 18px rgba(200,134,10,0.3);
  transition: var(--gecis);
}
.neden-kart:hover .ikon-wrap { transform: scale(1.1) rotate(-5deg); }
.neden-kart h4 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
}
.neden-kart p { font-size: 0.92rem; color: rgba(26,10,0,0.6); margin: 0; }

#one-cikanlar {
  background-image: url('../uploads/chef_bg.png');
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

#neden-biz {
  background-image: url('../uploads/features_bg.png');
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

#degerler {
  background: linear-gradient(rgba(26,10,0,0.85), rgba(26,10,0,0.85)), url('../uploads/degerler_bg.png') center/cover no-repeat;
}
/* ── Menü Sayfası ─────────────────────────────────────────── */
.menu-hero {
  padding: 7rem 0 4rem;
  background: linear-gradient(rgba(26,10,0,0.7), rgba(26,10,0,0.85)), url('../uploads/menu_hero.png') center/cover no-repeat;
  text-align: center;
  color: var(--renk-krem);
}
.menu-hero h1 { color: var(--renk-krem); }

.kat-sekmeler {
  background: #fff;
  border-radius: 50px;
  padding: 6px;
  display: inline-flex;
  gap: 4px;
  box-shadow: 0 4px 20px rgba(26,10,0,0.10);
}
.kat-sekmeler .nav-link {
  border-radius: 50px !important;
  padding: 0.5rem 1.4rem;
  font-weight: 600;
  font-size: 0.9rem;
  color: rgba(26,10,0,0.6) !important;
  border: none !important;
  background: transparent !important;
  transition: var(--gecis);
}
.kat-sekmeler .nav-link:hover {
  color: var(--renk-altin) !important;
  background: var(--renk-kum) !important;
}
.kat-sekmeler .nav-link.active {
  background: linear-gradient(135deg, var(--renk-altin), var(--renk-karamel)) !important;
  color: var(--renk-koyu) !important;
  box-shadow: 0 3px 12px rgba(200,134,10,0.35);
}

/* Menü ürün listesi kartı — sol resim sağ bilgi */
.menu-urun-kart {
  display: flex;
  background: #fff;
  border-radius: var(--kart-radius);
  box-shadow: var(--kart-shadow);
  overflow: hidden;
  transition: var(--gecis);
  border: 1px solid rgba(200,134,10,0.1);
  position: relative;
  margin-bottom: 1.8rem;
}
.menu-urun-kart:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: var(--kart-shadow-hover);
  border-color: rgba(245,166,35,0.4);
}
.menu-urun-kart .mu-img {
  width: 33.333%;
  height: 180px; /* Sabit yükseklik ile büyüme engellendi */
  flex-shrink: 0;
  overflow: hidden;
  position: relative;
  background: var(--renk-kum);
}
.menu-urun-kart .mu-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.menu-urun-kart:hover .mu-img img { transform: scale(1.06); }
.menu-urun-kart .mu-bilgi {
  flex: 1;
  padding: 1.2rem 1.4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.menu-urun-kart .mu-ad {
  font-family: var(--font-baslik);
  font-size: 1.12rem;
  font-weight: 700;
  margin-bottom: 0.35rem;
}
.menu-urun-kart .mu-aciklama {
  font-size: 0.88rem;
  color: rgba(26,10,0,0.58);
  margin-bottom: 0.7rem;
  line-height: 1.5;
}
.mu-alerjen {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 2px 10px;
  border-radius: 50px;
  background: #FFF3CD;
  color: #856404;
  margin: 2px;
}
.mu-fiyat {
  font-family: var(--font-baslik);
  font-size: 1.22rem;
  font-weight: 700;
  color: var(--renk-altin);
  margin-top: auto;
}

@media (max-width: 575px) {
  .menu-urun-kart { flex-direction: column; }
  .menu-urun-kart .mu-img { width: 100%; height: 220px; }
}

/* Sticky kategori çubuğu - mobil */
.kat-sticky-wrap {
  position: sticky;
  top: 0;
  z-index: 500;
  background: var(--renk-krem);
  padding: 10px 0;
  box-shadow: 0 2px 12px rgba(26,10,0,0.08);
}
@media (min-width: 768px) { .kat-sticky-wrap { position: static; box-shadow: none; background: transparent; } }

/* ── Hakkımızda ───────────────────────────────────────────── */
.hakkimizda-hero {
  padding: 8rem 0 5rem;
  background: linear-gradient(rgba(26,10,0,0.6), rgba(26,10,0,0.9)), url('../uploads/hakkimizda_hero.png') center/cover no-repeat;
  text-align: center;
  color: var(--renk-krem);
}
.hakkimizda-hero h1 { color: var(--renk-krem); }

.timeline {
  position: relative;
  padding-left: 32px;
  max-width: 600px;
  margin: 0 auto;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--renk-altin), var(--renk-kum));
}
.timeline-item {
  position: relative;
  margin-bottom: 2.5rem;
}
.timeline-item::before {
  content: '';
  position: absolute;
  left: -38px;
  top: 6px;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--renk-altin);
  box-shadow: 0 0 0 4px rgba(200,134,10,0.18);
}
.timeline-item .yil {
  font-family: var(--font-baslik);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--renk-altin);
  margin-bottom: 0.25rem;
}
.timeline-item p { margin: 0; font-size: 0.95rem; color: rgba(26,10,0,0.7); }

/* ── İletişim Sayfası ─────────────────────────────────────── */
.iletisim-hero {
  padding: 8rem 0 4rem;
  background: linear-gradient(rgba(26,10,0,0.7), rgba(26,10,0,0.9)), url('../uploads/iletisim_hero.png') center/cover no-repeat;
  text-align: center;
  color: var(--renk-krem);
}
.iletisim-hero h1 { color: var(--renk-krem); }

.iletisim-bilgi-kart {
  background: #fff;
  border-radius: var(--kart-radius);
  box-shadow: var(--kart-shadow);
  padding: 2.2rem;
}
.iletisim-bilgi-kart .ib-satir {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.4rem;
}
.iletisim-bilgi-kart .ib-ikon {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--renk-altin), var(--renk-karamel));
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  color: var(--renk-koyu);
  flex-shrink: 0;
}
.iletisim-bilgi-kart .ib-metin strong { display: block; font-weight: 700; font-size: 0.88rem; text-transform: uppercase; letter-spacing: 0.05em; color: rgba(26,10,0,0.5); margin-bottom: 2px; }
.iletisim-bilgi-kart .ib-metin a,
.iletisim-bilgi-kart .ib-metin span { font-size: 1rem; color: var(--renk-koyu); font-weight: 600; }
.iletisim-bilgi-kart .ib-metin a:hover { color: var(--renk-altin); }

.maps-embed {
  width: 100%;
  height: 240px;
  border-radius: 12px;
  border: none;
  margin-top: 1.4rem;
}

.iletisim-form-kart {
  background: #fff;
  border-radius: var(--kart-radius);
  box-shadow: var(--kart-shadow);
  padding: 2.2rem;
}
.form-label { font-weight: 600; font-size: 0.92rem; margin-bottom: 0.4rem; }
.form-control, .form-select {
  border: 1.5px solid rgba(26,10,0,0.14);
  border-radius: 10px;
  padding: 0.65rem 1rem;
  font-size: 0.95rem;
  font-family: var(--font-govde);
  color: var(--renk-koyu);
  background: var(--renk-krem);
  transition: border-color 0.3s, box-shadow 0.3s;
}
.form-control:focus, .form-select:focus {
  border-color: var(--renk-altin);
  box-shadow: 0 0 0 3px rgba(200,134,10,0.15);
  background: #fff;
  outline: none;
}
.form-control.is-invalid { border-color: #dc3545; }
.form-control.is-valid   { border-color: #198754; }
.invalid-feedback { font-size: 0.82rem; }

/* ── Footer ───────────────────────────────────────────────── */
.footer-sarayli {
  background: var(--renk-koyu);
  color: rgba(250,243,224,0.78);
  padding: 4rem 0 1.5rem;
  position: relative;
}
.footer-sarayli h5 {
  font-family: var(--font-baslik);
  color: var(--renk-karamel);
  font-size: 1.08rem;
  margin-bottom: 1.2rem;
}
.footer-sarayli a { color: rgba(250,243,224,0.72); }
.footer-sarayli a:hover { color: var(--renk-karamel); }
.footer-sarayli .footer-logo {
  font-family: var(--font-baslik);
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--renk-karamel);
  margin-bottom: 0.6rem;
}
.footer-sarayli .footer-logo span { color: var(--renk-krem); }
.footer-sosyal a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(200,134,10,0.18);
  color: var(--renk-karamel) !important;
  font-size: 0.95rem;
  margin-right: 6px;
  transition: var(--gecis);
}
.footer-sosyal a:hover {
  background: var(--renk-altin);
  color: var(--renk-koyu) !important;
  transform: translateY(-2px);
}
.footer-alt {
  border-top: 1px solid rgba(200,134,10,0.15);
  margin-top: 2.5rem;
  padding-top: 1.2rem;
  font-size: 0.83rem;
  color: rgba(250,243,224,0.45);
  text-align: center;
}

/* ── Mobil CTA Çubuğu ─────────────────────────────────────── */
.mobil-cta {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 1050;
  display: flex;
  padding-bottom: env(safe-area-inset-bottom);
  background: var(--renk-koyu);
  border-top: 1px solid rgba(200,134,10,0.25);
  box-shadow: 0 -4px 20px rgba(26,10,0,0.3);
}
.mobil-cta a {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 10px 4px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  gap: 4px;
  transition: var(--gecis);
  text-decoration: none;
}
.mobil-cta a i { font-size: 1.2rem; }
.mobil-cta .cta-ara  { background: var(--renk-altin); color: var(--renk-koyu); }
.mobil-cta .cta-wp   { background: #1B5E20; color: #fff; }
.mobil-cta .cta-yol  { background: var(--renk-lacivert); color: #fff; }
.mobil-cta a:hover   { filter: brightness(1.12); }
body { padding-bottom: 60px; } /* mobil CTA boşluğu */
@media (min-width: 768px) {
  .mobil-cta { display: none !important; }
  body { padding-bottom: 0; }
}

/* ── Admin Stilleri ───────────────────────────────────────── */
.admin-body { background: var(--renk-kum); min-height: 100vh; }
.admin-sidebar {
  width: 255px;
  min-height: 100vh;
  background: var(--renk-koyu);
  position: fixed;
  top: 0; left: 0;
  z-index: 200;
  padding-top: 1.5rem;
  box-shadow: 4px 0 24px rgba(26,10,0,0.18);
  display: flex;
  flex-direction: column;
}
.admin-sidebar .sb-logo {
  font-family: var(--font-baslik);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--renk-karamel);
  padding: 0 1.5rem 1.5rem;
  border-bottom: 1px solid rgba(200,134,10,0.18);
  margin-bottom: 1rem;
}
.admin-sidebar .sb-logo span { color: var(--renk-krem); font-size: 0.8rem; display: block; font-family: var(--font-govde); font-weight: 400; }
.admin-sidebar .nav-link {
  color: rgba(250,243,224,0.72) !important;
  font-weight: 600;
  padding: 0.65rem 1.5rem !important;
  border-radius: 0;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.93rem;
  transition: var(--gecis);
  border-left: 3px solid transparent;
}
.admin-sidebar .nav-link i { width: 20px; text-align: center; }
.admin-sidebar .nav-link:hover,
.admin-sidebar .nav-link.active {
  background: rgba(200,134,10,0.13) !important;
  color: var(--renk-karamel) !important;
  border-left-color: var(--renk-altin);
}
.admin-sidebar .sb-cikis {
  margin-top: auto;
  padding: 1rem 1.5rem;
  border-top: 1px solid rgba(200,134,10,0.15);
}
.admin-main {
  margin-left: 255px;
  padding: 2rem;
  min-height: 100vh;
}
@media (max-width: 991px) {
  .admin-sidebar { position: static; width: 100%; min-height: auto; }
  .admin-main { margin-left: 0; }
}
.admin-topbar {
  background: #fff;
  border-radius: var(--kart-radius);
  box-shadow: var(--kart-shadow);
  padding: 1.1rem 1.8rem;
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.admin-card {
  background: #fff;
  border-radius: var(--kart-radius);
  box-shadow: var(--kart-shadow);
  padding: 1.8rem;
  margin-bottom: 1.8rem;
}
.admin-card h5 {
  font-family: var(--font-baslik);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 1.3rem;
  padding-bottom: 0.7rem;
  border-bottom: 2px solid var(--renk-kum);
  color: var(--renk-koyu);
}
.table-hover tbody tr:hover { background: var(--renk-kum); }
.table thead th {
  background: var(--renk-koyu);
  color: var(--renk-krem);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.03em;
  border: none;
  padding: 0.85rem 1rem;
}
.table tbody td { vertical-align: middle; padding: 0.8rem 1rem; }
.badge-aktif   { background: #D4EDDA; color: #155724; border-radius: 50px; padding: 4px 12px; font-size: 0.78rem; font-weight: 700; }
.badge-pasif   { background: #F8D7DA; color: #721c24; border-radius: 50px; padding: 4px 12px; font-size: 0.78rem; font-weight: 700; }
.badge-bekle   { background: #FFF3CD; color: #856404; border-radius: 50px; padding: 4px 12px; font-size: 0.78rem; font-weight: 700; }

/* Admin Login */
.login-page {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--renk-koyu) 0%, #2d1200 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}
.login-kart {
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 24px 64px rgba(26,10,0,0.35);
  padding: 3rem 2.8rem;
  width: 100%;
  max-width: 420px;
  text-align: center;
  animation: rotateIn 0.6s cubic-bezier(0.4,0,0.2,1) both;
}
.login-kart .login-logo {
  font-family: var(--font-baslik);
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--renk-altin);
  margin-bottom: 0.3rem;
}
.login-kart .login-logo span { color: var(--renk-koyu); }
.login-kart p.alt-baslik { font-size: 0.88rem; color: rgba(26,10,0,0.55); margin-bottom: 2rem; }
.login-kart .btn-primary { width: 100%; animation: pulse-ring 2.5s ease 1.5s 3; }

/* ── Yardımcı Sınıflar ────────────────────────────────────── */
.text-altin    { color: var(--renk-altin) !important; }
.text-karamel  { color: var(--renk-karamel) !important; }
.bg-koyu       { background-color: var(--renk-koyu) !important; }
.bg-krem {
  background-color: var(--renk-krem) !important;
  position: relative;
  overflow: hidden;
}
.bg-krem::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: 
    radial-gradient(circle at center, transparent 0%, rgba(26,10,0,0.06) 100%),
    url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 32c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM23 70c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-25c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5z' fill='%23C8860A' fill-opacity='0.02' fill-rule='evenodd'/%3E%3C/svg%3E");
  background-repeat: no-repeat, repeat;
  background-size: cover, 140px 140px;
  pointer-events: none;
  z-index: 0;
}
.bg-krem::after {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 300px;
  height: 300px;
  background-image: url("data:image/svg+xml,%3Csvg width='200' height='200' viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M100 0c55.228 0 100 44.772 100 100s-44.772 100-100 100S0 155.228 0 100 44.772 0 100 0zm0 20C55.817 20 20 55.817 20 100s35.817 80 80 80 80-35.817 80-80-35.817-80-80-80z' fill='%23C8860A' fill-opacity='0.03'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  opacity: 0.5;
  filter: blur(2px);
  pointer-events: none;
  z-index: 0;
}
.bg-krem > * {
  position: relative;
  z-index: 1;
}
.bg-kum        { background-color: var(--renk-kum) !important; }
.padding-section { padding: 5rem 0; }
.padding-section-sm { padding: 3.5rem 0; }

/* ── Responsive Tweaks ────────────────────────────────────── */
@media (max-width: 767px) {
  .padding-section { padding: 3.5rem 0; }
  .hero-content h1 { font-size: 2rem; }
  .hero-btns { flex-direction: column; align-items: center; }
  .section-title { font-size: 1.7rem; }
}
