/* ============================================
   Şehir Lokantası İnegöl — Ana Stil Dosyası v2
   Kurumsal, Profesyonel, Kırmızı-Beyaz-Sarı
   ============================================ */

/* Google Fonts — Kurumsal Fontlar */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,400;1,600;1,800;1,900&family=Poppins:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,400;1,600&display=swap');

/* ─── CSS Değişkenler ─── */
:root {
  --red: #D93416;
  --red-dark: #B82D12;
  --red-darker: #8F200D;
  --red-light: #E84A30;
  --red-bg: #F9E8E5;
  --yellow: #F4D229;
  --yellow-dark: #D4B820;
  --yellow-light: #F7DF5A;
  --white: #FFFFFF;
  --off-white: #FAFAFA;
  --light-gray: #F2F2F2;
  --gray: #777777;
  --gray-dark: #555555;
  --dark: #1A1A1A;
  --dark-medium: #333333;

  --font-heading: 'Montserrat', 'Segoe UI', Arial, sans-serif;
  --font-body: 'Poppins', 'Segoe UI', Arial, sans-serif;

  --section-padding: 90px 0;
  --container-width: 1200px;

  --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 24px rgba(0, 0, 0, 0.10);
  --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.14);
  --shadow-red: 0 6px 30px rgba(217, 52, 22, 0.25);

  --transition-fast: 0.2s ease;
  --transition: 0.3s ease;
  --transition-slow: 0.5s ease;

  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 28px;
}

/* ─── Reset ─── */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  color: var(--dark);
  background-color: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  padding-top: 100px;
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; transition: color var(--transition-fast); }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }

.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* ─── Section Ortak ─── */
.section { padding: var(--section-padding); }

.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.section-header h2 {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 10px;
  letter-spacing: -0.5px;
  text-transform: uppercase;
}

.section-header h2 span.red { color: var(--red); }

.section-header .divider {
  width: 70px;
  height: 4px;
  background: var(--red);
  margin: 14px auto 16px;
  border-radius: 2px;
  position: relative;
}

.section-header .divider::after {
  content: '';
  position: absolute;
  right: -12px;
  top: 0;
  width: 8px;
  height: 4px;
  background: var(--yellow);
  border-radius: 2px;
}

.section-header p {
  font-size: 1.05rem;
  color: var(--gray);
  max-width: 560px;
  margin: 0 auto;
  font-weight: 400;
}

/* ─── Scroll Animasyonları ─── */
.fade-in {
  opacity: 0; transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible { opacity: 1; transform: translateY(0); }

.fade-in-left {
  opacity: 0; transform: translateX(-40px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in-left.visible { opacity: 1; transform: translateX(0); }

.fade-in-right {
  opacity: 0; transform: translateX(40px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in-right.visible { opacity: 1; transform: translateX(0); }

/* ═══════════════════════════════════════
   1. HEADER & NAVBAR (STICKY)
   ═══════════════════════════════════════ */
.header {
  background: var(--red);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  box-shadow: 0 3px 16px rgba(217, 52, 22, 0.35);
  transition: background 0.4s ease, box-shadow 0.4s ease;
}

.header.scrolled {
  background: rgba(217, 52, 22, 0.96);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100px;
  padding: 0 20px;
  transition: height 0.4s ease;
}

.header.scrolled .header-container {
  height: 63px;
}

.logo-link {
  display: flex;
  align-items: center;
  z-index: 1001;
  flex-shrink: 0;
  margin-right: 20px;
}

.header-logo {
  display: block;
  height: 250px;
  width: auto;
  object-fit: contain;
  margin-left: 0;
  transition: height 0.4s ease;
}

.header.scrolled .header-logo {
  height: 150px;
}

.navbar {
  display: block;
}

.nav-links {
  display: flex;
  gap: 5px;
}

.nav-links li { display: block; }

.nav-links a {
  display: block;
  color: var(--white);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.15rem;
  padding: 10px 16px;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  white-space: nowrap; /* Yazıların alt alta düşmesini (kırılmasını) engeller */
  position: relative;
  transition: all var(--transition);
  border-radius: 4px;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--yellow);
  transition: width var(--transition);
}

.nav-links a:hover::after,
.nav-links a.active::after { width: 50%; }

.nav-links a:hover { background: rgba(255,255,255,0.1); }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 6px;
  z-index: 1001;
  right: 24px;
  z-index: 1001;
}

.hamburger span {
  width: 26px; height: 3px;
  background: var(--white);
  border-radius: 3px;
  transition: all var(--transition);
}

.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(6px, -6px); }

/* ═══════════════════════════════════════
   3. HERO
   ═══════════════════════════════════════ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 50%, var(--red-darker) 100%);
  overflow: hidden;
}

/* Video Arkaplan */
.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(217, 52, 22, 0.65) 0%, rgba(143, 32, 13, 0.75) 100%);
  z-index: 1;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -30%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(244,210,41,0.15) 0%, transparent 70%);
  border-radius: 50%;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -40%;
  left: -20%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255,255,255,0.06) 0%, transparent 70%);
  border-radius: 50%;
}

