/* assets/css/style.css */

/* --- Temel Ayarlar ve Reset --- */
@import url("https://fonts.googleapis.com/css2?family=Oswald:wght@400;700&family=Roboto:wght@300;400;700&display=swap");

:root {
  --primary-color: #e44d26; /* Kırmızımsı turuncu - Döner ateşi rengi */
  --secondary-color: #333333; /* Koyu gri - Modern ve şık */
  --accent-color: #ffc107; /* Amber - Lezzet ve canlılık */
  --text-color: #444444;
  --light-bg: #f9f9f9;
  --dark-bg: #222222;
  --white: #ffffff;
  --border-color: #e0e0e0;

  --font-heading: "Oswald", sans-serif;
  --font-body: "Roboto", sans-serif;

  --header-height: 80px;
  --section-padding: 80px 0;
  --container-width: 1200px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  line-height: 1.6;
  color: var(--text-color);
  background-color: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: var(--primary-color);
  transition: color 0.3s ease;
}

a:hover {
  color: var(--secondary-color);
}

ul {
  list-style: none;
}

/* --- Genel Kapsayıcılar --- */
.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 20px;
}

.section-padding {
  padding: var(--section-padding);
}

.bg-light {
  background-color: var(--light-bg);
}

.text-center {
  text-align: center;
}

.mt-4 {
  margin-top: 40px;
}

/* --- Başlıklar ve Tipografi --- */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  color: var(--secondary-color);
  margin-bottom: 20px;
  line-height: 1.2;
}

h1 {
  font-size: 3.5em; /* 56px */
  text-transform: uppercase;
}

h2 {
  font-size: 2.8em; /* 45px */
  text-align: center;
  margin-bottom: 60px;
  position: relative;
  padding-bottom: 10px;
}

h2::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: var(--primary-color);
  border-radius: 2px;
}

h3 {
  font-size: 1.8em; /* 29px */
}

p {
  margin-bottom: 15px;
}

/* --- Butonlar --- */
.btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 5px;
  font-weight: 700;
  text-transform: uppercase;
  transition: all 0.3s ease;
  text-align: center;
  border: none;
  cursor: pointer;
  font-size: 1em;
}

.btn-primary {
  background-color: var(--primary-color);
  color: var(--white);
  border: 2px solid var(--primary-color);
}

.btn-primary:hover {
  background-color: var(--secondary-color);
  border-color: var(--secondary-color);
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

.btn-secondary {
  background-color: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
  background-color: var(--primary-color);
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

/* --- Header --- */
.main-header {
  background-color: var(--dark-bg);
  color: var(--white);
  padding: 15px 0;
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.main-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between; /* Logo, Nav ve Yeni Buton arasında boşluk bırakır */
}

.logo a {
  font-family: var(--font-heading);
  font-size: 2em; /* 32px */
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.main-nav {
  flex-grow: 1; /* Navigasyonun kalan alanı doldurmasını sağlar */
  justify-content: center; /* Navigasyon öğelerini ortalar */
  display: flex;
}

.main-nav .nav-list {
  display: flex;
  gap: 30px;
}

.main-nav .nav-list li a {
  color: var(--white);
  font-weight: 400;
  padding: 5px 0;
  position: relative;
}

.main-nav .nav-list li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary-color);
  transition: width 0.3s ease;
}

.main-nav .nav-list li a:hover::after,
.main-nav .nav-list li a.active::after {
  width: 100%;
}

/* Yeni Özel Dil Butonu */
.language-special-btn {
  background: linear-gradient(
    to right,
    var(--primary-color),
    #ff6b47
  ); /* Gradient arka plan */
  color: var(--white);
  border: none;
  padding: 12px 25px; /* Daha büyük padding */
  border-radius: 30px; /* Daha yuvarlak, pill şeklinde */
  font-weight: 700; /* Daha kalın font */
  font-size: 1.05em; /* Biraz daha büyük font */
  cursor: pointer;
  transition: all 0.3s ease;
  margin-left: 25px; /* Navigasyondan biraz daha uzaklaştır */
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3); /* Daha belirgin gölge */
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.language-special-btn:hover {
  background: linear-gradient(
    to right,
    var(--accent-color),
    #ffd700
  ); /* Hover'da farklı gradient */
  color: var(--secondary-color);
  transform: translateY(-3px) scale(1.02); /* Hafif yukarı kayma ve büyüme */
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4); /* Daha da belirgin gölge */
}

