/* RESET & BASE */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
:root {
  --btn-radius: 8px;
  --btn-shadow: 0 3px 8px rgba(0,0,0,0.25);
  --btn-speed: 0.25s;
  --color-bg: #181514;
  --color-text: #f5efe0;
  --color-primary: #d4af37;
  --color-primary-ink: #181514;
  --color-accent: #c97b3f;
  --color-border: rgba(245,239,224,0.4);
}
body {
  font-family: Arial, sans-serif;
  background: var(--color-bg);
  color: var(--color-text);
  line-height: 1.5;
  scroll-behavior: smooth;
}

/* HEADER */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  background: rgba(32,28,27,0.95);
  backdrop-filter: blur(6px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.8rem 1.2rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  transition: background 0.3s ease;
}
body.scrolled .site-header {
  background: rgba(32,28,27,0.6);
}
.logo-link {
  text-decoration: none;
  color: var(--color-text);
  font-size: 1.8rem;
  font-weight: bold;
}
.logo-link:hover {
  color: var(--color-primary);
}
nav ul {
  display: flex;
  gap: 1rem;
  list-style: none;
}
.nav-btn {
  padding: 0.5rem 0.9rem;
  border-radius: 6px;
  font-weight: 600;
  color: var(--color-text);
  border: 1px solid transparent;
  transition: all var(--btn-speed) ease;
}
.nav-btn:hover {
  background: var(--color-primary);
  color: var(--color-primary-ink);
  border-color: var(--color-primary);
  transform: translateY(-2px);
}
.nav-btn:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(0,0,0,0.4),
              0 0 0 6px rgba(212,175,55,0.6);
}
.lang-switch {
  margin-left: auto;
}
.lang-btn {
  background: transparent;
  color: var(--color-text);
  border: 1px solid var(--color-border);
  padding: .45rem .8rem;
  border-radius: 6px;
  font-weight: 600;
}
.lang-btn:hover {
  background: var(--color-primary);
  color: var(--color-primary-ink);
}

/* HERO */
.hero-fixed {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  height: 100vh;
  z-index: -1;
  overflow: hidden;
}
.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.hero {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero-content {
  max-width: 600px;
  padding: 1rem;
}
.hero-content h2 {
  font-size: clamp(1.8rem, 5vw, 2.8rem);
  color: var(--color-primary);
  text-shadow: 0 2px 6px rgba(0,0,0,0.6);
}
.hero-content p {
  font-size: 1.1rem;
  margin: 1rem 0 1.5rem;
}
.btn {
  background: var(--color-primary);
  color: var(--color-primary-ink);
  padding: 0.8rem 1.5rem;
  border-radius: var(--btn-radius);
  font-weight: 600;
  text-decoration: none;
  transition: opacity 0.2s;
}
.btn:hover {
  opacity: 0.85;
}

/* PAGE CONTENT */
.page-content {
  position: relative;
  z-index: 1;
  padding-top: 100vh;
}

/* DELIVERY NOTE */
.delivery-note {
  text-align: center;
  padding: 0.75rem 1rem;
  background: rgba(32, 28, 27, 0.7);
  font-style: italic;
}

/* MENU */
#menu h2,
#about h2,
#gallery h2,
#reservation h2,
#contact h2 {
  text-align: center;
  margin: 2rem 0 1rem;
}
.menu-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  margin: 1rem;
}
.tab-btn {
  background: rgba(255,255,255,0.05);
  color: var(--color-text);
  border: 1px solid var(--color-border);
  border-radius: 999px;
  padding: .5rem 1rem;
  box-shadow: none;
}
.tab-btn.active {
  background: var(--color-primary);
  color: var(--color-primary-ink);
  border-color: var(--color-primary);
  box-shadow: var(--btn-shadow);
}
.menu-content {
  padding: 1rem;
  max-width: 1200px;
  margin: 0 auto;
}
.tab-content {
  display: none;
}
.tab-content.active {
  display: block;
}
.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

/* CARD */
.card {
  background: rgba(32, 28, 27, 0.6);
  padding: 1rem;
  border-radius: 6px;
  text-align: center;
  color: var(--color-text);
  box-shadow: 0 2px 4px rgba(0,0,0,0.2);
  transition: transform 0.2s;
}
.card:hover {
  transform: scale(1.03);
}
.card h3 {
  margin: 0.5rem 0;
}
.item-description {
  font-size: 0.9rem;
  line-height: 1.4;
}
.menu-thumb {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 6px;
  margin-bottom: 0.5rem;
  transition: transform 0.3s ease;
}
.menu-thumb:hover {
  transform: scale(1.05);
}

