/* =====================================================
   Leoni Cafe — Ana CSS Tasarım Sistemi
   Siyah + Altın Premium Tema
   ===================================================== */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;0,900;1,400;1,700&family=Inter:wght@300;400;500;600;700&family=Montserrat:wght@400;500;600;700;800&display=swap');

/* ─── CSS Değişkenleri ─────────────────────────────── */
:root {
  --gold:        #C9A84C;
  --gold-light:  #E8C96A;
  --gold-dark:   #A8893A;
  --black:       #0D0D0D;
  --black-2:     #1A1A1A;
  --black-3:     #242424;
  --cream:       #FAF7F2;
  --cream-2:     #F0EBE3;
  --brown:       #8B6F47;
  --text-dark:   #1A1A1A;
  --text-light:  #F5F0E8;
  --text-muted:  #9A8A7A;
  --white:       #FFFFFF;
  --border:      rgba(201,168,76,0.2);
  --shadow:      0 20px 60px rgba(0,0,0,0.15);
  --shadow-gold: 0 8px 32px rgba(201,168,76,0.3);
  --radius:      12px;
  --radius-lg:   20px;
  --transition:  0.3s ease;
}

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

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

body {
  font-family: 'Inter', sans-serif;
  background: var(--cream);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; }
ul { list-style: none; }

/* ─── Tipografi ────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: 'Playfair Display', Georgia, serif;
  line-height: 1.2;
  color: inherit;
}

.font-mono  { font-family: 'Montserrat', sans-serif; }
.font-inter { font-family: 'Inter', sans-serif; }

.text-gold  { color: var(--gold); }
.text-cream { color: var(--text-light); }
.text-muted { color: var(--text-muted); }

/* ─── Navbar ───────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: all 0.4s ease;
  background: transparent;
}

.navbar.scrolled {
  background: rgba(13,13,13,0.97);
  padding: 12px 0;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 4px 30px rgba(0,0,0,0.3);
}

.navbar-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.navbar-logo img {
  height: 42px;
  width: auto;
  filter: brightness(0) invert(1);
}

.navbar-logo-text {
  font-family: 'Montserrat', sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: 3px;
}

.navbar-logo-text span { color: var(--gold); }

.navbar-nav {
  display: flex;
  align-items: center;
  gap: 36px;
}

.navbar-nav a {
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  position: relative;
  padding-bottom: 4px;
}

.navbar-nav a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.3s ease;
}

.navbar-nav a:hover { color: var(--gold); }
.navbar-nav a:hover::after { width: 100%; }
.navbar-nav a.aktif { color: var(--gold); }
.navbar-nav a.aktif::after { width: 100%; }

.navbar-siparis {
  background: var(--gold);
  color: var(--black) !important;
  padding: 10px 22px;
  border-radius: 50px;
  font-family: 'Montserrat', sans-serif;
  font-size: 12px !important;
  font-weight: 700 !important;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: all 0.3s ease;
}

.navbar-siparis:hover {
  background: var(--gold-light) !important;
  transform: translateY(-1px);
  box-shadow: var(--shadow-gold);
}

.navbar-siparis::after { display: none !important; }

/* Hamburger Menü */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  transition: all 0.3s ease;
  border-radius: 2px;
}

.hamburger.aktif span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.aktif span:nth-child(2) { opacity: 0; }
.hamburger.aktif span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobil Nav */
.mobil-menu {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(13,13,13,0.98);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
}

.mobil-menu.acik { display: flex; }

.mobil-menu a {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  color: var(--white);
  font-weight: 700;
  transition: color 0.3s;
}

.mobil-menu a:hover { color: var(--gold); }

.mobil-menu-kapat {
  position: absolute;
  top: 24px; right: 24px;
  font-size: 32px;
  color: var(--white);
  cursor: pointer;
  background: none;
  border: none;
  line-height: 1;
}

/* ─── Hero / Slider ────────────────────────────────── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 650px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-slider {
  position: absolute;
  inset: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.2s ease;
}

.hero-slide.aktif { opacity: 1; }

.hero-slide-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  transition: transform 8s ease;
}

.hero-slide.aktif .hero-slide-bg { transform: scale(1); }

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(13,13,13,0.75) 0%,
    rgba(13,13,13,0.4) 50%,
    rgba(13,13,13,0.6) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  max-width: 800px;
  padding: 0 24px;
  color: var(--white);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201,168,76,0.2);
  border: 1px solid rgba(201,168,76,0.4);
  border-radius: 50px;
  padding: 8px 20px;
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
  backdrop-filter: blur(10px);
}

.hero-badge::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

.hero-title {
  font-size: clamp(42px, 7vw, 80px);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 20px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.hero-title .gold { color: var(--gold); font-style: italic; }

.hero-subtitle {
  font-size: clamp(16px, 2vw, 20px);
  color: rgba(255,255,255,0.8);
  margin-bottom: 40px;
  font-weight: 300;
  letter-spacing: 0.5px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Slider Dots */