.hero-slider {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  pointer-events: none;
  transition: opacity 1s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-slide.active {
  opacity: 1;
  pointer-events: auto;
  position: absolute;
}

.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: var(--yellow);
  color: var(--dark);
  border: none;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  font-size: 1.5rem;
  cursor: pointer;
  z-index: 10;
  box-shadow: var(--shadow-md);
  transition: all var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}

.slider-btn:hover {
  background: var(--yellow-dark);
  transform: translateY(-50%) scale(1.1);
}

.slider-btn.prev-btn { left: 20px; }
.slider-btn.next-btn { right: 20px; }

@media (max-width: 768px) {
  .slider-btn { width: 32px; height: 32px; font-size: 1.1rem; }
  .slider-btn.prev-btn { left: 10px; }
  .slider-btn.next-btn { right: 10px; }
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 60px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 80px;
  max-width: 1300px;
  margin: 0 auto;
}

.hero-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  flex: 1;
}

.hero-right {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1.3;
}

.hero-helvasi-img {
  width: 800px;
  max-width: 100%;
  height: auto;
  border: none;
  filter: drop-shadow(0 0 60px rgba(244, 210, 41, 0.8)) drop-shadow(0 10px 20px rgba(0,0,0,0.3));
  animation: floatImg 4s ease-in-out infinite;
  border-radius: 0;
  object-fit: contain;
  padding: 20px;
  box-sizing: border-box;
}

@keyframes floatImg {
  0%, 100% { transform: translateY(0) scale(1.3); }
  50% { transform: translateY(-8px) scale(1.3); }
}

.hero-helvasi-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 250px;
}

.hero-helvasi-text h1 {
  font-family: var(--font-heading);
  font-size: 3.2rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 30px;
}

.hero-helvasi-text h1 .highlight {
  color: var(--yellow);
  font-style: italic;
  font-size: 3.8rem;
  display: block;
  text-shadow: 0 2px 15px rgba(0,0,0,0.2);
  animation: highlightPulse 3s ease-in-out infinite;
}

@keyframes highlightPulse {
  0%, 100% { text-shadow: 0 2px 15px rgba(0,0,0,0.2); }
  50% { text-shadow: 0 2px 30px rgba(244,210,41,0.5); }
}

.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: flex-start;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius-xl);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.88rem;
  cursor: pointer;
  transition: all var(--transition);
  border: none;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.btn-primary {
  background: var(--white);
  color: var(--red);
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.btn-primary:hover {
  background: var(--yellow);
  color: var(--dark);
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.2);
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.6);
}

.btn-secondary:hover {
  border-color: var(--yellow);
  color: var(--yellow);
  transform: translateY(-3px);
}

.btn-yellow {
  background: var(--yellow);
  color: var(--dark);
  box-shadow: 0 4px 20px rgba(244,210,41,0.3);
}

.btn-yellow:hover {
  background: var(--yellow-dark);
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(244,210,41,0.4);
}

.btn-red {
  background: var(--red);
  color: var(--white);
  box-shadow: var(--shadow-red);
}

.btn-red:hover {
  background: var(--red-dark);
  transform: translateY(-3px);
}

/* ═══════════════════════════════════════
   4. ÖNE ÇIKANLAR
   ═══════════════════════════════════════ */
.features { background: var(--white); }

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.feature-card {
  text-align: center;
  padding: 36px 22px;
  border-radius: var(--radius-md);
  background: var(--white);
  border: 1px solid var(--light-gray);
  transition: all var(--transition);
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--red);
}