.hamburger-menu {
  display: none; /* Masaüstünde gizli */
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  z-index: 1001;
}

.hamburger-menu span {
  display: block;
  width: 30px;
  height: 3px;
  background-color: var(--white);
  margin: 6px 0;
  transition: all 0.3s ease;
}

/* Language Switcher Popup */
.language-popup {
  display: none; /* Hidden by default */
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10000;
  background-color: var(--white);
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  width: 280px; /* Slightly wider for better button spacing */
  text-align: center;
  border: 1px solid var(--border-color);
}

.language-popup .close-popup-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  background: none;
  border: none;
  font-size: 1.5em;
  cursor: pointer;
  color: var(--secondary-color);
  padding: 5px;
}

.language-popup h3 {
  font-size: 1.5em;
  margin-bottom: 20px;
  color: var(--primary-color);
}

.language-options {
  display: flex;
  flex-direction: column; /* Stack buttons vertically */
  gap: 10px;
}

.lang-option-btn {
  background-color: var(--primary-color);
  color: var(--white);
  border: none;
  padding: 10px 15px;
  border-radius: 5px;
  cursor: pointer;
  font-size: 1em;
  font-weight: 600;
  transition: all 0.3s ease;
  width: 100%; /* Full width within popup */
}

.lang-option-btn:hover {
  background-color: var(--secondary-color);
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

/* Overlay for popup */
.overlay {
  display: none; /* Hidden by default */
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 9999;
}

/* --- Ortak Hero Arka Planı ve Katmanı --- */
.common-hero-bg {
  position: relative;
  background: url("../images/çekya.jpg") no-repeat center center/cover; /* Yeni ortak görsel */
  overflow: hidden; /* İçeriğin taşmasını engelle */
}

.common-hero-bg::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6); /* Koyuluk katmanı */
  z-index: 1;
}

/* --- Hero Section (Ana Sayfa) --- */
.hero-section {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 20px;
}

.hero-content h1 {
  font-size: 4.5em; /* 72px */
  margin-bottom: 20px;
  color: var(--white);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-content p {
  font-size: 1.4em; /* 22px */
  margin-bottom: 40px;
  color: var(--white);
  line-height: 1.5;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

/* Hero Section Animasyonları */
@keyframes fadeInSlideUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-headline {
  animation: fadeInSlideUp 1s ease-out forwards;
  animation-delay: 0.2s;
  opacity: 0; /* Başlangıçta gizle */
}

.animate-text {
  animation: fadeInSlideUp 1s ease-out forwards;
  animation-delay: 0.5s;
  opacity: 0;
}

.animate-btn {
  animation: fadeInSlideUp 1s ease-out forwards;
  animation-delay: 0.8s;
  opacity: 0;
}

.animate-btn-alt {
  animation: fadeInSlideUp 1s ease-out forwards;
  animation-delay: 0.3s; /* popüler lezzetler butonu için farklı delay */
  opacity: 0;
}

/* Page Hero (Diğer Sayfalar için) */
.page-hero {
  height: 40vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white);
  padding-top: var(--header-height); /* Header yüksekliği kadar boşluk */
}

.page-hero .container {
  position: relative;
  z-index: 2;
}

.page-hero h1 {
  font-size: 3.5em;
  color: var(--white);
  margin-bottom: 10px;
}

.page-hero p {
  font-size: 1.2em;
  color: var(--white);
}

/* menu-hero ve contact-hero'daki ayrı arka plan tanımlamaları kaldırıldı */

/* --- About Us Section --- */
.about-content {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap; /* Mobil için sarma */
}

.about-text {
  flex: 1;
  min-width: 300px;
}

.about-text p {
  font-size: 1.1em;
  line-height: 1.8;
}

.about-image {
  flex: 1;
  min-width: 300px;
  text-align: center;
}

.about-image img {
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.5s ease;
}

.about-image img:hover {
  transform: translateY(-5px) scale(1.02);
}

/* --- Popular Items Section / Menu Grid --- */
.item-grid,
.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  padding-top: 20px;
}

