/* Genel Reset ve Temel Ayarlar */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: #f4e2d8; /* Tahta sarısı tonları */
  color: #2c2c2c;
  font-family: 'Segoe UI', sans-serif;
}

/* Container */
.container {
  width: 90%;
  max-width: 1100px;
  margin: auto;
}

/* HEADER */
header {
  background: #222;
  color: white;
  padding: 1rem 0;
}

.header-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 24px;
  font-weight: 700;
}

/* NAV */
nav ul {
  display: flex;
  list-style: none;
}

nav ul li {
  margin-left: 20px;
}

nav ul li a {
  color: white;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

nav ul li a:hover {
  color: #cc4e19;
}

/* Hamburger Menü */
.menu-toggle {
  display: none;
  font-size: 28px;
  color: white;
  cursor: pointer;
}

/* HERO - SLIDER */
.hero-slider {
  position: relative;
  height: 450px;
  overflow: hidden;
  border-radius: 12px;
  margin-bottom: 3rem;
}

.slide {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  padding: 0 1rem;
  text-align: center;
}

.slide.active {
  opacity: 1;
  position: relative;
}

.slide-content h2 {
  font-size: 2.8rem;
  margin-bottom: 0.7rem;
  text-shadow: 2px 2px 8px rgba(0,0,0,0.6);
}

.slide-content p {
  font-size: 1.3rem;
  max-width: 700px;
  margin: 0 auto;
  text-shadow: 1px 1px 6px rgba(0,0,0,0.6);
}

/* Butonları hero-slider içine taşıdık */
.hero-buttons {
  position: absolute;
  bottom: 25px;
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  z-index: 10;
}

/* Butonlar */
.btn {
  padding: 0.8rem 2rem;
  border: none;
  border-radius: 25px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: background-color 0.3s ease;
}

.btn-primary {
  background-color: #cc4e19;
  color: white;
  margin-right: 1rem;
}

.btn-primary:hover {
  background-color: #a63e00;
}

.btn-secondary {
  background-color: #f4b84f;
  color: #5a3d1b;
}

.btn-secondary:hover {
  background-color: #d49c26;
}

/* HAKKIMIZDA */
#about {
  padding: 3rem 0;
}

#about h2 {
  color: #cc4e19;
  margin-bottom: 1rem;
}

#about p {
  font-size: 1.1rem;
  color: #5a3d1b;
}

/* MENÜ */
#menu {
  padding: 3rem 0;
}

#menu h2 {
  color: #cc4e19;
  margin-bottom: 2rem;
  text-align: center;
}

/* Menü Kartları */
.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.8rem;
}

.menu-item {
  background: #fff7ee;
  border-radius: 12px;
  padding: 1rem;
  text-align: center;
  box-shadow: 0 3px 6px rgb(0 0 0 / 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.menu-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 6px 12px rgb(0 0 0 / 0.2);
}

.menu-item img {
  width: 100%;
  border-radius: 12px;
  object-fit: cover;
  height: 140px;
}

.menu-item h3 {
  margin: 0.8rem 0 0.3rem 0;
  color: #cc4e19;
}

.menu-item p {
  font-size: 0.95rem;
  color: #5a3d1b;
}

.price {
  font-weight: 700;
  margin-top: 0.7rem;
  font-size: 1.1rem;
  color: #a63e00;
}

.menu-item button {
  margin-top: 1rem;
  padding: 0.5rem 1.3rem;
  border: none;
  border-radius: 20px;
  background-color: #cc4e19;
  color: white;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.menu-item button:hover {
  background-color: #a63e00;
}

/* İLETİŞİM */
#contact {
  padding: 3rem 0;
}

#contact h2 {
  color: #cc4e19;
  margin-bottom: 2rem;
  text-align: center;
}

/* İletişim bölümü düzeni */
.contact-content {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
}

.contact-info {
  flex: 1 1 300px;
  color: #5a3d1b;
  font-size: 1.05rem;
}

.contact-info p {
  margin-bottom: 1rem;
}

.contact-info a {
  color: #cc4e19;
  text-decoration: none;
}

.contact-info a:hover {
  text-decoration: underline;
}

.contact-form {
  flex: 1 1 350px;
  display: flex;
  flex-direction: column;
}

.contact-form input,
.contact-form textarea {
  padding: 0.7rem;
  margin-bottom: 1rem;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-size: 1rem;
  resize: vertical;
}

