/* ============================================
   ANADOLU YEMEKLERİ - ANA STİL DOSYASI
   Renk Paleti: Toprak tonları, kırmızı, altın
   ============================================ */

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

/* ---- CSS Değişkenleri ---- */
:root {
  --primary:    #8B1A1A;   /* Koyu kırmızı */
  --secondary:  #C0392B;   /* Parlak kırmızı */
  --accent:     #D4A017;   /* Altın sarısı */
  --dark:       #2C1810;   /* Koyu kahve */
  --light:      #FDF6EC;   /* Krem */
  --text:       #3D2B1F;   /* Metin rengi */
  --muted:      #7A6050;   /* Soluk kahve */
  --white:      #FFFFFF;
  --shadow:     rgba(44,24,16,0.15);
  --font-heading: 'Playfair Display', serif;
  --font-body:    'Lato', sans-serif;
  --font-arabic:  'Amiri', serif;
}

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  background-color: var(--light);
  color: var(--text);
  min-width: 1024px;
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; transition: color .3s; }
a:hover { color: var(--secondary); }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }

/* ---- Scroll to Top ---- */
#scrollTop {
  position: fixed;
  bottom: 90px;
  right: 20px;
  width: 44px;
  height: 44px;
  background: var(--primary);
  color: var(--white);
  border: none;
  border-radius: 50%;
  font-size: 20px;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 999;
  box-shadow: 0 4px 12px var(--shadow);
  transition: background .3s, transform .2s;
}
#scrollTop:hover { background: var(--secondary); transform: translateY(-3px); }
#scrollTop.visible { display: flex; }

/* ---- TOP BAR ---- */
.top-bar {
  background: var(--dark);
  color: #ccc;
  font-size: 13px;
  padding: 6px 0;
}
.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.top-bar a { color: #ccc; }
.top-bar a:hover { color: var(--accent); }

/* ---- HEADER ---- */
header {
  background: linear-gradient(135deg, var(--primary) 0%, var(--dark) 100%);
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 900;
  box-shadow: 0 3px 15px rgba(0,0,0,.4);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
}
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.logo-icon {
  width: 56px;
  height: 56px;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  flex-shrink: 0;
}
.logo-text h1 {
  font-family: var(--font-heading);
  color: var(--white);
  font-size: 1.7rem;
  line-height: 1.1;
}
.logo-text span {
  color: var(--accent);
  font-size: 0.85rem;
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* Saat widget */
.header-clock {
  text-align: right;
  color: var(--white);
}
#digitalClock {
  font-family: 'Courier New', monospace;
  font-size: 1.6rem;
  color: var(--accent);
  font-weight: bold;
  letter-spacing: 2px;
}
.clock-date {
  font-size: 0.78rem;
  color: #ccc;
  margin-top: 2px;
}

/* ---- NAVBAR ---- */
nav.main-nav {
  background: var(--primary);
  border-top: 2px solid var(--accent);
}
.nav-list {
  display: flex;
  align-items: center;
}
.nav-list > li {
  position: relative;
}
.nav-list > li > a {
  display: block;
  padding: 14px 18px;
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: .5px;
  text-transform: uppercase;
  transition: background .3s, color .3s;
  white-space: nowrap;
}
.nav-list > li > a:hover,
.nav-list > li > a.active {
  background: var(--accent);
  color: var(--dark);
}
.nav-list > li > a .arrow {
  font-size: 10px;
  margin-left: 4px;
  vertical-align: middle;
}

/* Dropdown */
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--dark);
  min-width: 220px;
  border-top: 3px solid var(--accent);
  box-shadow: 0 8px 25px rgba(0,0,0,.4);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all .3s ease;
  z-index: 999;
}
.nav-list > li:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown-menu li a {
  display: block;
  padding: 11px 20px;
  color: #ddd;
  font-size: 0.88rem;
  border-bottom: 1px solid rgba(255,255,255,.07);
  transition: background .2s, color .2s, padding-left .2s;
}
.dropdown-menu li a:hover {
  background: var(--primary);
  color: var(--accent);
  padding-left: 28px;
}

