:root {
  --bg-dark: #0c0b09;
  --bg-card: #151412;
  --color-gold: #c89c5e;
  --color-white: #ffffff;
  --color-gray: #a0a0a0;
  --font-heading: "Oswald", sans-serif;
  --font-body: "Inter", sans-serif;
  --font-script: "Great Vibes", cursive;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  overflow-x: hidden;
  width: 100%;
  position: relative;
}

body {
  background-color: #0c0b09; /* Sıcak koyu gri/kahve tonu */
  color: var(--color-white);
  font-family: var(--font-body);
  line-height: 1.6;
}

.site-wrapper {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}

/* Navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0; /* Header yüksekliği düşürüldü */
  border-bottom: 1px solid #2a2a2a;
}

.logo {
  display: flex;
  flex-direction: column;
  align-items: center; /* Merkezi hizalama */
  position: relative;
}

.logo-hastasina {
  font-family: var(--font-script);
  color: var(--color-gold);
  font-size: 3.5rem;
  line-height: 1;
  transform: rotate(-4deg);
  position: relative;
  z-index: 2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6);
  margin-bottom: -15px; /* KOKOREÇ'i yukarı çeker ve logo kutusunu daraltır */
}

.logo-kokorec {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  letter-spacing: 8px; /* Lüks marka görünümü */
  color: var(--color-white);
  margin-left: 8px; /* Harf aralığı kaynaklı optik kaymayı düzeltme */
  z-index: 1;
}

.icon-fire {
  color: var(--color-gray);
  font-size: 1rem;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 40px;
}

.hamburger-btn {
  display: none;
  background: none;
  border: none;
  color: var(--color-white);
  font-size: 1.5rem;
  cursor: pointer;
}

.nav-links {
  display: flex;
}

.drawer-header, .drawer-footer {
  display: none;
}

.drawer-items {
  display: flex;
  gap: 40px;
}

.drawer-items a {
  color: var(--color-white);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 1px;
  transition: color 0.3s ease;
}

.drawer-items a.active,
.drawer-items a:hover {
  color: var(--color-gold);
}

.nav-links a.active {
  position: relative;
}

.nav-links a.active::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 2px;
  background-color: var(--color-gold);
}

.btn-outline {
  background: transparent;
  color: var(--color-gold);
  border: 1px solid var(--color-gold);
  padding: 10px 24px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  border-radius: 4px;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  flex-shrink: 0;
}

@media (hover: hover) {
  .btn-outline:hover {
    background-color: var(--color-gold);
    color: var(--bg-dark);
  }
}
.btn-outline:active {
  background-color: var(--color-gold);
  color: var(--bg-dark);
}

/* Full bleed arka planlar için temel ayarlar */
.navbar,
.hero,
.menu-section,
.footer-section,
.bottom-bar {
  position: relative;
  z-index: 1;
}
.navbar {
  z-index: 50; /* Menünün alt kısımların altında kalmaması için */
}
.navbar::before,
.hero::before,
.menu-section::before,
.footer-section::before,
.bottom-bar::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  height: 100%;
  z-index: -1;
}