.slider-dots {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}

.slider-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  cursor: pointer;
  transition: all 0.3s ease;
}

.slider-dot.aktif {
  width: 28px;
  border-radius: 4px;
  background: var(--gold);
}

/* Slider Nav Arrows */
.slider-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.3);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.slider-nav:hover { background: var(--gold); border-color: var(--gold); }
.slider-nav.prev { left: 24px; }
.slider-nav.next { right: 24px; }

/* Scroll Down */
.scroll-down {
  position: absolute;
  bottom: 32px;
  right: 40px;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.6);
  font-family: 'Montserrat', sans-serif;
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
}

.scroll-down-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, transparent, var(--gold));
  animation: scrollLine 2s ease-in-out infinite;
}

/* ─── Butonlar ─────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: all 0.3s ease;
  cursor: pointer;
  border: 2px solid transparent;
  white-space: nowrap;
}

.btn-gold {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
}
.btn-gold:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
  color: var(--black);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
}
.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

.btn-outline-dark {
  background: transparent;
  color: var(--black);
  border-color: var(--black);
}
.btn-outline-dark:hover {
  background: var(--black);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-dark {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
}
.btn-dark:hover {
  background: var(--black-2);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}

.btn-sm { padding: 10px 22px; font-size: 11px; }
.btn-lg { padding: 18px 42px; font-size: 14px; }

/* ─── Bölüm Genel ─────────────────────────────────── */
.section {
  padding: 100px 0;
}

.section-dark {
  background: var(--black);
  color: var(--text-light);
}

.section-cream {
  background: var(--cream);
  color: var(--text-dark);
}

.section-cream-2 {
  background: var(--cream-2);
  color: var(--text-dark);
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-tag {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  position: relative;
  padding: 0 20px;
}

.section-tag::before,
.section-tag::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 30px;
  height: 1px;
  background: var(--gold);
}
.section-tag::before { right: 100%; margin-right: -10px; }
.section-tag::after  { left: 100%;  margin-left:  -10px; }

.section-title {
  font-size: clamp(32px, 4vw, 52px);
  margin-bottom: 16px;
}

.section-title.light { color: var(--white); }
.section-title.dark  { color: var(--black); }

.section-desc {
  font-size: 17px;
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ─── Öne Çıkan Ürünler ────────────────────────────── */
.urun-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 28px;
}

.urun-kart {
  background: var(--black-2);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.06);
  transition: all 0.4s ease;
  cursor: pointer;
}

.urun-kart:hover {
  transform: translateY(-6px);
  border-color: var(--border);
  box-shadow: 0 20px 50px rgba(0,0,0,0.4);
}

.urun-kart-gorsel {
  position: relative;
  overflow: hidden;
  height: 220px;
}

.urun-kart-gorsel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.urun-kart:hover .urun-kart-gorsel img { transform: scale(1.08); }