/* Mega dropdown */
.mega-menu {
  position: absolute;
  top: 100%;
  left: -200px;
  background: var(--dark);
  width: 680px;
  border-top: 3px solid var(--accent);
  box-shadow: 0 8px 25px rgba(0,0,0,.4);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all .3s ease;
  z-index: 999;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  padding: 20px;
}
.nav-list > li:hover .mega-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.mega-col h4 {
  color: var(--accent);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
  padding-bottom: 6px;
  border-bottom: 1px solid rgba(212,160,23,.3);
}
.mega-col a {
  display: block;
  padding: 6px 0;
  color: #ccc;
  font-size: 0.85rem;
  transition: color .2s, padding-left .2s;
}
.mega-col a:hover { color: var(--accent); padding-left: 6px; }

/* ---- CONTAINER ---- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ---- HABER BANDI ---- */
.news-ticker {
  background: var(--secondary);
  color: var(--white);
  padding: 8px 0;
  overflow: hidden;
  position: relative;
}
.ticker-label {
  background: var(--dark);
  color: var(--accent);
  padding: 4px 14px;
  font-weight: 700;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  white-space: nowrap;
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  display: flex;
  align-items: center;
  z-index: 2;
}
.ticker-wrapper {
  overflow: hidden;
  margin-left: 140px;
}
.ticker-content {
  display: flex;
  animation: ticker-scroll 40s linear infinite;
  white-space: nowrap;
}
.ticker-content span {
  padding: 0 50px;
  font-size: 0.88rem;
}
.ticker-content span::before {
  content: '★ ';
  color: var(--accent);
}
@keyframes ticker-scroll {
  0%   { transform: translateX(100%); }
  100% { transform: translateX(-100%); }
}

/* ---- SLIDER ---- */
.slider-section { position: relative; overflow: hidden; }
.slider-container {
  position: relative;
  width: 100%;
  height: 520px;
  overflow: hidden;
}
.slide {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  opacity: 0;
  transition: opacity .8s ease;
}
.slide.active { opacity: 1; }
.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.slide-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(44,24,16,.85));
  color: var(--white);
  padding: 40px 40px 30px;
}
.slide-caption h2 {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  margin-bottom: 8px;
  text-shadow: 2px 2px 8px rgba(0,0,0,.5);
}
.slide-caption p { font-size: 1rem; opacity: .9; }
.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(139,26,26,.7);
  color: var(--white);
  border: 2px solid var(--accent);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 22px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .3s;
  z-index: 10;
}
.slider-btn:hover { background: var(--accent); color: var(--dark); }
.slider-btn.prev { left: 20px; }
.slider-btn.next { right: 20px; }
.slider-dots {
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}
.dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,.5);
  cursor: pointer;
  transition: background .3s, transform .3s;
}
.dot.active { background: var(--accent); transform: scale(1.3); }

/* ---- HAVA DURUMU ---- */
.weather-widget {
  background: linear-gradient(135deg, #1a3a5c 0%, #2980b9 100%);
  color: var(--white);
  border-radius: 12px;
  padding: 20px;
  min-width: 220px;
  box-shadow: 0 4px 15px rgba(0,0,0,.2);
}
.weather-widget h3 {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: .8;
  margin-bottom: 10px;
}
.weather-main {
  display: flex;
  align-items: center;
  gap: 12px;
}
.weather-icon { font-size: 3rem; }
.weather-temp { font-size: 2.5rem; font-weight: 700; }
.weather-desc { font-size: 0.9rem; opacity: .85; margin-top: 4px; }
.weather-city { font-size: 1rem; font-weight: 600; }
.weather-details {
  display: flex;
  gap: 16px;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid rgba(255,255,255,.2);
  font-size: 0.82rem;
  opacity: .85;
}

/* ---- TAKVİM ---- */
.calendar-widget {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px var(--shadow);
  min-width: 260px;
}
.cal-header {
  background: var(--primary);
  color: var(--white);
  padding: 12px 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 700;
}
.cal-nav-btn {
  background: none;
  border: none;
  color: var(--white);
  cursor: pointer;
  font-size: 18px;
  padding: 2px 8px;
  border-radius: 4px;
  transition: background .2s;
}
.cal-nav-btn:hover { background: rgba(255,255,255,.2); }
.cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  padding: 10px;
  gap: 2px;
}
.cal-day-name {
  text-align: center;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--muted);
  padding: 4px 0;
  text-transform: uppercase;
}
.cal-day {
  text-align: center;
  padding: 5px 2px;
  font-size: 0.82rem;
  border-radius: 4px;
  cursor: default;
  transition: background .2s;
}
.cal-day.today {
  background: var(--primary);
  color: var(--white);
  font-weight: 700;
  border-radius: 50%;
}
.cal-day.other-month { color: #ccc; }
.cal-day:not(.empty):not(.other-month):hover { background: var(--light); }

/* ---- ZİYARETÇİ SAYACI ---- */
.visitor-counter {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: var(--dark);
  color: var(--white);
  padding: 10px 16px;
  border-radius: 8px;
  font-size: 0.82rem;
  box-shadow: 0 4px 15px rgba(0,0,0,.3);
  z-index: 800;
  border-left: 3px solid var(--accent);
}
.visitor-counter span {
  color: var(--accent);
  font-weight: 700;
  font-size: 1.1rem;
}

/* ---- POPUP REKLAM ---- */
.popup-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,.7);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
}
.popup-box {
  width: 350px;
  height: 300px;
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 20px 60px rgba(0,0,0,.5);
  animation: popupIn .4s ease;
}
@keyframes popupIn {
  from { transform: scale(.8); opacity: 0; }
  to   { transform: scale(1);  opacity: 1; }
}
.popup-close {
  position: absolute;
  top: 10px; right: 12px;
  background: var(--primary);
  color: var(--white);
  border: none;
  width: 28px; height: 28px;
  border-radius: 50%;
  font-size: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  transition: background .2s;
}
.popup-close:hover { background: var(--secondary); }
.popup-content {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, var(--primary), var(--dark));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 30px;
  text-align: center;
  color: var(--white);
}
.popup-content .popup-icon { font-size: 3.5rem; margin-bottom: 12px; }
.popup-content h2 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--accent);
  margin-bottom: 8px;
}
.popup-content p { font-size: 0.9rem; opacity: .9; margin-bottom: 16px; }
.popup-btn {
  background: var(--accent);
  color: var(--dark);
  border: none;
  padding: 10px 24px;
  border-radius: 25px;
  font-weight: 700;
  cursor: pointer;
  font-size: 0.9rem;
  transition: transform .2s;
}
.popup-btn:hover { transform: scale(1.05); }