/* Her bölüme özel degradeler (Gradients) */
.navbar::before {
  background: linear-gradient(180deg, #050404 0%, #0c0b09 100%);
}
.hero::before {
  background:
    radial-gradient(
      circle at 50% 30%,
      rgba(200, 156, 94, 0.08) 0%,
      transparent 80%
    ),
    #0c0b09;
}
.menu-section::before {
  background:
    radial-gradient(
      circle at 90% 50%,
      rgba(200, 156, 94, 0.05) 0%,
      transparent 80%
    ),
    linear-gradient(180deg, #0c0b09 0%, #131210 15%, #131210 100%);
}
.footer-section::before {
  background:
    radial-gradient(circle at 10% 90%, rgba(200, 156, 94, 0.04) 0%, transparent 80%),
    linear-gradient(180deg, #0f0e0c 0%, #121110 20%, #121110 85%, #0c0b09 100%);
}
.bottom-bar::before {
  background: linear-gradient(90deg, #0c0b09 0%, #191815 50%, #0c0b09 100%);
}

/* Hero Section */
.hero {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 60px 0 40px 0; /* Reduced bottom padding to move next section up */
  min-height: 70vh;
}

.hero-content {
  flex: 1;
  max-width: 500px;
}

.hero-subtitle {
  color: var(--color-gold);
  font-size: 0.9rem;
  letter-spacing: 2px;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: 5rem;
  line-height: 1.1;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.white-text {
  color: var(--color-white);
}

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

.hero-description {
  color: var(--color-gray);
  font-size: 1.1rem;
  margin-bottom: 40px;
}

.hero-image-container {
  flex: 1.5;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-img {
  width: 100%;
  max-width: 800px;
  object-fit: cover;
  filter: drop-shadow(0px 20px 30px rgba(0, 0, 0, 0.8));
}

.kokorec-wrapper {
  position: relative;
  width: 100%;
  max-width: 800px;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 20px;
}

.fire-embers {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50%; /* Cover the bottom half of the image where embers are */
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  pointer-events: none;
}

/* Smoke Effect */
.smoke-container {
  position: absolute;
  bottom: 50%;
  width: 100%;
  height: 200px;
  z-index: 1;
  pointer-events: none;
}

.smoke {
  position: absolute;
  width: 100px;
  height: 100px;
  /* Donanım ivmeli, doğal bulanık degrade arka plan - filtre kullanımından çok daha hızlıdır */
  background: radial-gradient(
    circle,
    rgba(200, 200, 200, 0.12) 0%,
    rgba(200, 200, 200, 0.04) 40%,
    transparent 70%
  );
  border-radius: 50%;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  animation: smokeRise 3.5s infinite linear;
  opacity: 0;
  will-change: transform, opacity;
}

.smoke.s1 {
  animation-delay: 0s;
  left: 35%;
}
.smoke.s2 {
  animation-delay: 1.2s;
  left: 65%;
  width: 120px;
  height: 120px;
}
.smoke.s3 {
  animation-delay: 2.5s;
  left: 50%;
  width: 150px;
  height: 150px;
}
.smoke.s4 {
  animation-delay: 0.8s;
  left: 20%;
  width: 90px;
  height: 90px;
}
.smoke.s5 {
  animation-delay: 1.8s;
  left: 80%;
  width: 110px;
  height: 110px;
}

@keyframes smokeRise {
  0% {
    transform: translate(-50%, 0) scale(1);
    opacity: 0.8;
  }
  100% {
    transform: translate(-40%, -250px) scale(3.5);
    opacity: 0;
  }
}

/* Spark Effect */
.spark-container {
  position: absolute;
  bottom: 20%;
  width: 80%;
  height: 150px;
  z-index: 3;
  pointer-events: none;
}

.spark {
  position: absolute;
  bottom: 0;
  width: 5px;
  height: 5px;
  background-color: #ffb84d;
  border-radius: 50%;
  /* Daha küçük ve yormayan gölge */
  box-shadow: 0 0 4px #c89c5e;
  opacity: 0;
  animation: sparkRise 2s infinite ease-in;
  will-change: transform, opacity;
}

.spark:nth-child(1) {
  left: 20%;
  animation-duration: 2.1s;
  animation-delay: 0.2s;
}
.spark:nth-child(2) {
  left: 30%;
  animation-duration: 1.8s;
  animation-delay: 0.5s;
}
.spark:nth-child(3) {
  left: 45%;
  animation-duration: 2.3s;
  animation-delay: 0.1s;
}
.spark:nth-child(4) {
  left: 55%;
  animation-duration: 1.9s;
  animation-delay: 0.8s;
}
.spark:nth-child(5) {
  left: 70%;
  animation-duration: 2.2s;
  animation-delay: 0.4s;
}
.spark:nth-child(6) {
  left: 80%;
  animation-duration: 2s;
  animation-delay: 0.7s;
}
.spark:nth-child(7) {
  left: 40%;
  animation-duration: 1.7s;
  animation-delay: 0.3s;
}
.spark:nth-child(8) {
  left: 60%;
  animation-duration: 2.4s;
  animation-delay: 0.6s;
}

@keyframes sparkRise {
  0% {
    transform: translate(0, 0) scale(1);
    opacity: 1;
  }
  50% {
    transform: translate(15px, -60px) scale(0.8);
    opacity: 0.8;
  }
  100% {
    transform: translate(-10px, -120px) scale(0.2);
    opacity: 0;
  }
}

.ember-glow {
  position: absolute;
  bottom: 20%;
  width: 80%;
  height: 50px;
  background: radial-gradient(
    ellipse,
    rgba(200, 156, 94, 0.7) 0%,
    transparent 70%
  );
  filter: blur(25px);
  z-index: -1;
  animation: emberPulse 3s ease-in-out infinite alternate;
}

.hero-kokorec-img {
  width: 100%;
  max-width: 800px;
  z-index: 2;
  position: relative;
  filter: drop-shadow(0px 20px 30px rgba(0, 0, 0, 0.8));
  /* animation: rotateKokorec 15s linear infinite; */
}

@keyframes rotateKokorec {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes fireGlow {
  0% {
    filter: brightness(0.9) contrast(1.1);
  }
  100% {
    filter: brightness(1.2) contrast(1.2);
  }
}

@keyframes emberPulse {
  0% {
    opacity: 0.5;
    filter: blur(20px);
  }
  100% {
    opacity: 0.9;
    filter: blur(25px);
  }
}

.drag-indicator {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 60px;
  z-index: 3;
}


/* Menu Section */
.menu-section {
  padding: 40px 0 60px 0;
  border-top: 1px solid #2a2a2a;
}

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

.section-subtitle {
  color: var(--color-gold);
  font-size: 0.9rem;
  letter-spacing: 2px;
  margin-bottom: 5px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  letter-spacing: 2px;
}

.divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin-top: 10px;
}

.divider .line {
  width: 30px;
  height: 1px;
  background-color: var(--color-gold);
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 50px;
}

.menu-card {
  background-color: transparent;
  border: 1px solid #2a2a2a;
  border-radius: 8px;
  padding: 20px 15px;
  text-align: center;
  /* Giriş animasyonu başlangıç durumu */
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.5s ease, transform 0.5s ease, border-color 0.3s ease;
}

.menu-card.card-visible {
  opacity: 1;
  transform: translateY(0);
}

.img-container {
  width: 100%;
  height: 150px;
  margin-bottom: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.img-container img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  border-radius: 4px;
}

.card-title {
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 5px;
}

.card-price {
  color: var(--color-gold);
  font-weight: 600;
  font-size: 1.1rem;
}

.center-btn-wrapper {
  display: flex;
  justify-content: center;
}

/* Footer Section */
.footer-section {
  padding: 40px 0 0 0;
  border-top: 1px solid #2a2a2a;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
  gap: 40px;
}

.contact-info {
  flex: 1;
}

.info-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 25px;
}

.gold-icon {
  color: var(--color-gold);
  font-size: 1.2rem;
  margin-top: 5px;
}

.info-item p {
  color: var(--color-gray);
  font-size: 1.02rem; /* 1 piksel küçültüldü */
}

.map-container {
  flex: 1.5;
  text-align: center;
}

.map-title {
  font-family: var(--font-heading);
  letter-spacing: 2px;
  margin-bottom: 15px;
}

.map-iframe {
  width: 100%;
  height: 250px;
  border: none;
  border-radius: 8px;
  filter: invert(90%) hue-rotate(180deg) brightness(95%) contrast(90%);
}

.store-image-container {
  flex: 1.5;
}

.store-img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 8px;
}

.bottom-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  border-top: 1px solid #2a2a2a;
  color: var(--color-gray);
  font-size: 0.8rem;
}

.social-icons {
  display: flex;
  gap: 15px;
}

.social-icons a {
  color: var(--color-gold);
  text-decoration: none;
  font-size: 1.1rem;
  transition: color 0.3s ease;
}

.social-icons a:hover {
  color: var(--color-white);
}

/* Responsive */
@media (max-width: 1024px) {
  .menu-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .footer-content {
    flex-direction: column;
    align-items: stretch;
  }
}

@media (max-width: 768px) {
  .hero {
    flex-direction: column;
    text-align: center;
  }
  .hero-content {
    margin-bottom: 40px;
  }
  .hero-btn {
    margin: 0 auto;
  }
  .menu-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Mobil Görünüm: Header İçeriklerini Sığdırma ve Çekmece Menü */
  .site-wrapper {
    padding: 0 15px;
  }
  .nav-right {
    gap: 15px;
  }
  .hamburger-btn {
    display: block;
    position: relative;
    z-index: 10;
    padding: 10px; /* Tıklama alanını genişlettik */
  }
  .logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 5;
    align-items: center;
  }
  .nav-links {
    position: fixed;
    top: 0;
    left: 0; /* Her zaman left:0'da dur, konum transform ile yönetilir */
    right: auto;
    width: 250px;
    height: 100%;
    background-color: rgba(9, 8, 10, 0.95);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    display: flex !important;
    flex-direction: column;
    align-items: flex-start;
    padding: 0;
    gap: 0;
    /* left yerine transform kullanmak GPU hızlandırması sağlar — kasma olmaz */
    transform: translateX(-100%);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    border-right: 1px solid rgba(255, 255, 255, 0.05);
    z-index: 9999;
    box-shadow: 10px 0 30px rgba(0,0,0,0.5);
    will-change: transform;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    touch-action: pan-y;
  }
  .nav-links.active-menu {
    transform: translateX(0) !important;
  }
  
  .drawer-header {
    display: flex !important;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 30px 25px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  }
  .drawer-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .close-btn {
    background: transparent;
    border: none;
    color: var(--color-gray);
    font-size: 1.6rem;
    cursor: pointer;
    padding: 5px;
  }
  
  .drawer-items {
    display: flex !important;
    flex-direction: column;
    width: 100%;
    gap: 0;
    padding: 20px 0;
  }
  .drawer-items a {
    padding: 16px 25px;
    font-size: 1.1rem;
    color: var(--color-white);
    border-left: 3px solid transparent;
    transition: all 0.2s ease;
  }
  .drawer-items a:active {
    background: rgba(255,255,255,0.05);
    border-left-color: var(--color-gold);
    color: var(--color-gold);
  }
  .drawer-items a.active {
    border-left-color: var(--color-gold);
    color: var(--color-gold);
    background: linear-gradient(90deg, rgba(200, 156, 94, 0.1) 0%, transparent 100%);
  }
  .drawer-items a.active::after {
    display: none;
  }

  .drawer-footer {
    display: block !important;
    margin-top: auto;
    padding: 30px 25px;
    padding-bottom: calc(30px + env(safe-area-inset-bottom, 20px));
    width: 100%;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--color-gray);
    font-size: 0.9rem;
    line-height: 1.8;
  }
  .drawer-footer span {
    color: var(--color-gold);
    font-size: 1.3rem;
    font-weight: 600;
    font-family: var(--font-heading);
    letter-spacing: 2px;
  }
  
  .logo-hastasina {
    font-size: 2rem;
    line-height: 1;
    margin-bottom: -5px;
  }
  .logo-kokorec {
    font-size: 0.7rem;
    letter-spacing: 4px;
    margin-left: 4px;
  }
  .btn-outline.nav-btn .btn-text {
    display: none; /* Mobilde yazıyı gizle, sadece ikon kalsın */
  }
  .btn-outline.nav-btn {
    padding: 0;
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
    justify-content: center;
    border-radius: 8px; /* İkon butonu estetiği */
  }
}

/* 480px'de alt alta inmesini sağlayan kural kaldırılarak 2'li düzen (yan yana) korundu */

/* =========================================================
   MENU PAGE — Professional Card Design
   ========================================================= */

.menu-page-main {
  padding: 0 0 80px 0;
  position: relative;
  z-index: 1;
}

.menu-page-main::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  height: 100%;
  z-index: -2;
  background: 
    radial-gradient(circle at 15% 20%, rgba(200, 156, 94, 0.05) 0%, transparent 45%),
    radial-gradient(circle at 85% 65%, rgba(200, 156, 94, 0.04) 0%, transparent 55%),
    linear-gradient(180deg, #0c0b09 0%, #0f0e0c 50%, #0c0b09 100%);
  pointer-events: none;
}

/* ---- Menu Hero Banner ---- */
.menu-hero-banner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 0 50px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.menu-hero-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(200,156,94,0.07) 0%, transparent 60%);
  pointer-events: none;
}