.item-card,
.menu-item {
  background-color: var(--white);
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  text-align: center;
  padding-bottom: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.item-card:hover,
.menu-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

.item-card img,
.menu-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  margin-bottom: 20px;
}

.item-card h3,
.menu-item h3 {
  font-size: 1.5em; /* 24px */
  margin-bottom: 10px;
  color: var(--primary-color);
}

.item-card p,
.menu-item p {
  font-size: 0.95em;
  color: var(--text-color);
  padding: 0 15px;
  margin-bottom: 15px;
}

.item-card .price,
.menu-item .price {
  font-size: 1.4em; /* 22px */
  font-weight: 700;
  color: var(--secondary-color);
  display: block;
  margin-top: 10px;
}

/* --- Why Us Section --- */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.feature-item {
  text-align: center;
  background-color: var(--white);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.07);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.feature-item .icon-large {
  font-size: 3em; /* 48px */
  color: var(--primary-color);
  margin-bottom: 20px;
}

.feature-item h3 {
  margin-bottom: 10px;
}

/* --- Testimonials Section --- */
.testimonial-slider {
  display: flex;
  overflow: hidden; /* JavaScript ile kaydırılacak */
  position: relative;
  max-width: 900px;
  margin: 0 auto 30px;
}

.testimonial-card {
  flex: 0 0 100%; /* Her kart 100% genişlikte */
  background-color: var(--white);
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: transform 0.5s ease-in-out;
}

.testimonial-card p {
  font-style: italic;
  font-size: 1.1em;
  line-height: 1.8;
  margin-bottom: 20px;
  color: var(--secondary-color);
}

.testimonial-card h4 {
  color: var(--primary-color);
  font-size: 1.2em;
  margin-bottom: 0;
}

.slider-nav {
  text-align: center;
}