/* ---- SECTION TITLES ---- */
.section-title {
  text-align: center;
  margin-bottom: 40px;
}
.section-title h2 {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  color: var(--primary);
  position: relative;
  display: inline-block;
  padding-bottom: 14px;
}
.section-title h2::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%;
  transform: translateX(-50%);
  width: 70px; height: 3px;
  background: var(--accent);
  border-radius: 2px;
}
.section-title p { color: var(--muted); margin-top: 12px; font-size: 1rem; }

/* ---- CARDS ---- */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 28px;
}
.card {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px var(--shadow);
  transition: transform .3s, box-shadow .3s;
}
.card:hover { transform: translateY(-6px); box-shadow: 0 12px 30px var(--shadow); }
.card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.card-body { padding: 20px; }
.card-body h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--primary);
  margin-bottom: 8px;
}
.card-body p { font-size: 0.9rem; color: var(--muted); line-height: 1.6; }
.card-link {
  display: inline-block;
  margin-top: 14px;
  padding: 8px 20px;
  background: var(--primary);
  color: var(--white);
  border-radius: 25px;
  font-size: 0.85rem;
  font-weight: 700;
  transition: background .3s;
}
.card-link:hover { background: var(--secondary); color: var(--white); }

/* ---- HERO BANNER ---- */
.page-hero {
  background: linear-gradient(135deg, var(--primary) 0%, var(--dark) 100%);
  color: var(--white);
  padding: 60px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: -50%; left: -50%;
  width: 200%; height: 200%;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23d4a017' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: .3;
}
.page-hero h1 {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  margin-bottom: 12px;
  position: relative;
}
.page-hero p {
  font-size: 1.1rem;
  opacity: .85;
  max-width: 600px;
  margin: 0 auto;
  position: relative;
}
.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
  font-size: 0.88rem;
  opacity: .8;
  position: relative;
}
.breadcrumb a { color: var(--accent); }
.breadcrumb span { color: #ccc; }

/* ---- CONTENT SECTION ---- */
.content-section { padding: 60px 0; }
.content-section.bg-light { background: var(--light); }
.content-section.bg-white { background: var(--white); }

/* ---- FEATURE BOXES ---- */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.feature-box {
  text-align: center;
  padding: 30px 20px;
  background: var(--white);
  border-radius: 12px;
  box-shadow: 0 4px 15px var(--shadow);
  transition: transform .3s;
}
.feature-box:hover { transform: translateY(-5px); }
.feature-icon {
  font-size: 2.5rem;
  margin-bottom: 14px;
}
.feature-box h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--primary);
  margin-bottom: 8px;
}
.feature-box p { font-size: 0.88rem; color: var(--muted); }