.menu-hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.menu-hero-content .menu-bottom-cta {
  padding: 20px 0 10px 0;
}

.menu-hero-label {
  font-size: 0.82rem;
  letter-spacing: 4px;
  color: var(--color-gold);
  margin-bottom: 12px;
  font-family: var(--font-heading);
  opacity: 0.8;
}

.menu-hero-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1;
  margin-bottom: 16px;
}

.menu-hero-script {
  font-family: var(--font-script);
  font-size: 4rem;
  color: var(--color-gold);
  transform: rotate(-2deg);
  display: block;
  margin-bottom: -10px;
}

.menu-hero-bold {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  color: var(--color-white);
  letter-spacing: 6px;
  display: block;
}

.menu-hero-sub {
  color: var(--color-gray);
  font-size: 1rem;
  letter-spacing: 0.5px;
}

.menu-hero-flame {
  font-size: 7rem;
  color: #c89c5e;
  opacity: 1;
  position: relative;
  z-index: 0;
  margin-right: 24px;
  text-shadow:
    0 0 6px #c89c5e,
    0 0 15px rgba(166, 124, 70, 0.6),
    0 0 25px rgba(200, 156, 94, 0.3);
  animation: ctaFireBlaze 1.4s ease-in-out infinite alternate;
}

/* ---- Category Tabs ---- */
.menu-tabs-wrapper {
  position: sticky;
  top: 0;
  z-index: 40;
  background: linear-gradient(180deg, #09080a 80%, transparent 100%);
  padding: 16px 0 12px 0;
  margin-bottom: 20px;
}

.menu-tabs {
  display: flex;
  gap: 12px;
}

.menu-tab {
  background: transparent;
  border: 1px solid rgba(200,156,94,0.25);
  color: var(--color-gray);
  font-family: var(--font-heading);
  font-size: 0.85rem;
  letter-spacing: 2px;
  padding: 10px 22px;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

.menu-tab:hover {
  border-color: var(--color-gold);
  color: var(--color-gold);
}

.menu-tab.active {
  background: var(--color-gold);
  border-color: var(--color-gold);
  color: #09080a;
  font-weight: 700;
}

/* ---- Section Block ---- */
.menu-section-block {
  padding: 50px 0 40px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.menu-section-block:last-of-type {
  border-bottom: none;
}

.menu-section-header {
  margin-bottom: 36px;
}

.menu-section-title-wrap {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 8px;
}

.menu-cat-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(200,156,94,0.12);
  border-radius: 8px;
  color: var(--color-gold);
  font-size: 1.1rem;
}

.menu-section-title {
  font-family: var(--font-heading);
  font-size: 2rem;
  letter-spacing: 4px;
  color: var(--color-white);
}

.menu-section-desc {
  color: var(--color-gray);
  font-size: 0.92rem;
  margin-left: 54px;
  letter-spacing: 0.3px;
}

/* ---- Menu Cards Grid ---- */
.menu-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* ---- Individual Card ---- */
.menu-item-card {
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.35s cubic-bezier(0.25,0.8,0.25,1),
              border-color 0.35s ease,
              box-shadow 0.35s ease;
  opacity: 0;
  transform: translateY(24px);
}

.menu-item-card.card-visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.5s ease, transform 0.5s ease,
              box-shadow 0.35s ease, border-color 0.35s ease;
}

.menu-item-card:hover {
  transform: translateY(-6px);
  border-color: rgba(200,156,94,0.35);
  box-shadow: 0 20px 40px rgba(0,0,0,0.5), 0 0 0 1px rgba(200,156,94,0.1);
}

/* Card image area */
.menu-card-img-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

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

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

.menu-card-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,0.7) 100%);
  pointer-events: none;
}