.feature-icon {
  width: 70px; height: 70px;
  margin: 0 auto 20px;
  background: var(--red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: var(--white);
  transition: all var(--transition);
}

.feature-card:hover .feature-icon {
  background: var(--yellow);
  color: var(--dark);
  transform: scale(1.1);
}

.feature-card h3 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--dark);
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

.feature-card p {
  font-size: 0.9rem;
  color: var(--gray);
  line-height: 1.6;
}




/* ═══════════════════════════════════════
   6. MENÜMÜZ
   ═══════════════════════════════════════ */
.menu-section { background: var(--off-white); }

.menu-placeholder {
  text-align: center;
  padding: 50px 30px;
  background: var(--white);
  border-radius: var(--radius-md);
  border: 2px dashed #DDD;
}

.menu-placeholder i { font-size: 3rem; color: var(--red); margin-bottom: 16px; }
.menu-placeholder p { font-size: 1.05rem; color: var(--gray); }

/* ═══════════════════════════════════════
   7. HAKKIMIZDA
   ═══════════════════════════════════════ */
.about-section { background: var(--white); }

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.about-text h3 {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--red);
  margin-bottom: 18px;
  text-transform: uppercase;
  letter-spacing: -0.3px;
}

.about-text p {
  font-size: 0.95rem;
  color: var(--gray-dark);
  margin-bottom: 14px;
  line-height: 1.8;
}

.about-text .emphasis {
  color: var(--red);
  font-weight: 600;
}

/* Fotoğraf Placeholder */
.photo-placeholder {
  width: 100%;
  min-height: 350px;
  background: var(--light-gray);
  border-radius: var(--radius-md);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: 2px dashed #CCC;
  color: var(--gray);
}

.photo-placeholder i { font-size: 3rem; color: var(--red); opacity: 0.5; }
.photo-placeholder span { font-size: 1rem; font-weight: 600; }

/* Sayaçlar */
.counters {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 50px;
}

.counter-card {
  text-align: center;
  padding: 28px 20px;
  background: var(--red);
  border-radius: var(--radius-md);
  color: var(--white);
  box-shadow: var(--shadow-red);
  transition: transform var(--transition);
}

.counter-card:hover { transform: translateY(-4px); }

.counter-number {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 900;
  display: block;
  margin-bottom: 2px;
}

.counter-label {
  font-size: 0.9rem;
  font-weight: 500;
  opacity: 0.9;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ═══════════════════════════════════════
   8. GOOGLE YORUMLARI
   ═══════════════════════════════════════ */
.reviews-section {
  background: var(--off-white);
  position: relative;
}

.google-rating-overview {
  text-align: center;
  margin-bottom: 44px;
  padding: 24px 36px;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  display: inline-flex;
  align-items: center;
  gap: 18px;
  margin-left: 50%;
  transform: translateX(-50%);
  border: 1px solid var(--light-gray);
}

.google-rating-overview .rating-score {
  font-family: var(--font-heading);
  font-size: 3.2rem;
  font-weight: 900;
  color: var(--dark);
}

.google-rating-overview .stars { color: var(--yellow); font-size: 1.3rem; }
.google-rating-overview .review-count { color: var(--gray); font-size: 0.9rem; }

.reviews-slider {
  position: relative;
  overflow: hidden;
}

.reviews-track {
  display: flex;
  gap: 24px;
  transition: transform 0.5s ease;
}

.review-card {
  width: calc(33.333% - 16px);
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  flex-shrink: 0;
  border-top: 3px solid var(--red);
  transition: all var(--transition);
  border-bottom: 1px solid var(--light-gray);
}

.review-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.review-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}

.review-avatar {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1rem;
}

.review-meta h4 { font-family: var(--font-heading); font-weight: 700; font-size: 0.95rem; }
.review-meta .review-date { font-size: 0.82rem; color: var(--gray); }

.review-stars { color: var(--yellow); margin-bottom: 10px; font-size: 1rem; }

.review-text {
  color: var(--gray-dark);
  font-size: 0.92rem;
  line-height: 1.65;
  font-style: italic;
}

.reviews-nav {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 36px;
}

.reviews-nav button {
  width: 46px; height: 46px;
  border-radius: 50%;
  border: 2px solid var(--red);
  background: transparent;
  color: var(--red);
  font-size: 1.1rem;
  cursor: pointer;
  transition: all var(--transition);
}