/* ---- RECIPE CARD ---- */
.recipe-card {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px var(--shadow);
  display: flex;
  flex-direction: column;
}
.recipe-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}
.recipe-body { padding: 22px; flex: 1; }
.recipe-body h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: var(--primary);
  margin-bottom: 10px;
}
.recipe-meta {
  display: flex;
  gap: 16px;
  margin-bottom: 12px;
  font-size: 0.82rem;
  color: var(--muted);
}
.recipe-meta span { display: flex; align-items: center; gap: 4px; }
.recipe-body p { font-size: 0.9rem; line-height: 1.7; color: var(--text); }
.recipe-ingredients {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid #eee;
}
.recipe-ingredients h4 {
  font-size: 0.9rem;
  color: var(--primary);
  font-weight: 700;
  margin-bottom: 8px;
}
.recipe-ingredients ul {
  list-style: disc;
  padding-left: 18px;
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.8;
}

/* ---- GALERİ ---- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  aspect-ratio: 1;
  cursor: pointer;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s;
}
.gallery-item:hover img { transform: scale(1.1); }
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(139,26,26,.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity .3s;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay span { color: var(--white); font-size: 2rem; }

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.92);
  z-index: 9998;
  display: none;
  align-items: center;
  justify-content: center;
}
.lightbox.open { display: flex; }
.lightbox img {
  max-width: 90vw;
  max-height: 85vh;
  border-radius: 8px;
  box-shadow: 0 0 40px rgba(0,0,0,.8);
}
.lightbox-close {
  position: absolute;
  top: 20px; right: 24px;
  color: var(--white);
  font-size: 2.5rem;
  cursor: pointer;
  background: none;
  border: none;
  line-height: 1;
}
.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,.15);
  color: var(--white);
  border: none;
  width: 50px; height: 50px;
  border-radius: 50%;
  font-size: 22px;
  cursor: pointer;
  transition: background .2s;
}
.lightbox-nav:hover { background: var(--primary); }
.lightbox-nav.prev { left: 20px; }
.lightbox-nav.next { right: 20px; }
.lightbox-caption {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--white);
  font-size: 0.95rem;
  background: rgba(0,0,0,.5);
  padding: 6px 20px;
  border-radius: 20px;
}

/* ---- NAVİGASYON BUTONLARI ---- */
.page-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  border-top: 1px solid #e0d5c5;
  margin-top: 40px;
}
.page-nav-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  background: var(--primary);
  color: var(--white);
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.9rem;
  transition: background .3s, transform .2s;
}
.page-nav-btn:hover { background: var(--secondary); color: var(--white); transform: translateX(3px); }
.page-nav-btn.prev-btn:hover { transform: translateX(-3px); }
.page-nav-home {
  padding: 12px 24px;
  background: var(--accent);
  color: var(--dark);
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.9rem;
  transition: background .3s;
}
.page-nav-home:hover { background: #b8860b; color: var(--dark); }

/* ---- FOOTER ---- */
footer {
  background: var(--dark);
  color: #ccc;
  padding: 50px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
}
.footer-brand h3 {
  font-family: var(--font-heading);
  color: var(--white);
  font-size: 1.4rem;
  margin-bottom: 12px;
}
.footer-brand p { font-size: 0.88rem; line-height: 1.7; opacity: .8; }
.footer-col h4 {
  color: var(--accent);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul li a {
  color: #aaa;
  font-size: 0.88rem;
  transition: color .2s, padding-left .2s;
}
.footer-col ul li a:hover { color: var(--accent); padding-left: 6px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 16px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
  opacity: .7;
}

/* ---- İLETİŞİM FORMU ---- */
.contact-form {
  background: var(--white);
  border-radius: 12px;
  padding: 40px;
  box-shadow: 0 4px 20px var(--shadow);
}
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--text);
  margin-bottom: 6px;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid #e0d5c5;
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text);
  transition: border-color .3s;
  background: var(--light);
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--primary);
  background: var(--white);
}
.form-group textarea { resize: vertical; min-height: 130px; }
.btn-submit {
  background: var(--primary);
  color: var(--white);
  border: none;
  padding: 14px 36px;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: background .3s, transform .2s;
}
.btn-submit:hover { background: var(--secondary); transform: translateY(-2px); }