/* Badge */
.menu-card-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  background: rgba(200,60,10,0.85);
  color: #fff;
  font-family: var(--font-heading);
  font-size: 0.72rem;
  letter-spacing: 1px;
  padding: 4px 12px;
  border-radius: 20px;
  backdrop-filter: blur(6px);
}

.menu-card-badge.badge-gold {
  background: rgba(200,156,94,0.9);
  color: #09080a;
}

/* Card body */
.menu-card-body {
  padding: 20px 20px 22px 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.menu-card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.menu-card-name {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  letter-spacing: 2px;
  color: var(--color-white);
}

.menu-card-price {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--color-gold);
  font-family: var(--font-heading);
}

.menu-card-desc {
  font-size: 0.83rem;
  color: var(--color-gray);
  line-height: 1.5;
}

.menu-card-order-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 10px;
  padding: 9px 18px;
  border: 1px solid rgba(200,156,94,0.3);
  border-radius: 6px;
  color: var(--color-gold);
  font-family: var(--font-heading);
  font-size: 0.8rem;
  letter-spacing: 1.5px;
  text-decoration: none;
  transition: all 0.3s ease;
  width: fit-content;
}

.menu-card-order-btn:hover {
  background: var(--color-gold);
  border-color: var(--color-gold);
  color: #09080a;
}