.reviews-nav button:hover {
  background: var(--red);
  color: var(--white);
}

/* ═══════════════════════════════════════
   9. ORGANİZASYONLAR
   ═══════════════════════════════════════ */
.org-section { background: var(--white); }

.org-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.org-types {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 28px;
}

.org-type-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  background: var(--off-white);
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  border-left: 3px solid var(--red);
}

.org-type-card:hover {
  background: var(--red);
  color: var(--white);
  transform: translateX(4px);
  border-left-color: var(--yellow);
}

.org-type-card i { font-size: 1.2rem; color: var(--yellow); min-width: 20px; }
.org-type-card:hover i { color: var(--yellow); }

.org-type-card span {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.88rem;
}

.org-cta { text-align: center; margin-top: 8px; }
.org-cta p {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--red);
  font-style: italic;
  margin-bottom: 16px;
  font-weight: 600;
}

/* ═══════════════════════════════════════
   YEMEK GALERİSİ
   ═══════════════════════════════════════ */
.gallery-section { background: var(--white); }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  aspect-ratio: 1;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(217, 52, 22, 0.0);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease;
}

.gallery-overlay i {
  color: var(--white);
  font-size: 2rem;
  opacity: 0;
  transform: scale(0.5);
  transition: all 0.4s ease;
}

.gallery-item:hover .gallery-overlay {
  background: rgba(217, 52, 22, 0.4);
}

.gallery-item:hover .gallery-overlay i {
  opacity: 1;
  transform: scale(1);
}

/* ═══════════════════════════════════════
   NEREDEYİZ? BÖLÜMÜ
   ═══════════════════════════════════════ */
.neredeyiz-section { background: var(--off-white); }

.neredeyiz-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: stretch;
}

.neredeyiz-photo {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.neredeyiz-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 350px;
}

.neredeyiz-address {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 18px 24px;
  background: linear-gradient(transparent, rgba(0,0,0,0.8));
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 10px;
  box-sizing: border-box;
}

.neredeyiz-address i {
  font-size: 1.3rem;
  color: var(--yellow);
}

.neredeyiz-address p {
  font-size: 0.95rem;
  font-weight: 500;
  margin: 0;
}

.neredeyiz-map {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.neredeyiz-map iframe {
  width: 100%;
  height: 400px;
  border: none;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
}

/* Yorumlar sayfası grid */
.reviews-grid-page {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 36px;
}

.reviews-grid-page .review-card {
  width: 100%;
}

/* ═══════════════════════════════════════
   10. İLETİŞİM
   ═══════════════════════════════════════ */
.contact-section { background: var(--off-white); }

.contact-grid {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 600px;
  margin: 0 auto;
}

.contact-info-cards {
  display: flex;
  flex-direction: column;
  gap: 18px;
  width: 100%;
}

.contact-card {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 22px;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  border: 1px solid var(--light-gray);
}

.contact-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--red);
}

.contact-card-icon {
  width: 50px; height: 50px; min-width: 50px;
  border-radius: 50%;
  background: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.2rem;
}

.contact-card h4 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.contact-card p,
.contact-card a {
  color: var(--gray);
  font-size: 0.92rem;
}

.contact-card a:hover { color: var(--red); }

.social-links {
  display: flex;
  gap: 12px;
  margin-top: 8px;
}

.social-links a {
  width: 42px; height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--white);
  transition: all var(--transition);
}