.contact-form button {
  padding: 0.8rem;
  background-color: #cc4e19;
  color: white;
  border: none;
  border-radius: 25px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.contact-form button:hover {
  background-color: #a63e00;
}

/* FOOTER */
footer {
  background: #222;
  color: white;
  padding: 1.5rem 0;
  text-align: center;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  max-width: 1100px;
  margin: auto;
  gap: 1rem;
}

.social-icons a {
  color: white;
  margin-left: 1rem;
  font-size: 1.4rem;
  transition: color 0.3s ease;
}

.social-icons a:hover {
  color: #cc4e19;
}

/* Responsive Tasarım */
@media (max-width: 768px) {
  nav ul {
    display: none;
    flex-direction: column;
    background: #222;
    padding: 1rem 0;
  }

  nav.active ul {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }

  .header-flex {
    flex-wrap: wrap;
  }

  .contact-content {
    flex-direction: column;
  }

  .footer-content {
    flex-direction: column;
  }
}

/* === Ziyaretçi Yorumları Bölümü === */

.testimonials {
  background-color: #fff5eb;
  padding: 60px 0;
  text-align: center;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.testimonial-card {
  background-color: #fff;
  border: 1px solid #f0d7b4;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.testimonial-card p {
  font-style: italic;
  color: #333;
}

.testimonial-card h4 {
  margin-top: 15px;
  color: #a0522d;
}
.marquee-banner {
  background-color: #a0522d;
  color: #fff;
  padding: 10px 0;
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  border-bottom: 2px solid #8b4513;
}
.marquee-banner {
  background-color: #a0522d;
  color: #fff;
  overflow: hidden;
  white-space: nowrap;
  box-sizing: border-box;
  padding: 10px 0;
  position: relative;
  border-bottom: 2px solid #8b4513;
}

.marquee-banner p {
  display: inline-block;
  padding-left: 100%;
  animation: marquee 15s linear infinite;
  font-weight: bold;
  font-size: 18px;
}

@keyframes marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-100%); }
}
footer {
  background-color: #a0522d;
  color: #fff;
  padding: 12px 16px; /* Daha az padding */
  font-size: 14px;    /* Yazı küçült */
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  box-sizing: border-box;
  position: relative; /* Normal flowda kalsın */
  bottom: 0;
  width: 100%;
  min-height: 40px; /* Çok yüksek olmasın */
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.social-icons a img {
  width: 24px; /* Küçük ikon */
  height: 24px;
}

.social-icons a {
  margin-left: 10px;
}

@media (max-width: 600px) {
  footer {
    flex-direction: column;
    text-align: center;
    padding: 10px 8px;
    font-size: 13px;
  }
  .footer-content {
    flex-direction: column;
    gap: 8px;
  }
}
.specials-section {
  background-color: #fff5eb;
  padding: 50px 20px;
  text-align: center;
}

.specials-section h2 {
  color: #a0522d;
  margin-bottom: 30px;
}

.special-card {
  max-width: 400px;
  margin: 0 auto;
  border: 1px solid #d7bfae;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  text-align: left;
}

.special-card img {
  width: 100%;
  height: auto;
  display: block;
}

.special-info {
  padding: 20px;
}

.special-info h3 {
  margin: 0 0 10px;
  color: #5a3e1b;
}

.special-info p {
  font-size: 16px;
  color: #333;
}

.price {
  display: inline-block;
  margin-top: 15px;
  color: #a0522d;
  font-weight: bold;
  font-size: 20px;
}
.language-switcher {
  display: inline-block;
  margin-left: 20px;
}

.language-switcher button {
  background: transparent;
  border: none;
  color: #fff;
  font-weight: bold;
  margin: 0 5px;
  cursor: pointer;
  font-size: 16px;
  padding: 5px 10px;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

.language-switcher button.active,
.language-switcher button:hover {
  background-color: #a0522d;
  color: #fff;
}
.faq-section {
  background-color: #fdf6e3; /* Hafif tahta sarısı gibi */
  padding: 3rem 0;
}

.faq-section h2 {
  text-align: center;
  margin-bottom: 2rem;
  color: #5a4d3f;
}

.faq-item {
  max-width: 800px;
  margin: 0 auto 1rem auto;
  border: 1px solid #d2c9b8;
  border-radius: 5px;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  background-color: #e3d6bb;
  border: none;
  padding: 1rem 1.5rem;
  text-align: left;
  font-weight: 600;
  font-size: 1.1rem;
  cursor: pointer;
  color: #3b2f23;
  transition: background-color 0.3s ease;
}

.faq-question:hover,
.faq-question.active {
  background-color: #cfc1a6;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  background-color: #f8f1de;
  padding: 0 1.5rem;
  transition: max-height 0.4s ease;
  color: #4a3c2f;
}

.faq-answer p {
  margin: 1rem 0;
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
/* Menü Arama Kutusu */
#menu-search {
  width: 100%;
  max-width: 400px;
  padding: 10px 15px;
  margin-bottom: 25px;
  border: 2px solid #cc4e19; /* Sitenin turuncu/altın tonlarından */
  border-radius: 30px;
  font-size: 16px;
  outline: none;
  transition: border-color 0.3s ease;
}

#menu-search:focus {
  border-color: #a63e00;
  box-shadow: 0 0 8px rgba(198, 78, 25, 0.6);
}

/* Menü Grid */
.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 25px;
}