/* =========================================================
   BEVERAGE PRICE MENU (IMAGE-FREE)
   ========================================================= */
.beverage-menu {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  padding: clamp(26px, 4vw, 46px);
  border: 1px solid rgba(200, 156, 94, 0.25);
  border-radius: 20px;
  background:
    radial-gradient(circle at 6% 0%, rgba(200, 156, 94, 0.16), transparent 28%),
    radial-gradient(circle at 100% 100%, rgba(200, 156, 94, 0.08), transparent 35%),
    linear-gradient(135deg, rgba(28, 25, 21, 0.98), rgba(14, 13, 11, 0.98));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04), 0 24px 60px rgba(0, 0, 0, 0.22);
}

.beverage-menu::before,
.beverage-menu::after {
  content: "";
  position: absolute;
  z-index: -1;
  width: 200px;
  height: 200px;
  border: 1px solid rgba(200, 156, 94, 0.11);
  border-radius: 50%;
}

.beverage-menu::before {
  top: -124px;
  right: -88px;
}

.beverage-menu::after {
  bottom: -150px;
  left: -96px;
}

.beverage-menu-intro {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  padding-bottom: 24px;
  margin-bottom: 28px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.beverage-menu-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--color-gold);
  font-family: var(--font-heading);
  font-size: 0.8rem;
  letter-spacing: 2.6px;
}