.social-links a.instagram {
  background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.social-links a.facebook { background: #1877F2; }

.social-links a:hover {
  transform: translateY(-3px) scale(1.08);
  box-shadow: var(--shadow-md);
}

.contact-map {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  min-height: 380px;
  border: 1px solid var(--light-gray);
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  min-height: 380px;
  border: none;
}

/* ═══════════════════════════════════════
   11. FOOTER
   ═══════════════════════════════════════ */
.footer {
  background: var(--red);
  color: var(--white);
  padding: 50px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 36px;
}

.footer-about img {
  max-width: 180px;
  margin-bottom: 14px;
  filter: brightness(0) invert(1);
}

.footer-about p {
  color: rgba(255,255,255,0.8);
  font-size: 0.9rem;
  line-height: 1.6;
}

.footer h4 {
  font-family: var(--font-heading);
  font-size: 1rem;
  color: var(--yellow);
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding-bottom: 8px;
  position: relative;
}

.footer h4::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 30px; height: 2px;
  background: var(--yellow);
}

.footer-links a {
  display: block;
  color: rgba(255,255,255,0.8);
  padding: 5px 0;
  font-size: 0.9rem;
  transition: all var(--transition-fast);
}

.footer-links a:hover {
  color: var(--yellow);
  padding-left: 6px;
}

.footer-contact p {
  color: rgba(255,255,255,0.8);
  font-size: 0.9rem;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-contact i { color: var(--yellow); width: 18px; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.2);
  padding: 16px 0;
  text-align: center;
}

.footer-bottom p { color: rgba(255,255,255,0.6); font-size: 0.85rem; }
.footer-bottom a { color: var(--yellow); }

/* ═══════════════════════════════════════
   KAYAN BUTONLAR
   ═══════════════════════════════════════ */
.floating-buttons {
  position: fixed;
  right: 20px;
  bottom: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 999;
}

.float-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: var(--radius-xl);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.8rem;
  color: var(--white);
  cursor: pointer;
  transition: all var(--transition);
  box-shadow: var(--shadow-md);
  text-decoration: none;
  white-space: nowrap;
  border: none;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

.float-btn-review {
  background: var(--yellow);
  color: var(--dark);
}

.float-btn-review:hover {
  transform: translateX(-6px) scale(1.03);
  box-shadow: var(--shadow-lg);
}

.float-btn-feedback { background: var(--red-dark); }
.float-btn-feedback:hover {
  transform: translateX(-6px) scale(1.03);
  box-shadow: var(--shadow-lg);
}

/* Scroll Top */
.scroll-top {
  position: fixed;
  bottom: 28px; left: 20px;
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--red);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  cursor: pointer;
  box-shadow: var(--shadow-md);
  transition: all var(--transition);
  opacity: 0; visibility: hidden;
  transform: translateY(20px);
  border: none;
  z-index: 999;
}

.scroll-top.visible {
  opacity: 1; visibility: visible;
  transform: translateY(0);
}

.scroll-top:hover {
  background: var(--red-dark);
  transform: translateY(-3px);
}

/* ═══════════════════════════════════════
   PAGE LOADER
   ═══════════════════════════════════════ */