/* Menü Kartları */
.menu-item {
  background: #fff7ee;
  border-radius: 15px;
  padding: 18px 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: default;
}

.menu-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.menu-item h3 {
  margin-bottom: 10px;
  color: #cc4e19;
  font-size: 1.3rem;
}

.menu-item p {
  font-size: 1rem;
  color: #5a3d1b;
  line-height: 1.4;
}

.price {
  display: inline-block;
  margin-top: 12px;
  font-weight: 700;
  font-size: 1.2rem;
  color: #a63e00;
}
/* Tema butonu */
.theme-toggle button {
  background: none;
  border: none;
  color: white;
  font-size: 24px;
  cursor: pointer;
  margin-left: 20px;
}

/* Koyu tema */
body.dark {
  background-color: #1e1e1e;
  color: #eee;
}

body.dark header,
body.dark footer {
  background-color: #111;
  color: #fff;
}

body.dark nav ul li a {
  color: #ccc;
}

body.dark nav ul li a:hover {
  color: #f39c12;
}

body.dark .menu-item,
body.dark .special-card,
body.dark .testimonial-card,
body.dark .faq-item {
  background-color: #2c2c2c;
  color: #ddd;
  border-color: #444;
}

body.dark .menu-item h3,
body.dark .special-info h3 {
  color: #f39c12;
}

body.dark .btn-primary {
  background-color: #f39c12;
  color: #000;
}
#scrollToTopBtn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 99;
  background-color: #cc4e19;
  color: white;
  border: none;
  padding: 12px 18px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 20px;
  display: none;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

#scrollToTopBtn:hover {
  background-color: #a63e00;
}
#events {
  background-color: #fff5eb;
  padding: 50px 20px;
  text-align: center;
}

#events h2 {
  color: #cc4e19;
  margin-bottom: 20px;
}

.event-list {
  list-style: none;
  padding: 0;
  font-size: 1.1rem;
  color: #333;
}

.event-list li {
  margin-bottom: 10px;
}
.popup-overlay {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.85);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease;
}

.popup-overlay.active {
  opacity: 1;
  visibility: visible;
}

.popup-content {
  background-color: #fff;
  color: #222;
  padding: 40px 30px;
  border-radius: 10px;
  text-align: center;
  max-width: 400px;
  width: 90%;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
  animation: popfade 0.5s ease;
}

.popup-content h2 {
  font-size: 28px;
  color: #a63e00;
  margin-bottom: 10px;
}

.popup-content p {
  font-size: 16px;
  color: #444;
  margin-bottom: 20px;
}

.popup-content button {
  background-color: #cc4e19;
  color: #fff;
  padding: 10px 20px;
  font-weight: bold;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.popup-content button:hover {
  background-color: #a63e00;
}

@keyframes popfade {
  from {
    transform: scale(0.9);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}
.instagram-gallery {
  background-color: #fff9f5;
  padding: 3rem 1rem;
  text-align: center;
}

.instagram-gallery h2 {
  font-size: 2rem;
  color: #cc4e19;
  margin-bottom: 2rem;
}

.insta-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 15px;
}

.insta-grid img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  transition: transform 0.3s ease;
}

.insta-grid img:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
.highlighted-link {
  background-color: #cc4e19;  /* Koyu turuncu / altın rengi tonunda */
  color: white !important;    /* Yazıyı beyaz yap */
  padding: 6px 12px;          /* İç boşluk */
  border-radius: 6px;         /* Hafif yuvarlak köşeler */
  font-weight: 700;           /* Kalın yazı */
  box-shadow: 0 2px 6px rgba(204, 78, 25, 0.6); /* Hafif gölge */
  transition: background-color 0.3s ease;
}

.highlighted-link:hover {
  background-color: #a63e00; /* Üzerine gelince koyu ton */
  box-shadow: 0 4px 10px rgba(166, 62, 0, 0.7);
  text-decoration: none;
}
.greeting-message {
  font-size: 1.3rem;
  font-weight: bold;
  color: #cc4e19;
  text-align: center;
  margin: 1rem auto 2rem auto;
}
.logo-img {
  width: 50px;
  height: 50px;
  object-fit: contain;
  border-radius: 8px; /* İsteğe bağlı */
}
.logo {
  color: white;
}

.menu-toggle {
  color: white;
  font-size: 28px;
  cursor: pointer;
  user-select: none;
}

#navbar ul li a {
  color: white;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

#navbar ul li a:hover {
  color: #cc4e19;
}
/* === MENÜ PDF GÖRSELİ === */
.menu-pdf-box {
  text-align: center;
  margin-top: 2.5rem;
  background-color: #fff3e0;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.menu-pdf-text {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  color: #5a3e1b;
  font-weight: 500;
}