.beverage-menu-kicker i {
  font-size: 0.9rem;
}

.beverage-menu-intro p {
  max-width: 360px;
  margin: 0;
  color: var(--color-gray);
  font-size: 0.9rem;
  text-align: right;
}

.bev-price-panels {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 16px;
}

.bev-panel {
  position: relative;
  overflow: hidden;
  min-height: 210px;
  padding: 20px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.012));
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 12px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.45s ease, transform 0.35s ease, border-color 0.35s ease, background 0.35s ease, box-shadow 0.35s ease;
}

.bev-panel::before {
  content: "";
  position: absolute;
  top: 0;
  left: 20px;
  right: 20px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
  opacity: 0.5;
}

.bev-panel.card-visible {
  opacity: 1;
  transform: translateY(0);
}

.bev-panel:hover {
  transform: translateY(-5px);
  border-color: rgba(200, 156, 94, 0.5);
  background: linear-gradient(145deg, rgba(200, 156, 94, 0.12), rgba(255, 255, 255, 0.025));
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.25);
}

.bev-panel-topline {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 18px;
}

.bev-panel-index {
  color: rgba(200, 156, 94, 0.68);
  font-family: var(--font-heading);
  font-size: 0.76rem;
  letter-spacing: 2px;
}

.bev-panel-count {
  color: var(--color-gray);
  font-family: var(--font-heading);
  font-size: 0.66rem;
  letter-spacing: 1.5px;
}