.page-loader {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: var(--red);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

.page-loader.hidden { opacity: 0; visibility: hidden; }

.loader-spinner {
  width: 50px; height: 50px;
  border: 3px solid rgba(255,255,255,0.2);
  border-top: 3px solid var(--yellow);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  margin-bottom: 16px;
}

@keyframes spin { to { transform: rotate(360deg); } }

.loader-logo {
  width: 250px;
  height: auto;
  margin-bottom: 20px;
  animation: loaderPulse 2s ease-in-out infinite;
}

@keyframes loaderPulse {
  0%, 100% { transform: scale(1); opacity: 0.95; }
  50% { transform: scale(1.05); opacity: 1; }
}

.loader-text {
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
}



/* ═══════════════════════════════════════
   RESPONSIVE (Cihaz Ekran Boyutları)
   ═══════════════════════════════════════ */
/* Laptops & iPad Pro */
@media (max-width: 1024px) {
  /* Beyaz boşluğu kapatmak için padding ayarı */
  body { padding-top: 75px; }
  
  /* Üst Bar Yükseklikleri */
  .header-container { height: 75px; }
  .header.scrolled .header-container { height: 48px; }
  
  /* Logo Ayarları */
  .header-logo { 
    height: 168px; 
    margin-top: 0;
    margin-left: 0;
  }
  
  /* Kaydırılınca (Scrolled) Logo Ayarları */
  .header.scrolled .header-logo { 
    height: 151px; 
  }
  
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .about-content, .org-content, .contact-grid, .neredeyiz-content { grid-template-columns: 1fr; gap: 36px; }
  .hero-helvasi-text h1 { font-size: 2.4rem; }
  .hero-helvasi-text h1 .highlight { font-size: 2.8rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .review-card { width: calc(50% - 12px); }
  .reviews-grid-page { grid-template-columns: repeat(2, 1fr); }
}

/* iPad Mini & Tablets */
@media (max-width: 768px) {
  :root { --section-padding: 60px 0; }

  /* Mobil menü açılımı */
  .hamburger { display: flex; }
  
  .navbar { position: static; }
  
  .nav-links {
    flex-direction: column;
    position: fixed;
    top: 0; left: -100%;
    width: 100%; height: 100vh;
    background: rgba(217, 52, 22, 0.98);
    z-index: 1000;
    justify-content: center;
    align-items: center;
    padding: 0;
    transition: left 0.4s ease;
  }

  .nav-links.active { left: 0; }
  .nav-links a { 
    text-align: center; 
    padding: 18px 20px; 
    font-size: 1.4rem;
    color: var(--white);
  }
  .nav-links a:hover { color: var(--yellow); }


  .hero-content { 
    position: relative;
    padding: 20px 20px 0;
    display: flex;
    flex-direction: column-reverse;
    justify-content: flex-end;
    height: 100%;
    width: 100%;
    gap: 0;
  }
  .hero-right { 
    position: relative;
    width: 100%; 
    height: 280px; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    z-index: 5;
  }
  .hero-left { 
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center; 
    text-align: center; 
    z-index: 10;
    transform: translateY(-10%);
  }
  .hero-helvasi-text {
    width: 100%;
    height: 140px; 
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .hero-helvasi-text h1 { 
    font-size: clamp(1.75rem, 5.5vw, 2.4rem); 
    margin-bottom: 0; 
  }
  .hero-helvasi-text h1 .highlight { 
    font-size: clamp(2.2rem, 6.6vw, 2.85rem); 
    font-weight: 900; 
  }
  .hero-helvasi-img { 
    width: 340px; 
    max-height: 100%; 
    object-fit: contain; 
    margin-bottom: 0; 
    transform: scale(1.30);
  }
  .hero-buttons { 
    display: flex;
    flex-direction: column; 
    align-items: center; 
    width: 100%; 
    margin-top: 15px;
  }

  .features-grid { grid-template-columns: 1fr; }
  .section-header h2 { font-size: 1.8rem; }
  .review-card { width: 100%; }
  .org-types { grid-template-columns: 1fr; }
  .counters { grid-template-columns: 1fr; gap: 14px; }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }

  .floating-buttons { 
    right: 10px; 
    bottom: 14px; 
    transform: scale(0.9);
    transform-origin: bottom right;
  }
  .float-btn { padding: 10px 14px; font-size: 0.75rem; }



  .google-rating-overview { flex-direction: column; gap: 8px; padding: 20px; }

  .hero-buttons { flex-direction: column; align-items: center; width: 100%; }
  .btn { width: 100%; max-width: 280px; justify-content: center; }

  /* Galeri mobilde */
  .gallery-slider-container .gallery-item { flex: 0 0 100% !important; }

  /* Neredeyiz mobilde */
  .neredeyiz-content { grid-template-columns: 1fr; gap: 24px; }
  .neredeyiz-map iframe { height: 300px; }

  /* Yorumlar sayfası grid mobilde */
  .reviews-grid-page { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .hero-helvasi-text h1 { font-size: 1.6rem; }
  .hero-helvasi-text h1 .highlight { font-size: 2rem; font-weight: 900; }
  .hero-helvasi-img { width: 320px; }
  .counter-number { font-size: 2.2rem; }
  .review-card { padding: 20px; }
  .neredeyiz-map iframe { height: 250px; }
}

/* iPhone SE (375x667) ve benzeri dikey alanı dar (kısa) ekranlara özel spesifik optimizasyon */
@media (max-width: 480px) and (max-height: 680px) {
  .hero-content { padding: 10px 10px 0; }
  .hero-right { height: 210px; transform: translateY(-5%); }
  .hero-helvasi-img { 
    width: 240px; 
    transform: translateY(10%) scale(1.90) !important; 
  }
  .hero-left { transform: translateY(-5%); }
  .hero-helvasi-text { height: 90px; }
  .hero-helvasi-text h1 { font-size: 1.4rem !important; }
  .hero-helvasi-text h1 .highlight { font-size: 1.8rem !important; }
  .hero-buttons { margin-top: 5px; gap: 8px; }
  .btn { padding: 10px 20px; font-size: 0.8rem; max-width: 220px; }
  .floating-buttons { transform: scale(0.70); bottom: 10%; right: 0; }
}

/* ═══════════════════════════════════════
   SUBPAGES — PAGE HERO BANNER
   ═══════════════════════════════════════ */
.page-hero {
  position: relative;
  background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 50%, var(--red-darker) 100%);
  padding: 80px 0 70px;
  text-align: center;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: -60%; left: -20%;
  width: 140%;
  height: 220%;
  background: radial-gradient(ellipse at center, rgba(244, 210, 41, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 100%; height: 6px;
  background: linear-gradient(90deg, var(--yellow), var(--yellow-dark), var(--yellow));
}

.page-hero-content {
  position: relative;
  z-index: 2;
}

.page-hero-content h1 {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: -0.5px;
  margin-bottom: 14px;
  line-height: 1.2;
}

.page-hero-content h1 span {
  color: var(--yellow);
}

.page-hero-content p {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.85);
  max-width: 600px;
  margin: 0 auto;
  font-weight: 400;
}

/* ═══════════════════════════════════════
   ORGANIZASYONLAR PAGE — CARD GRID
   ═══════════════════════════════════════ */
.org-page-types {
  background: var(--off-white);
}

.org-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.org-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 28px 32px;
  text-align: center;
  border: 1px solid var(--light-gray);
  border-bottom: 4px solid var(--red);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.org-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: linear-gradient(135deg, rgba(217, 52, 22, 0.03) 0%, transparent 100%);
  opacity: 0;
  transition: opacity var(--transition);
}

.org-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-bottom-color: var(--yellow);
}

.org-card:hover::before {
  opacity: 1;
}

.org-card-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: var(--white);
  font-size: 1.6rem;
  transition: all var(--transition);
  box-shadow: 0 4px 16px rgba(217, 52, 22, 0.25);
}