.urun-etiket {
  position: absolute;
  top: 14px; left: 14px;
  padding: 5px 12px;
  border-radius: 50px;
  font-family: 'Montserrat', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.etiket-populer    { background: var(--gold); color: var(--black); }
.etiket-yeni       { background: #22C55E; color: white; }
.etiket-sef_onerisi{ background: #A855F7; color: white; }
.etiket-indirimli  { background: #EF4444; color: white; }
.etiket-vejetaryen { background: #10B981; color: white; }
.etiket-vegan      { background: #059669; color: white; }

.urun-kart-icerik {
  padding: 20px 22px 24px;
}

.urun-kart-baslik {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  color: var(--white);
  margin-bottom: 8px;
  font-weight: 600;
}

.urun-kart-aciklama {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  line-height: 1.6;
  margin-bottom: 16px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.urun-kart-alt {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.urun-fiyat {
  font-family: 'Montserrat', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--gold);
}

.urun-kalori {
  font-size: 12px;
  color: rgba(255,255,255,0.4);
}

/* ─── Kampanya Kartları ────────────────────────────── */
.kampanya-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 28px;
}

.kampanya-kart {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  height: 300px;
  cursor: pointer;
}

.kampanya-kart img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.kampanya-kart:hover img { transform: scale(1.05); }

.kampanya-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13,13,13,0.9) 0%, transparent 60%);
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.kampanya-baslik {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  color: var(--white);
  margin-bottom: 8px;
}

.kampanya-aciklama {
  font-size: 14px;
  color: rgba(255,255,255,0.75);
  margin-bottom: 16px;
  line-height: 1.5;
}

/* ─── Galeri Önizleme ──────────────────────────────── */
.galeri-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 250px);
  gap: 12px;
}

.galeri-item {
  overflow: hidden;
  border-radius: var(--radius);
  cursor: pointer;
  position: relative;
}

.galeri-item:first-child {
  grid-column: span 2;
  grid-row: span 2;
}

.galeri-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.galeri-item:hover img { transform: scale(1.06); }

.galeri-item-overlay {
  position: absolute;
  inset: 0;
  background: rgba(201,168,76,0.3);
  opacity: 0;
  transition: opacity 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 28px;
}

.galeri-item:hover .galeri-item-overlay { opacity: 1; }

/* ─── Rezervasyon CTA ──────────────────────────────── */
.rezervasyon-cta {
  background: linear-gradient(135deg, var(--black) 0%, var(--black-2) 100%);
  position: relative;
  overflow: hidden;
  text-align: center;
  padding: 100px 32px;
}

.rezervasyon-cta::before {
  content: '';
  position: absolute;
  top: -50%;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(201,168,76,0.1) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.rezervasyon-cta h2 {
  font-size: clamp(36px, 5vw, 60px);
  color: var(--white);
  margin-bottom: 16px;
}

.rezervasyon-cta p {
  color: rgba(255,255,255,0.65);
  font-size: 18px;
  margin-bottom: 40px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

/* ─── Footer ───────────────────────────────────────── */
.footer {
  background: var(--black);
  border-top: 1px solid rgba(201,168,76,0.15);
  padding: 80px 0 40px;
  color: rgba(255,255,255,0.65);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  margin-bottom: 60px;
}

.footer-logo {
  font-family: 'Montserrat', sans-serif;
  font-size: 26px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: 3px;
  margin-bottom: 16px;
}

.footer-logo span { color: var(--gold); }

.footer-desc {
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 24px;
  max-width: 260px;
}

.footer-sosyal {
  display: flex;
  gap: 12px;
}

.footer-sosyal a {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(201,168,76,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 15px;
  transition: all 0.3s ease;
}

.footer-sosyal a:hover {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
  transform: translateY(-2px);
}

.footer-baslik {
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.footer-links { display: flex; flex-direction: column; gap: 10px; }

.footer-links a {
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  transition: color 0.3s;
}

.footer-links a:hover { color: var(--gold); padding-left: 4px; }

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 14px;
}

.footer-contact-item i {
  color: var(--gold);
  width: 16px;
  margin-top: 2px;
  flex-shrink: 0;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
}

.footer-bottom-links { display: flex; gap: 24px; }
.footer-bottom-links a:hover { color: var(--gold); }

/* ─── Formlar ──────────────────────────────────────── */
.form-group { margin-bottom: 20px; }

.form-label {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.form-control {
  width: 100%;
  padding: 14px 18px;
  border: 1px solid rgba(0,0,0,0.12);
  border-radius: var(--radius);
  font-size: 15px;
  font-family: 'Inter', sans-serif;
  color: var(--text-dark);
  background: var(--white);
  transition: all 0.3s ease;
  outline: none;
}

.form-control:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.15);
}

.form-control-dark {
  background: var(--black-3);
  border-color: rgba(255,255,255,0.1);
  color: var(--white);
}

.form-control-dark::placeholder { color: rgba(255,255,255,0.3); }
.form-control-dark:focus { border-color: var(--gold); }

select.form-control { appearance: none; cursor: pointer; }

/* ─── Animasyonlar ─────────────────────────────────── */
@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.4); opacity: 0.7; }
}

@keyframes scrollLine {
  0%   { transform: scaleY(0); transform-origin: top; }
  50%  { transform: scaleY(1); transform-origin: top; }
  51%  { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(40px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

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

.animate-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.animate-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }

/* ─── Tanıtım Bölümü ───────────────────────────────── */
.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.intro-img-wrap {
  position: relative;
}

.intro-img-main {
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 520px;
}

.intro-img-main img { width: 100%; height: 100%; object-fit: cover; }

.intro-img-accent {
  position: absolute;
  bottom: -30px;
  right: -30px;
  width: 200px;
  height: 200px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 6px solid var(--cream);
  box-shadow: var(--shadow);
}

.intro-img-accent img { width: 100%; height: 100%; object-fit: cover; }

.intro-badge {
  position: absolute;
  top: 30px;
  left: -20px;
  background: var(--gold);
  color: var(--black);
  padding: 16px 20px;
  border-radius: var(--radius);
  font-family: 'Playfair Display', serif;
  font-size: 13px;
  font-weight: 700;
  text-align: center;
  box-shadow: var(--shadow-gold);
}

.intro-badge strong {
  display: block;
  font-size: 32px;
  font-weight: 900;
  line-height: 1;
}

.intro-ozellikler {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 36px;
}

.intro-ozellik {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.intro-ozellik-ikon {
  width: 46px; height: 46px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--black);
  font-size: 18px;
  flex-shrink: 0;
}

/* ─── İstatistik Bantı ─────────────────────────────── */
.stat-bant {
  background: var(--gold);
  padding: 48px 0;
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}

.stat-sayi {
  font-family: 'Playfair Display', serif;
  font-size: 52px;
  font-weight: 900;
  color: var(--black);
  line-height: 1;
}

.stat-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(13,13,13,0.65);
  margin-top: 6px;
}

/* ─── Sayfa Hero ───────────────────────────────────── */
.sayfa-hero {
  padding: 160px 0 80px;
  background: var(--black);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.sayfa-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(ellipse at center top, rgba(201,168,76,0.12) 0%, transparent 70%);
  pointer-events: none;
}

.sayfa-hero-title {
  font-size: clamp(36px, 5vw, 64px);
  color: var(--white);
  margin-bottom: 16px;
}

.sayfa-hero-title span { color: var(--gold); font-style: italic; }

.sayfa-hero-desc {
  font-size: 18px;
  color: rgba(255,255,255,0.6);
  max-width: 500px;
  margin: 0 auto;
}

.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 24px;
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  letter-spacing: 1px;
  color: rgba(255,255,255,0.4);
}

.breadcrumb a:hover { color: var(--gold); }
.breadcrumb-sep { color: var(--gold); }

/* ─── Lightbox ─────────────────────────────────────── */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.95);
  z-index: 9999;
  align-items: center;
  justify-content: center;
}