.slider-nav button {
  background-color: var(--primary-color);
  color: var(--white);
  border: none;
  padding: 10px 15px;
  margin: 0 10px;
  border-radius: 5px;
  cursor: pointer;
  font-size: 1.2em;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.slider-nav button:hover {
  background-color: var(--secondary-color);
  transform: translateY(-2px);
}

/* --- Call To Action Section --- */
.call-to-action-section {
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
    url("../images/cta-bg.jpg") no-repeat center center/cover;
  color: var(--white);
  text-align: center;
  padding: 100px 20px;
}

.cta-content h2 {
  color: var(--white);
  font-size: 3em;
  margin-bottom: 20px;
}

.cta-content p {
  font-size: 1.3em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.cta-btn {
  padding: 18px 40px;
  font-size: 1.1em;
}

/* --- Menu Categories (Menü Sayfası) --- */
.menu-categories {
  text-align: center;
  margin-bottom: 50px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
}

.category-btn {
  background-color: var(--light-bg);
  color: var(--secondary-color);
  border: 2px solid var(--border-color);
  padding: 12px 25px;
  border-radius: 5px;
  cursor: pointer;
  font-size: 1em;
  font-weight: 600;
  transition: all 0.3s ease;
  text-transform: capitalize;
}

.category-btn:hover,
.category-btn.active {
  background-color: var(--primary-color);
  color: var(--white);
  border-color: var(--primary-color);
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* --- Contact Page Specifics --- */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 60px;
  align-items: flex-start;
}

.contact-info {
  background-color: var(--light-bg);
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.contact-info h2 {
  margin-top: 0;
  margin-bottom: 30px;
  text-align: left;
  font-size: 2em;
}

.contact-info h2::after {
  left: 0;
  transform: translateX(0);
}

.info-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
  gap: 15px;
}

.info-item i {
  font-size: 1.8em;
  color: var(--primary-color);
  min-width: 30px;
  text-align: center;
  margin-top: 3px;
}

.info-item p {
  margin-bottom: 0;
  font-size: 1.1em;
  color: var(--secondary-color);
}

.info-item ul {
  list-style: none;
  padding-left: 0;
}

.info-item ul li {
  margin-bottom: 5px;
  color: var(--text-color);
}

.contact-form {
  background-color: var(--white);
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.contact-form h2 {
  margin-top: 0;
  margin-bottom: 30px;
  text-align: left;
  font-size: 2em;
}

.contact-form h2::after {
  left: 0;
  transform: translateX(0);
}

.form-group {
  margin-bottom: 25px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: var(--secondary-color);
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="url"],
.form-group input[type="password"],
.form-group input[type="number"],
.form-group textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid var(--border-color);
  border-radius: 5px;
  font-family: var(--font-body);
  font-size: 1em;
  color: var(--text-color);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(var(--primary-color-rgb), 0.2);
  outline: none;
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-message {
  margin-top: 20px;
  padding: 15px;
  border-radius: 5px;
  font-weight: 600;
  display: none; /* JS ile gösterilecek */
}

.form-message.success {
  background-color: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}

.form-message.error {
  background-color: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}

.map-section {
  padding-bottom: var(--section-padding);
}

.map-container {
  height: 450px;
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* --- Footer --- */
.main-footer {
  background-color: var(--dark-bg);
  color: var(--white);
  padding: 60px 0 20px;
  font-size: 0.95em;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-info h3,
.footer-links h3,
.footer-social h3 {
  color: var(--white);
  margin-bottom: 20px;
  font-size: 1.3em;
}

.footer-info p {
  margin-bottom: 10px;
  line-height: 1.7;
}

.footer-info i {
  margin-right: 10px;
  color: var(--primary-color);
}

.footer-links ul li {
  margin-bottom: 10px;
}

.footer-links ul li a {
  color: var(--white);
  transition: color 0.3s ease;
  display: block;
}

.footer-links ul li a:hover {
  color: var(--primary-color);
  padding-left: 5px;
}

.footer-social a {
  color: var(--white);
  font-size: 1.5em;
  margin-right: 15px;
  transition: color 0.3s ease, transform 0.3s ease;
}

.footer-social a:hover {
  color: var(--primary-color);
  transform: translateY(-3px);
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* --- Scroll Animasyonları (Intersection Observer ile kontrol edilecek) --- */
.fade-in-on-scroll,
.scroll-slide-in-left,
.scroll-slide-in-right,
.scroll-scale-up,
.scroll-fade-in-up,
.section-title {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in-on-scroll.animate,
.scroll-slide-in-left.animate,
.scroll-slide-in-right.animate,
.scroll-scale-up.animate,
.scroll-fade-in-up.animate,
.section-title.animate {
  opacity: 1;
  transform: translateY(0);
}

.scroll-slide-in-left {
  transform: translateX(-50px);
}
.scroll-slide-in-left.animate {
  transform: translateX(0);
}

.scroll-slide-in-right {
  transform: translateX(50px);
}
.scroll-slide-in-right.animate {
  transform: translateX(0);
}

.scroll-scale-up {
  transform: scale(0.95);
}
.scroll-scale-up.animate {
  transform: scale(1);
}

/* --- Responsive Tasarım --- */

/* Tablet ve küçük masaüstü ekranlar (max-width: 992px) */
@media (max-width: 992px) {
  .main-header .container {
    flex-direction: row;
  }
  .main-nav .nav-list {
    gap: 20px;
  }

  h1 {
    font-size: 3em; /* 48px */
  }
  h2 {
    font-size: 2.2em; /* 35px */
  }
  .hero-content h1 {
    font-size: 3.5em; /* 56px */
  }
  .hero-content p {
    font-size: 1.2em; /* 19px */
  }

  .about-content {
    flex-direction: column;
    text-align: center;
  }
  .about-image {
    margin-top: 30px;
  }

  .item-grid,
  .menu-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }
  .contact-info,
  .contact-form {
    padding: 30px;
  }
  .contact-info h2,
  .contact-form h2 {
    text-align: center;
  }
  .contact-info h2::after,
  .contact-form h2::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .footer-info,
  .footer-links,
  .footer-social {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 20px;
    margin-bottom: 20px;
  }
  .footer-links ul {
    padding-left: 0;
  }
  .footer-links ul li a {
    padding-left: 0;
  }
  .footer-links ul li a:hover {
    padding-left: 0;
  }
  .footer-social a {
    margin: 0 10px;
  }
}

/* Mobil cihazlar (max-width: 768px) */
@media (max-width: 768px) {
  .main-header .container {
    flex-wrap: wrap;
    justify-content: space-between; /* Re-enable for mobile header */
  }
  .main-nav {
    order: 1; /* Hamburger menüyü logonun yanına taşı */
    margin-left: 0; /* Remove auto margin for mobile */
    justify-content: center; /* Center nav items when expanded */
    flex-basis: 100%; /* Take full width when expanded */
  }
  .main-nav .nav-list {
    display: none; /* Varsayılan olarak menüyü gizle */
    flex-direction: column;
    width: 100%;
    background-color: var(--dark-bg);
    position: absolute; /* Position relative to header */
    top: var(--header-height);
    left: 0;
    padding: 20px 0;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
    z-index: 999;
    transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
    transform: translateY(-100%);
    opacity: 0;
  }

  .main-nav .nav-list.active {
    display: flex;
    transform: translateY(0);
    opacity: 1;
  }

  .main-nav .nav-list li {
    text-align: center;
    margin: 10px 0;
  }

  .main-nav .nav-list li a {
    padding: 10px 0;
    font-size: 1.1em;
    width: 100%;
    display: block;
  }
  .main-nav .nav-list li a::after {
    display: none; /* Mobil menüde alt çizgi animasyonu kapalı */
  }

  /* Hamburger menü animasyonu */
  .hamburger-menu.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
  }
  .hamburger-menu.active span:nth-child(2) {
    opacity: 0;
  }
  .hamburger-menu.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
  }

  /* Mobil görünümde özel butonun stilini ayarla */
  .language-special-btn {
    margin-left: 0; /* Mobil menüde sol boşluğu kaldır */
    width: calc(100% - 40px); /* Menü genişliğine uyum sağla */
    margin-top: 10px; /* Diğer menü öğelerinden ayır */
    margin-bottom: 10px; /* Diğer menü öğelerinden ayır */
  }
}

/* Çok küçük ekranlar (max-width: 480px) */
@media (max-width: 480px) {
  .main-header {
    padding: 10px 0;
  }
  .logo a {
    font-size: 1.5em; /* 24px */
  }

  .hero-content h1 {
    font-size: 2em; /* 32px */
  }
  .hero-content p {
    font-size: 0.9em; /* 14px */
  }
  .btn {
    padding: 12px 25px;
    font-size: 0.9em;
  }

  h2 {
    font-size: 1.5em; /* 24px */
    margin-bottom: 30px;
  }
  h2::after {
    width: 60px;
  }

  .item-card img,
  .menu-item img {
    height: 200px;
  }

  .contact-info,
  .contact-form {
    padding: 25px;
  }
  .contact-info h2,
  .contact-form h2 {
    font-size: 1.5em;
  }

  .map-container {
    height: 300px;
  }
}