.org-card:hover .org-card-icon {
  transform: scale(1.1) rotate(-5deg);
  background: linear-gradient(135deg, var(--yellow), var(--yellow-dark));
  color: var(--dark);
  box-shadow: 0 4px 16px rgba(244, 210, 41, 0.35);
}

.org-card h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

.org-card p {
  font-size: 0.9rem;
  color: var(--gray);
  line-height: 1.65;
}

/* ═══════════════════════════════════════
   ORGANIZASYONLAR — WHY CHOOSE US
   ═══════════════════════════════════════ */
.org-why {
  background: var(--white);
}

.org-why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.org-why-card {
  text-align: center;
  padding: 40px 30px;
  background: var(--off-white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--light-gray);
  transition: all var(--transition);
  position: relative;
}

.org-why-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 3px;
  background: var(--red);
  border-radius: 2px;
  transition: width var(--transition);
}

.org-why-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--red);
}

.org-why-card:hover::after {
  width: 60px;
}

.org-why-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 22px;
  color: var(--white);
  font-size: 1.8rem;
  transition: all var(--transition);
  box-shadow: var(--shadow-red);
}

.org-why-card:hover .org-why-icon {
  background: var(--yellow);
  color: var(--dark);
  transform: scale(1.08);
  box-shadow: 0 6px 24px rgba(244, 210, 41, 0.35);
}

.org-why-card h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
  text-transform: uppercase;
}

.org-why-card p {
  font-size: 0.92rem;
  color: var(--gray);
  line-height: 1.65;
}

/* ═══════════════════════════════════════
   ORGANIZASYONLAR — CTA SECTION
   ═══════════════════════════════════════ */