.bev-panel-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  padding-bottom: 15px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.bev-icon {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  color: var(--color-gold);
  background: rgba(200, 156, 94, 0.1);
  border: 1px solid rgba(200, 156, 94, 0.24);
  border-radius: 8px;
  font-size: 0.9rem;
}

.bev-panel-title {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  letter-spacing: 2.4px;
  color: var(--color-white);
}

.bev-price-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.bev-menu-item {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 39px;
  font-size: 0.86rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.bev-menu-item:last-child {
  border-bottom: 0;
}

.bev-item-name {
  color: #dad8d3;
  white-space: nowrap;
}

.bev-item-rule {
  flex: 1;
  min-width: 12px;
  border-bottom: 1px dotted rgba(200, 156, 94, 0.38);
  transform: translateY(2px);
}

.bev-item-price {
  color: var(--color-gold);
  font-weight: 600;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  letter-spacing: 0.4px;
  white-space: nowrap;
}

.beverage-menu-footer {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding-top: 22px;
  margin-top: 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: #85817a;
  font-size: 0.76rem;
}

.beverage-menu-footer i {
  margin-right: 6px;
  color: var(--color-gold);
}

/* Minimal restaurant-style beverage list. */
.beverage-section {
  padding: 50px 0 40px 0;
}

.beverage-menu {
  max-width: 100%;
  margin: 0;
  padding: 0;
  background: transparent;
  border: none;
  border-radius: 0;
  box-shadow: none;
}

.beverage-menu::before,
.beverage-menu::after {
  content: none;
}

.beverage-menu-heading {
  display: none;
}

.beverage-menu-groups {
  display: flex;
  flex-direction: column;
  gap: 36px;
}

.bev-group-title {
  color: #aaa5a2;
  border-bottom: none;
  font-family: var(--font-body);
  font-size: 1.2rem;
  font-style: italic;
  font-weight: 700;
  letter-spacing: 3px;
  text-align: center;
  text-transform: uppercase;
}

.bev-price-list {
  gap: 0;
}

.bev-menu-item {
  min-height: 54px;
  gap: 14px;
  border-bottom: 0;
  font-size: 1rem;
}

.bev-item-name {
  color: #fafafa;
  font-weight: 600;
  letter-spacing: 0.4px;
  text-transform: uppercase;
}

.bev-item-rule {
  border-bottom-color: #5a5a59;
  transform: translateY(3px);
}

.bev-item-price {
  color: #d9994b;
  font-family: var(--font-body);
  font-size: 1.08rem;
  font-weight: 700;
}

/* ---- Bottom CTA ---- */
.menu-bottom-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 70px 0 20px 0;
  text-align: center;
}

.menu-cta-fire {
  font-size: 3rem;
  color: #c89c5e;
  text-shadow:
    0 0 6px #c89c5e,
    0 0 15px rgba(166, 124, 70, 0.6),
    0 0 25px rgba(200, 156, 94, 0.3);
  animation: ctaFireBlaze 1.4s ease-in-out infinite alternate;
}