.menu-pdf-btn {
  background-color: #cc4e19;
  color: #fff;
  padding: 0.9rem 2rem;
  border-radius: 30px;
  font-weight: bold;
  font-size: 1.1rem;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
}

.menu-pdf-btn:hover {
  background-color: #a63e00;
  transform: scale(1.05);
}
.hero-logo-section {
  text-align: center;
  margin-top: 2rem;
  animation: fadeIn 2s ease;
}

.hero-logo {
  width: 120px;
  height: auto;
  filter: drop-shadow(0 0 5px rgba(0,0,0,0.4));
}

@keyframes fadeIn {
  from { opacity: 0; transform: scale(0.9); }
  to { opacity: 1; transform: scale(1); }
}
.hero-logo {
  width: 180px; /* BÜYÜTTÜK */
  height: auto;
  margin-bottom: 1rem;
  filter: drop-shadow(0 0 6px rgba(0,0,0,0.4));
}
/* Temaya göre gövde rengi */
body.dark-mode {
  background-color: #121212;
  color: #f0f0f0;
}

/* Tema butonu animasyonlu emoji değişimi için */
.theme-toggle button {
  transition: transform 0.3s ease;
}
.theme-toggle button:hover {
  transform: scale(1.2);
}
.catering-section {
  background-color: #fff8f0;
  padding: 60px 20px;
  color: #3d2e1e;
  text-align: center;
}

.catering-section h2 {
  font-size: 2rem;
  color: #a63e00;
  margin-bottom: 20px;
}

.catering-section p {
  font-size: 1.1rem;
  margin-bottom: 20px;
}

.catering-list {
  list-style: none;
  padding: 0;
  margin: auto;
  margin-bottom: 30px;
  max-width: 600px;
  text-align: left;
  color: #444;
  line-height: 1.6;
}

.catering-list li {
  margin: 10px 0;
}

.btn-purple {
  background-color: #a63e00;
  color: white;
  padding: 14px 24px;
  font-size: 1rem;
  font-weight: bold;
  border: none;
  border-radius: 8px;
  text-decoration: none;
  display: inline-block;
  transition: background-color 0.3s ease;
}

.btn-purple:hover {
  background-color: #cc4e19;
}
.catering-section {
  background-color: #fff9f0;
  padding: 60px 20px;
  color: #3d2e1e;
  text-align: center;
  font-family: 'Segoe UI', sans-serif;
}

.catering-section h2 {
  font-size: 2rem;
  color: #a63e00;
  margin-bottom: 20px;
}

.catering-section p {
  font-size: 1.1rem;
  margin-bottom: 25px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.catering-list {
  list-style: none;
  padding: 0;
  margin: 0 auto 30px auto;
  max-width: 500px;
  text-align: left;
}

.catering-list li {
  margin: 12px 0;
  font-size: 1rem;
}

.catering-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-catering {
  background-color: #a63e00;
  color: white;
  padding: 12px 20px;
  font-weight: bold;
  border-radius: 8px;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.btn-catering:hover {
  background-color: #cc4e19;
}
/* TOPLU YEMEK & CATERING BÖLÜMÜ */
.catering-section {
  background: linear-gradient(to bottom, #fff9f3, #fef3e6);
  padding: 70px 20px;
  text-align: center;
  font-family: 'Segoe UI', sans-serif;
  border-top: 3px solid #a63e00;
  border-bottom: 3px solid #a63e00;
}

.catering-section h2 {
  font-size: 2.4rem;
  color: #a63e00;
  margin-bottom: 20px;
  text-shadow: 1px 1px #ffd9c2;
}

.catering-section p {
  font-size: 1.15rem;
  color: #333;
  margin: 0 auto 25px auto;
  max-width: 700px;
  line-height: 1.7;
}

.catering-list {
  list-style: none;
  padding: 0;
  margin: 0 auto 30px auto;
  max-width: 500px;
  text-align: left;
}

.catering-list li {
  background-color: #fff;
  margin: 10px 0;
  padding: 12px 16px;
  border-left: 5px solid #a63e00;
  border-radius: 8px;
  font-size: 1rem;
  color: #4d3a2d;
  box-shadow: 0 2px 6px rgba(0,0,0,0.08);
  transition: all 0.2s ease;
}

.catering-list li:hover {
  background-color: #fff4e8;
}

.catering-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
}

.btn-catering {
  background-color: #a63e00;
  color: #fff;
  padding: 12px 22px;
  font-size: 1rem;
  font-weight: bold;
  text-decoration: none;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: background-color 0.3s ease, transform 0.2s;
}

.btn-catering:hover {
  background-color: #cc4e19;
  transform: scale(1.03);
}

.call-btn {
  background-color: #444;
}

.call-btn:hover {
  background-color: #000;
}