.org-cta-section {
  background: linear-gradient(135deg, var(--red) 0%, var(--red-darker) 100%);
  padding: 70px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.org-cta-section::before {
  content: '';
  position: absolute;
  top: -50%; right: -10%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(244, 210, 41, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.org-cta-content {
  position: relative;
  z-index: 2;
}

.org-cta-quote {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 12px;
}

.org-cta-content h2 {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--white);
  text-transform: uppercase;
  margin-bottom: 32px;
  letter-spacing: -0.3px;
}

.org-cta-phone {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: var(--yellow);
  color: var(--dark);
  padding: 18px 44px;
  border-radius: var(--radius-xl);
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 800;
  text-decoration: none;
  transition: all var(--transition);
  box-shadow: 0 6px 28px rgba(244, 210, 41, 0.35);
  letter-spacing: 0.5px;
}

.org-cta-phone i {
  font-size: 1.3rem;
  animation: phoneRing 1.5s ease-in-out infinite;
}

@keyframes phoneRing {
  0%, 100% { transform: rotate(0deg); }
  10% { transform: rotate(-12deg); }
  20% { transform: rotate(12deg); }
  30% { transform: rotate(-8deg); }
  40% { transform: rotate(8deg); }
  50% { transform: rotate(0deg); }
}

.org-cta-phone:hover {
  transform: translateY(-4px) scale(1.04);
  box-shadow: 0 10px 36px rgba(244, 210, 41, 0.5);
  background: var(--yellow-light);
}

/* ═══════════════════════════════════════
   ORGANIZASYONLAR RESPONSIVE
   ═══════════════════════════════════════ */
@media (max-width: 1024px) {
  .org-grid { grid-template-columns: repeat(2, 1fr); }
  .org-why-grid { grid-template-columns: repeat(3, 1fr); }
  .page-hero-content h1 { font-size: 2.2rem; }
}

@media (max-width: 768px) {
  .page-hero { padding: 60px 0 50px; }
  .page-hero-content h1 { font-size: 1.8rem; }
  .page-hero-content p { font-size: 1rem; }
  .org-grid { grid-template-columns: 1fr; gap: 20px; }
  .org-card { padding: 28px 22px 26px; }
  .org-why-grid { grid-template-columns: 1fr; gap: 20px; }
  .org-why-card { padding: 30px 24px; }
  .org-cta-section { padding: 50px 0; }
  .org-cta-content h2 { font-size: 1.6rem; }
  .org-cta-phone { font-size: 1.15rem; padding: 16px 32px; }
}

@media (max-width: 480px) {
  .page-hero { padding: 44px 0 36px; }
  .page-hero-content h1 { font-size: 1.5rem; }
  .page-hero-content p { font-size: 0.9rem; }
  .org-card-icon { width: 60px; height: 60px; font-size: 1.3rem; }
  .org-cta-content h2 { font-size: 1.35rem; }
  .org-cta-phone { font-size: 1rem; padding: 14px 26px; gap: 10px; }
}

/* ═══════════════════════════════════════
   MODERN VIDEO MENU
   ═══════════════════════════════════════ */
.modern-menu-section {
  position: relative;
  overflow: hidden;
  padding: 120px 0 100px;
  background: var(--dark);
}

.menu-video-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translateX(-50%) translateY(-50%);
  z-index: 0;
  object-fit: cover;
}

.menu-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 1;
}

.menu-board {
  background: rgba(15, 15, 15, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: 24px;
  padding: 50px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6);
  max-width: 900px;
  margin: 0 auto;
}

.menu-board-header {
  display: flex;
  justify-content: flex-end;
  border-bottom: 2px solid rgba(255, 255, 255, 0.2);
  padding-bottom: 15px;
  margin-bottom: 30px;
}

.menu-col-title {
  flex: 1;
}

.menu-col-price {
  width: 100px;
  text-align: right;
  color: var(--yellow);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.1rem;
  letter-spacing: 2px;
}

.menu-category {
  margin-bottom: 50px;
}

.category-title {
  color: var(--white);
  font-size: 1.8rem;
  margin-bottom: 25px;
  display: flex;
  align-items: center;
  gap: 12px;
  position: relative;
  padding-left: 20px;
}

.category-title i {
  color: var(--yellow);
}

.category-title::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 5px;
  height: 80%;
  background: var(--red);
  border-radius: 4px;
}

.menu-row {
  display: flex;
  align-items: center;
  padding: 20px 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  transition: background 0.3s ease, padding-left 0.3s ease;
}

.menu-row:hover {
  background: rgba(255, 255, 255, 0.08);
  padding-left: 20px;
  border-radius: 8px;
}

.menu-name {
  flex: 1;
  color: var(--white);
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
}

.menu-price-box {
  width: 100px;
  text-align: right;
  color: var(--yellow);
  font-weight: 800;
  font-size: 1.25rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
}

.menu-price-box.empty {
  color: rgba(255, 255, 255, 0.2);
  font-size: 1rem;
}

.menu-footer-note {
  text-align: center;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
  margin-top: 40px;
  border-top: 1px dashed rgba(255, 255, 255, 0.1);
  padding-top: 20px;
  letter-spacing: 1px;
}

@media (max-width: 768px) {
  .menu-board {
    padding: 30px 20px;
  }
  .menu-col-price, .menu-price-box {
    width: 70px;
    font-size: 1rem;
  }
  .category-title {
    font-size: 1.5rem;
  }
  .menu-name {
    font-size: 1rem;
  }
}