.lightbox.acik { display: flex; }

.lightbox-img {
  max-width: 90vw;
  max-height: 88vh;
  object-fit: contain;
  border-radius: var(--radius);
}

.lightbox-kapat {
  position: absolute;
  top: 20px; right: 24px;
  font-size: 32px;
  color: white;
  cursor: pointer;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s;
}

.lightbox-kapat:hover { background: var(--gold); color: var(--black); }

/* ─── Responsive ───────────────────────────────────── */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .intro-grid  { grid-template-columns: 1fr; gap: 48px; }
  .galeri-grid { grid-template-columns: repeat(3, 1fr); grid-template-rows: auto; }
  .galeri-item:first-child { grid-column: 1; grid-row: 1; }
  .stat-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .navbar-nav   { display: none !important; }
  .hamburger    { display: flex !important; }
  .section      { padding: 64px 0; }
  .container    { padding: 0 20px; }
  .urun-grid    { grid-template-columns: 1fr; }
  .kampanya-grid{ grid-template-columns: 1fr; }
  .galeri-grid  { grid-template-columns: 1fr 1fr; }
  .footer-grid  { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom{ flex-direction: column; gap: 16px; text-align: center; }
  .stat-grid    { grid-template-columns: 1fr 1fr; }
  .intro-ozellikler { grid-template-columns: 1fr; }
  .hero-buttons { flex-direction: column; align-items: center; }
  .slider-nav   { display: none; }
  .scroll-down  { display: none; }
  .r-form-grid  { grid-template-columns: 1fr !important; gap: 24px !important; }
  .r-form-grid-2{ grid-template-columns: 1fr !important; }
}

@media (max-width: 480px) {
  .galeri-grid { grid-template-columns: 1fr; }
  .stat-grid   { grid-template-columns: 1fr 1fr; }
}

/* Form grid sayfaları (Rezervasyon, İletişim) */
.r-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.r-form-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
@media (max-width: 768px) {
  .r-form-grid  { grid-template-columns: 1fr !important; gap: 24px !important; }
  .r-form-grid-2{ grid-template-columns: 1fr !important; }
}

/* ─── Toast Bildirimi ──────────────────────────────── */
.toast-container {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9000;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.toast {
  background: var(--black);
  color: var(--white);
  padding: 14px 20px;
  border-radius: var(--radius);
  border-left: 4px solid var(--gold);
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
  font-size: 14px;
  max-width: 320px;
  animation: fadeInUp 0.4s ease;
  display: flex;
  align-items: center;
  gap: 10px;
}

.toast.basari  { border-color: #22C55E; }
.toast.hata    { border-color: #EF4444; }
.toast.bilgi   { border-color: var(--gold); }