@keyframes ctaFireBlaze {
  0%   { transform: scale(1) rotate(-3deg);   color: #c89c5e; text-shadow: 0 0 5px #c89c5e, 0 0 12px rgba(166, 124, 70, 0.4), 0 0 20px rgba(200, 156, 94, 0.2); }
  50%  { transform: scale(1.08) rotate(0deg); color: #e0b980; text-shadow: 0 0 8px #e0b980, 0 0 18px rgba(200, 156, 94, 0.5), 0 0 30px rgba(200, 156, 94, 0.3); }
  100% { transform: scale(1.04) rotate(3deg); color: #f7d8a6; text-shadow: 0 0 10px #f7d8a6, 0 0 22px rgba(224, 185, 128, 0.6), 0 0 35px rgba(200, 156, 94, 0.4); }
}

.menu-cta-slogan {
  font-family: var(--font-script);
  font-size: 2.6rem;
  color: #c89c5e;
  text-shadow:
    0 0 6px #c89c5e,
    0 0 15px rgba(166, 124, 70, 0.4);
  animation: sloganGlow 1.4s ease-in-out infinite alternate;
}

@keyframes sloganGlow {
  0%   { color: #c89c5e; text-shadow: 0 0 4px #c89c5e, 0 0 10px rgba(166, 124, 70, 0.3), 0 0 15px rgba(200, 156, 94, 0.2); }
  50%  { color: #e0b980; text-shadow: 0 0 6px #e0b980, 0 0 15px rgba(200, 156, 94, 0.4), 0 0 22px rgba(200, 156, 94, 0.3); }
  100% { color: #f7d8a6; text-shadow: 0 0 8px #f7d8a6, 0 0 18px rgba(224, 185, 128, 0.5), 0 0 28px rgba(200, 156, 94, 0.4); }
}

/* CTA butonunda btn-text her zaman görünür ve mobilde buton boyutlarının ezilmesini önler */
.btn-outline.nav-btn.menu-cta-btn .btn-text {
  display: inline !important;
}
.btn-outline.nav-btn.menu-cta-btn {
  font-size: 1rem !important;
  padding: 12px 32px !important;
  width: auto !important;
  height: auto !important;
  border-radius: 4px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px !important;
  white-space: nowrap !important;
}

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 1024px) {
  .menu-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .beverage-menu {
    padding: 30px;
  }
}

@media (max-width: 768px) {
  .menu-hero-banner {
    padding: 40px 0 35px 0;
  }
  .menu-hero-script {
    font-size: 2.8rem;
  }
  .menu-hero-bold {
    font-size: 2.4rem;
    letter-spacing: 4px;
  }
  .menu-hero-flame {
    font-size: 5rem;
    margin-right: 12px;
  }
  .menu-cards-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .menu-card-body {
    padding: 12px 12px 14px 12px;
    gap: 4px;
  }
  .menu-card-name {
    font-size: 0.82rem;
    letter-spacing: 1px;
  }
  .menu-card-price {
    font-size: 1rem;
  }
  .menu-card-desc {
    font-size: 0.75rem;
  }
  .menu-section-desc {
    margin-left: 0;
    margin-top: 8px;
  }
  .bev-price-panels {
    grid-template-columns: 1fr;
  }
  .beverage-menu {
    padding: 24px 18px;
    border-radius: 14px;
  }
  .beverage-menu-intro {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
    padding-bottom: 18px;
    margin-bottom: 18px;
  }
  .beverage-menu-intro p {
    text-align: left;
  }
  .beverage-menu-footer {
    flex-direction: column;
    gap: 4px;
    margin-top: 18px;
    padding-top: 16px;
  }
  .beverage-menu {
    padding: 30px 24px 32px;
  }
  .beverage-menu-heading {
    margin-bottom: 28px;
  }
  .beverage-menu-heading h2 {
    font-size: 2rem;
  }
  .beverage-menu-groups {
    gap: 28px;
  }
  .bev-menu-item {
    min-height: 50px;
    gap: 10px;
    font-size: 0.92rem;
  }
  .bev-item-price {
    font-size: 1rem;
  }
  .menu-cta-slogan {
    font-size: 2rem;
  }
}

/* =========================================================
   GENERIC SCROLL REVEAL ANIMATIONS
   ========================================================= */
.scroll-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s cubic-bezier(0.215, 0.610, 0.355, 1.000), 
              transform 0.7s cubic-bezier(0.215, 0.610, 0.355, 1.000);
  will-change: opacity, transform;
}

.scroll-reveal.reveal-visible {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