/* GALLERY */
.slideshow-track {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  padding: 1rem;
  scroll-snap-type: x mandatory;
}
.slide {
  flex: 0 0 180px;
  height: 120px;
  scroll-snap-align: center;
}
.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 6px;
}

/* LIGHTBOX */
.lightbox {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s;
  z-index: 10000;
}
.lightbox.open {
  opacity: 1;
  visibility: visible;
}
.lightbox-img {
  max-width: 90%;
  max-height: 80%;
  border-radius: 4px;
}
.lightbox .close {
  position: absolute;
  top: 2rem;
  right: 2rem;
  font-size: 2rem;
  color: var(--color-text);
  cursor: pointer;
}

/* REZERVASYON */
.reservation-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 400px;
  margin: 0 auto;
}
.reservation-form input,
.reservation-form textarea {
  padding: 0.75rem;
  border: 1px solid #ccc;
  border-radius: 4px;
}
.reservation-form button {
  background: var(--color-accent);
  color: #fff;
  padding: 0.8rem;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: opacity 0.2s;
}
.reservation-form button:hover {
  opacity: 0.85;
}

/* FOOTER */
footer {
  text-align: center;
  padding: 2rem 1rem;
}
footer a {
  color: var(--color-text);
  text-decoration
  text-decoration: none;
}
footer a:hover {
  text-decoration: underline;
}

/* WHATSAPP FLOATING BUTTON */
.whatsapp-float {
  position: fixed;
  width: 55px;
  height: 55px;
  bottom: 20px;
  right: 20px;
  background-color: #25D366;
  color: white;
  border-radius: 50%;
  text-align: center;
  font-size: 28px;
  box-shadow: 0 3px 8px rgba(0,0,0,0.3);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.whatsapp-float:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(0,0,0,0.4);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  nav ul {
    flex-wrap: wrap;
    justify-content: center;
  }
  .menu-grid {
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  }
  .menu-thumb {
    height: 140px;
  }
  .slide {
    flex: 0 0 140px;
    height: 100px;
  }
}
@media (max-width: 480px) {
  .logo-link {
    font-size: 1.4rem;
  }
  .nav-btn {
    font-size: 0.9rem;
    padding: 0.4rem 0.7rem;
  }
  .hero-content h2 {
    font-size: 1.6rem;
  }
  .hero-content p {
    font-size: 1rem;
  }
  .btn {
    font-size: 0.95rem;
    padding: 0.6rem 1.2rem;
  }
}
.carousel-wrapper {
  overflow: hidden;
  width: 100%;
  max-width: 1000px;
  margin: auto;
  position: relative;
}

.carousel-track {
  display: flex;
  gap: 2rem;
  transition: transform 0.6s ease;
}

.carousel-item {
  flex: 0 0 200px;
  transform: scale(0.8);
  opacity: 0.6;
  transition: transform 0.5s ease, opacity 0.5s ease;
}

.carousel-item.active {
  transform: scale(1.1);
  opacity: 1;
}

.carousel-item img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.4);
}
.map-container {
  margin-top: 2rem;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.contact-item h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  color: var(--color-accent);
}

.contact-item a {
  color: var(--color-text);
  text-decoration: none;
}

.map-container {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  margin-bottom: 2rem;
}

footer {
  padding: 2rem 1rem;
  background: #111;
  color: #eee;
  text-align: center;
}
.carousel-wrapper {
  overflow: hidden;
  width: 100%;
  max-width: 1000px;
  margin: auto;
  position: relative;
}

.carousel-track {
  display: flex;
  gap: 2rem;
  transition: transform 0.6s ease;
  justify-content: center;
}

.carousel-item {
  flex: 0 0 200px;
  transform: scale(0.8);
  opacity: 0.6;
  transition: transform 0.5s ease, opacity 0.5s ease;
}

.carousel-item.active {
  transform: scale(1.1);
  opacity: 1;
}

.carousel-item img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.4);
}
.reservation-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  max-width: 800px;
  margin: auto;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-weight: bold;
  margin-bottom: 0.3rem;
}

.form-group input,
.form-group textarea {
  padding: 0.6rem;
  border-radius: 6px;
  border: 1px solid #ccc;
  font-size: 1rem;
}

.form-group textarea {
  resize: vertical;
  min-height: 80px;
}

.reservation-intro {
  text-align: center;
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
  color: #666;
}

.whatsapp-reserve {
  text-align: center;
  margin-top: 2rem;
}

@media (max-width: 768px) {
  .reservation-form {
    grid-template-columns: 1fr;
  }
}
.about-content {
  max-width: 800px;
  margin: auto;
  padding: 1rem;
  font-size: 1.1rem;
  line-height: 1.7;
  color: white;
  text-align: center;
}