/* ---- SİTE HARİTASI ---- */
.sitemap-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.sitemap-section h3 {
  font-family: var(--font-heading);
  color: var(--primary);
  font-size: 1.1rem;
  margin-bottom: 14px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--accent);
}
.sitemap-section ul li {
  margin-bottom: 6px;
}
.sitemap-section ul li a {
  color: var(--muted);
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color .2s, padding-left .2s;
}
.sitemap-section ul li a::before { content: '›'; color: var(--accent); font-size: 1.1rem; }
.sitemap-section ul li a:hover { color: var(--primary); padding-left: 6px; }

/* ---- VİDEO SAYFASI ---- */
.video-container {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 30px var(--shadow);
}
.video-container video,
.video-container iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
}

/* ---- BÖLGE KARTI ---- */
.region-card {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px var(--shadow);
  transition: transform .3s;
}
.region-card:hover { transform: translateY(-5px); }
.region-header {
  background: linear-gradient(135deg, var(--primary), var(--dark));
  color: var(--white);
  padding: 20px;
  text-align: center;
}
.region-header .region-icon { font-size: 2.5rem; margin-bottom: 8px; }
.region-header h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
}
.region-body { padding: 20px; }
.region-body p { font-size: 0.9rem; color: var(--muted); line-height: 1.6; margin-bottom: 14px; }
.region-foods {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.food-tag {
  background: var(--light);
  color: var(--primary);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  border: 1px solid #e0d5c5;
}

/* ---- İÇERİK LAYOUT ---- */
.content-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 40px;
}
.sidebar {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.sidebar-widget {
  background: var(--white);
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 4px 15px var(--shadow);
}
.sidebar-widget h3 {
  font-family: var(--font-heading);
  color: var(--primary);
  font-size: 1.1rem;
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--accent);
}
.sidebar-list li {
  padding: 8px 0;
  border-bottom: 1px solid #f0e8dc;
  font-size: 0.88rem;
}
.sidebar-list li a { color: var(--muted); transition: color .2s; }
.sidebar-list li a:hover { color: var(--primary); }

/* ---- QUOTE BLOCK ---- */
.quote-block {
  background: linear-gradient(135deg, var(--primary), var(--dark));
  color: var(--white);
  padding: 50px;
  text-align: center;
  position: relative;
}
.quote-block::before {
  content: '"';
  font-family: var(--font-heading);
  font-size: 8rem;
  color: var(--accent);
  opacity: .3;
  position: absolute;
  top: -20px;
  left: 30px;
  line-height: 1;
}
.quote-block blockquote {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-style: italic;
  max-width: 700px;
  margin: 0 auto 16px;
  position: relative;
}
.quote-block cite { font-size: 0.9rem; opacity: .8; }

/* ---- TABLO ---- */
.styled-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px var(--shadow);
}
.styled-table th {
  background: var(--primary);
  color: var(--white);
  padding: 14px 18px;
  text-align: left;
  font-size: 0.9rem;
}
.styled-table td {
  padding: 12px 18px;
  border-bottom: 1px solid #f0e8dc;
  font-size: 0.9rem;
  color: var(--text);
}
.styled-table tr:hover td { background: var(--light); }

/* ---- UTILITY ---- */
.text-center { text-align: center; }
.text-primary { color: var(--primary); }
.text-accent { color: var(--accent); }
.mt-20 { margin-top: 20px; }
.mt-40 { margin-top: 40px; }
.mb-20 { margin-bottom: 20px; }
.mb-40 { margin-bottom: 40px; }
.py-60 { padding: 60px 0; }
.py-40 { padding: 40px 0; }
.divider {
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  margin: 40px 0;
}
.badge {
  display: inline-block;
  padding: 3px 10px;
  background: var(--accent);
  color: var(--dark);
  border-radius: 20px;
  font-size: 0.78rem;
  font-weight: 700;
}
.alert-success {
  background: #d4edda;
  color: #155724;
  padding: 14px 20px;
  border-radius: 8px;
  border-left: 4px solid #28a745;
  display: none;
  margin-top: 16px;
}

/* ---- RESPONSIVE (min 1024px) ---- */
@media (max-width: 1200px) {
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 1024px) {
  .gallery-grid { grid-template-columns: repeat(4, 1fr); }
  .content-layout { grid-template-columns: 1fr; }
  .sitemap-grid { grid-template-columns: repeat(2, 1fr); }
}
