/* =====================================================
   NEHIR GIDA - GATE.CSS
   Karşılama Ekranı (Landing / Gate Page) Stilleri
   ===================================================== */

/* ─── Body ─── */
body.gate-page {
  background: var(--dark-bg);
  color: #fff;
  font-family: 'Raleway', sans-serif;
  height: 100vh;
  overflow: hidden;
}

/* ─── Intro Canvas (arkaplan animasyonu) ─── */
#intro-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

/* ─── Intro Overlay ─── */
#intro-overlay {
  position: fixed;
  inset: 0;
  background: radial-gradient(ellipse at center, #120a02 0%, var(--black) 70%);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* ─── Intro Arka Plan (2. Yol: Tam Ekran Kaplama / Full Bleed Cover) ─── */
.intro-bg-stage {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

.intro-bg-ambient {
  display: none;
}

.intro-bg-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background-image: url('../img/gate_hero_baklava.jpg');
  background-size: cover;
  background-position: center 30%;
  background-repeat: no-repeat;
  filter: brightness(0.90) contrast(1.06) saturate(1.15);
  transform: scale(1.03);
}

.intro-bg-scrim {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(14, 7, 2, 0.18) 0%, rgba(10, 4, 1, 0.35) 55%, rgba(3, 1, 0, 0.70) 100%),
              linear-gradient(180deg, rgba(0, 0, 0, 0.12) 0%, transparent 45%, rgba(0, 0, 0, 0.35) 100%);
}

@media (max-width: 768px) {
  .intro-bg-photo {
    background-position: center 20%;
    filter: brightness(0.88) contrast(1.05) saturate(1.12);
  }
}

/* ─── Parlayan Halkalar ─── */
.intro-rings {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  z-index: 1;
}

.intro-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(201, 162, 39, 0.15);
  animation: ringPulse 4s ease-in-out infinite;
}

.ring-1 {
  width: 300px; height: 300px;
  border-color: rgba(201, 162, 39, 0.25);
  animation-delay: 0s;
}
.ring-2 {
  width: 500px; height: 500px;
  border-color: rgba(201, 162, 39, 0.15);
  animation-delay: 0.8s;
}
.ring-3 {
  width: 720px; height: 720px;
  border-color: rgba(201, 162, 39, 0.08);
  animation-delay: 1.6s;
}

@keyframes ringPulse {
  0%, 100% { transform: scale(1); opacity: 0.4; }
  50%       { transform: scale(1.06); opacity: 1; }
}

/* ─── Köşe Süslemeleri ─── */
.intro-corner {
  position: absolute;
  width: 60px;
  height: 60px;
  pointer-events: none;
  z-index: 2;
}

.intro-corner::before,
.intro-corner::after {
  content: '';
  position: absolute;
  background: var(--gold-mid);
  opacity: 0.5;
}

.intro-corner::before { width: 100%; height: 1px; top: 0; left: 0; }
.intro-corner::after  { width: 1px; height: 100%; top: 0; left: 0; }

.corner-tl { top: 2rem; left: 2rem; }
.corner-tr { top: 2rem; right: 2rem; transform: scaleX(-1); }
.corner-bl { bottom: 2rem; left: 2rem; transform: scaleY(-1); }
.corner-br { bottom: 2rem; right: 2rem; transform: scale(-1); }

/* ─── Intro Content Wrapper ─── */
.intro-content {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  text-align: center;
  padding: 1rem 1.5rem;
}

.intro-content::before {
  content: '';
  position: absolute;
  inset: -25px -40px;
  background: radial-gradient(ellipse at center, rgba(10, 5, 2, 0.28) 0%, rgba(10, 5, 2, 0.12) 55%, transparent 80%);
  border-radius: 50%;
  pointer-events: none;
  z-index: -1;
}

/* ─── Üst logo ─── */
.intro-icon {
  opacity: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ─── Logo img — multiply blend (beyaz → şeffaf) ─── */
.intro-logo-img {
  width: clamp(135px, 18vw, 210px);
  height: auto;
  mix-blend-mode: multiply;
  filter: drop-shadow(0 4px 14px rgba(0, 0, 0, 0.75)) drop-shadow(0 0 25px rgba(255, 217, 102, 0.45));
  animation: logoFloat 4s ease-in-out infinite;
  display: block;
}

@keyframes logoFloat {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-6px); }
}

/* ─── Dekoratif Çizgiler ─── */
.intro-divider-top,
.intro-divider-bottom {
  width: 220px;
  height: 2px;
  background: linear-gradient(90deg, transparent, #ffd466 30%, #ffffff 50%, #ffd466 70%, transparent);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.95), 0 0 8px rgba(255, 212, 102, 0.5);
  opacity: 0;
}

/* ─── Intro Başlık ─── */
#intro-overlay .intro-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.1rem, 6.2vw, 5.2rem);
  font-weight: 900;
  letter-spacing: 0.05em;
  text-align: center;
  background: linear-gradient(135deg, #d8ac34 0%, #ffe07a 35%, #ffffff 55%, #ffe07a 75%, #d8ac34 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  background-size: 200% auto;
  animation: goldShimmer 3s linear infinite;
  line-height: 1.2;
  padding: 0 1rem;
  opacity: 0;
  transform: scale(0.85) translateY(20px);
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.98)) 
          drop-shadow(0 6px 18px rgba(0, 0, 0, 0.95)) 
          drop-shadow(0 12px 30px rgba(0, 0, 0, 0.9))
          drop-shadow(0 0 18px rgba(255, 217, 102, 0.45));
}

/* ─── Alt Yazı (Şehir) ─── */
#intro-overlay .intro-subtitle {
  font-family: 'Raleway', sans-serif;
  font-size: clamp(0.88rem, 2.3vw, 1.2rem);
  font-weight: 800;
  letter-spacing: 0.48em;
  text-transform: uppercase;
  color: #ffe699;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.98), 0 4px 16px rgba(0, 0, 0, 0.95), 0 0 12px rgba(0, 0, 0, 0.85);
  opacity: 0;
}

/* ─── Tagline ─── */
.intro-tagline {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  opacity: 0;
  transform: translateY(10px);
}

.intro-tagline span {
  font-family: 'Raleway', sans-serif;
  font-size: clamp(0.75rem, 1.7vw, 0.92rem);
  font-weight: 800;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: #ffffff;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.98), 0 4px 16px rgba(0, 0, 0, 0.95), 0 0 12px rgba(0, 0, 0, 0.85);
}

.intro-tagline .dot {
  color: #ffd466;
  font-size: 0.7rem;
  letter-spacing: 0;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.98), 0 0 10px rgba(255, 212, 102, 0.8);
}

/* ─── Yıl / Slogan ─── */
.intro-year {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(0.9rem, 2vw, 1.15rem);
  font-weight: 700;
  font-style: italic;
  letter-spacing: 0.2em;
  color: #fff4d4;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.98), 0 4px 16px rgba(0, 0, 0, 0.95);
  opacity: 0;
}

/* ─── Particle Canvas ─── */
#particle-canvas {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}

/* ─── Gate Main ─── */
.gate-main {
  position: relative;
  height: 100vh;
  display: flex;
  overflow: hidden;
  z-index: 2;
  opacity: 0;
}

/* ─── Marquee Band ─── */
.marquee-band {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold-mid), var(--gold-dark));
  height: 32px;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.marquee-track {
  display: flex;
  gap: 0;
  white-space: nowrap;
  animation: marqueeScroll 30s linear infinite;
}

.marquee-track span {
  font-family: 'Raleway', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--black);
  padding: 0 2rem;
  display: inline-block;
}

.marquee-track span.divider {
  color: rgba(0,0,0,0.4);
  padding: 0;
}

@keyframes marqueeScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ─── Center Logo ─── */
.gate-center-logo {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 50;
  text-align: center;
  pointer-events: none;
  opacity: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}

.gate-center-logo-img {
  width: clamp(80px, 9.5vw, 125px);
  height: auto;
  mix-blend-mode: multiply;
  filter: drop-shadow(0 4px 14px rgba(0, 0, 0, 0.9)) drop-shadow(0 0 24px rgba(255, 217, 102, 0.65)) contrast(1.1) brightness(1.05);
  display: block;
  transition: transform var(--tr-mid);
}

.gate-center-logo .brand-badge {
  display: inline-block;
  padding: 0.65rem 1.8rem;
  border: 1.5px solid rgba(255, 217, 102, 0.65);
  font-family: 'Playfair Display', serif;
  font-size: clamp(0.8rem, 1.25vw, 1.02rem);
  font-weight: 800;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #ffe699;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  background: linear-gradient(135deg, rgba(16, 9, 5, 0.88) 0%, rgba(30, 16, 8, 0.82) 100%);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.75), inset 0 0 15px rgba(201, 162, 39, 0.3), 0 0 20px rgba(201, 162, 39, 0.25);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.95), 0 0 10px rgba(255, 217, 102, 0.5);
  border-radius: 4px;
}

/* ─── Split Panels ─── */
.gate-panel {
  flex: 1;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: flex var(--tr-slow);
}

.gate-panel:hover { flex: 1.15; }

/* Panel BG Image */
.panel-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.gate-panel:hover .panel-bg {
  transform: scale(1.05);
}

/* Panel Overlays */
.panel-left .panel-overlay,
.gate-panel-pastane .panel-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(25, 12, 6, 0.45) 0%,
    rgba(212, 168, 67, 0.08) 50%,
    rgba(20, 10, 5, 0.40) 100%
  );
  transition: background var(--tr-mid);
}

.panel-right .panel-overlay,
.gate-panel-coffeelife .panel-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    225deg,
    rgba(20, 10, 5, 0.42) 0%,
    rgba(212, 120, 58, 0.08) 50%,
    rgba(15, 8, 4, 0.38) 100%
  );
  transition: background var(--tr-mid);
}

.gate-panel:hover .panel-overlay {
  opacity: 0.85;
}

/* Panel Content */
.panel-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  text-align: center;
  z-index: 2;
}

/* Panel Tag */
.panel-tag {
  font-family: 'Raleway', sans-serif;
  font-size: clamp(0.7rem, 1vw, 0.8rem);
  font-weight: 800;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: #ffe699;
  margin-bottom: 0.85rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.95);
}

.panel-tag::before,
.panel-tag::after {
  content: '';
  flex: none;
  width: 35px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 217, 102, 0.7), transparent);
}

.panel-tag span {
  color: #ffd466;
  font-size: 0.75rem;
  text-shadow: 0 0 8px rgba(255, 212, 102, 0.7);
}

/* Panel Title */
.panel-title {
  font-size: clamp(2.1rem, 4.4vw, 3.8rem);
  line-height: 1.12;
  margin-bottom: 0.75rem;
  transition: transform var(--tr-mid);
}

.panel-left .panel-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 700;
  font-style: italic;
  letter-spacing: 0.02em;
  color: #ffffff;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.95), 0 4px 16px rgba(0, 0, 0, 0.9), 0 8px 30px rgba(0, 0, 0, 0.85);
}

.panel-right .panel-title {
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #ffffff;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.95), 0 4px 16px rgba(0, 0, 0, 0.9), 0 8px 30px rgba(0, 0, 0, 0.85);
}

.gate-panel:hover .panel-title {
  transform: translateY(-4px);
}

/* Divider Gold */
.divider-gold {
  width: 80px;
  height: 2px;
  background: linear-gradient(90deg, transparent, #ffd466 50%, transparent);
  box-shadow: 0 1px 8px rgba(255, 212, 102, 0.6);
  margin: 0.6rem auto 1rem;
}

/* Panel Description */
.panel-desc {
  font-family: 'Raleway', sans-serif;
  font-size: clamp(0.88rem, 1.2vw, 1.02rem);
  font-weight: 600;
  line-height: 1.75;
  color: #ffffff;
  max-width: 360px;
  margin-bottom: 1.75rem;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.98), 0 4px 14px rgba(0, 0, 0, 0.92);
}

/* Panel Icons Row */
.panel-icons {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2rem;
  opacity: 1;
}

.panel-icon-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: #ffffff;
  text-transform: uppercase;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.95), 0 2px 8px rgba(0, 0, 0, 0.85);
  transition: transform var(--tr-fast);
}

.panel-icon-item:hover {
  transform: translateY(-3px);
}

.panel-icon-item .icon-sticker {
  width: clamp(40px, 4.2vw, 48px);
  height: clamp(40px, 4.2vw, 48px);
  object-fit: contain;
  display: block;
  border-radius: 50%;
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.75)) drop-shadow(0 0 8px rgba(255, 217, 102, 0.3));
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), filter 0.3s ease;
}

.panel-icon-item:hover .icon-sticker {
  transform: scale(1.15) rotate(2deg);
  filter: drop-shadow(0 6px 16px rgba(0, 0, 0, 0.85)) drop-shadow(0 0 14px rgba(255, 217, 102, 0.6));
}

.panel-icon-item .icon {
  font-size: 1.65rem;
  display: block;
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.85));
}

/* CTA Button */
.panel-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.9rem 2.8rem;
  font-family: 'Raleway', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: #ffffff;
  border: 1.5px solid rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  background: rgba(20, 10, 5, 0.45);
  border-radius: 4px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.6), inset 0 0 10px rgba(255, 255, 255, 0.08);
  transition: all var(--tr-mid);
  position: relative;
  overflow: hidden;
}

.panel-left .panel-cta {
  border-color: rgba(255, 217, 102, 0.6);
  color: #fff6e0;
}

.panel-right .panel-cta {
  border-color: rgba(232, 148, 78, 0.65);
  color: #fff2e6;
}

.panel-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  transform: translateX(-100%);
  transition: transform 0.4s ease;
}

.panel-left .panel-cta::before {
  background: linear-gradient(90deg, rgba(245,198,198,0.2), rgba(212,168,67,0.3));
}

.panel-right .panel-cta::before {
  background: linear-gradient(90deg, rgba(212,120,58,0.3), rgba(212,120,58,0.1));
}

.panel-cta:hover::before {
  transform: translateX(0);
}

.panel-cta:hover {
  border-color: #ffd466;
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6), 0 0 20px rgba(201, 162, 39, 0.4);
}

.panel-cta .arrow {
  transition: transform var(--tr-fast);
}

.panel-cta:hover .arrow {
  transform: translateX(5px);
}

/* ─── Vertical Divider ─── */
.gate-divider {
  position: fixed;
  left: 50%;
  top: 32px;
  bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, transparent, rgba(201,162,39,0.6) 20%, rgba(201,162,39,0.6) 80%, transparent);
  z-index: 40;
  transform: translateX(-50%);
  pointer-events: none;
}

/* ─── Background images ─── */
.panel-left .panel-bg,
.panel-left .pastane-bg,
.gate-panel-pastane .panel-bg,
.gate-panel-pastane .pastane-bg {
  background-image: url('../img/nehir_gate_pastane.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  filter: brightness(1.02) contrast(1.04) saturate(1.08);
}

.panel-right .panel-bg,
.panel-right .coffeelife-bg,
.gate-panel-coffeelife .panel-bg,
.gate-panel-coffeelife .coffeelife-bg {
  background-image: url('../img/gate_coffeelife_bg.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  filter: brightness(1.02) contrast(1.03) saturate(1.06);
}

/* ─── Gold Shimmer Animation ─── */
@keyframes goldShimmer {
  0% { background-position: 0% center; }
  100% { background-position: 200% center; }
}

/* ─── Responsive ─── */
@media (max-width: 768px) {
  .gate-main {
    flex-direction: column;
    height: 100dvh;
  }

  .gate-panel { flex: 1; }
  .gate-panel:hover { flex: 1.15; }

  .gate-divider {
    left: 0;
    right: 0;
    top: calc(50vh + 16px);
    bottom: auto;
    width: 100%;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(201,162,39,0.6) 20%, rgba(201,162,39,0.6) 80%, transparent);
  }

  .gate-center-logo {
    top: calc(50% + 16px);
    opacity: 0 !important;
    top: calc(50vh + 16px);
    opacity: 1;
    gap: 0;
    pointer-events: none;
    z-index: 50;
  }

  .gate-center-logo-img {
    display: none !important;
  }

  .gate-center-logo .brand-badge {
    padding: 0.35rem 1.1rem;
    font-size: 0.68rem;
    letter-spacing: 0.18em;
    border-radius: 20px;
    border: 1px solid rgba(255, 217, 102, 0.6);
    background: rgba(14, 8, 4, 0.92);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.8), 0 0 10px rgba(201, 162, 39, 0.25);
    white-space: nowrap;
  }

  .panel-content { padding: 1.25rem 1rem; }
  .panel-title { font-size: clamp(1.8rem, 5vw, 2.8rem); margin-bottom: 0.5rem; }
  .panel-desc { max-width: 300px; font-size: 0.82rem; margin-bottom: 1.25rem; }
  .panel-cta { padding: 0.75rem 2rem; font-size: 0.75rem; }
  .panel-icons { gap: 1rem; margin-bottom: 1.25rem; }
  .panel-icon-item { font-size: 0.65rem; }
  .panel-icon-item .icon-sticker { width: 36px; height: 36px; }
  .panel-icon-item .icon { font-size: 1.35rem; }

  .panel-left .panel-bg,
  .panel-left .pastane-bg,
  .gate-panel-pastane .panel-bg,
  .gate-panel-pastane .pastane-bg {
    background-image: url('../img/nehir_gate_pastane.jpg');
    background-position: center;
    background-size: cover;
  }
}

@media (max-width: 480px) {
  .gate-center-logo .brand-badge {
    padding: 0.3rem 0.95rem;
    font-size: 0.62rem;
    letter-spacing: 0.16em;
  }

  .panel-content { padding: 1rem 0.75rem; }
  .panel-tag { font-size: 0.65rem; margin-bottom: 0.5rem; }
  .panel-title { font-size: clamp(1.5rem, 6.5vw, 2.2rem); margin-bottom: 0.4rem; }
  .panel-desc { font-size: 0.76rem; max-width: 270px; line-height: 1.5; margin-bottom: 1rem; }
  .panel-icons { gap: 0.75rem; margin-bottom: 1rem; }
  .panel-icon-item { font-size: 0.58rem; letter-spacing: 0.05em; gap: 0.2rem; }
  .panel-icon-item .icon-sticker { width: 30px; height: 30px; }
  .panel-icon-item .icon { font-size: 1.2rem; }
  .panel-cta { padding: 0.65rem 1.6rem; font-size: 0.7rem; }
}

/* ═══════════════════════════════════════
   HAMBURGER MENU & NAV DRAWER
═══════════════════════════════════════ */
.ham-btn {
  position: fixed;
  top: 48px; /* marquee band altında */
  left: 1.5rem;
  z-index: 500;
  background: rgba(15, 9, 6, 0.7);
  border: 1px solid rgba(201, 162, 39, 0.5);
  border-radius: 6px;
  width: 46px;
  height: 46px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  cursor: pointer;
  padding: 0;
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 15px rgba(0,0,0,0.4);
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.ham-btn span {
  display: block;
  width: 24px;
  height: 2px;
  background: #f7df94;
  border-radius: 2px;
  transition: transform 0.35s ease, opacity 0.35s ease, background 0.3s;
  transform-origin: center;
}

.ham-btn:hover {
  background: rgba(201, 162, 39, 0.2);
  border-color: #f7df94;
  transform: scale(1.05);
}

.ham-btn.open span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.ham-btn.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.ham-btn.open span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* NAV OVERLAY */
.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  z-index: 600;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
  backdrop-filter: blur(5px);
}

.nav-overlay.visible {
  opacity: 1;
  pointer-events: all;
}

/* NAV DRAWER */
.nav-drawer {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  width: min(350px, 88vw);
  background: 
    radial-gradient(circle at 10% 0%, rgba(245, 230, 211, 0.14) 0%, transparent 50%),
    radial-gradient(circle at 90% 100%, rgba(201, 162, 39, 0.08) 0%, transparent 40%),
    linear-gradient(180deg, #20140d 0%, #160d07 40%, #0c0704 100%);
  border-right: 1px solid rgba(245, 220, 185, 0.22);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 700;
  display: flex;
  flex-direction: column;
  transform: translateX(-100%);
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  box-shadow: 15px 0 50px rgba(0, 0, 0, 0.8), inset -1px 0 0 rgba(255, 255, 255, 0.04);
  overflow-y: auto;
}

.nav-drawer.open {
  transform: translateX(0);
}

.nav-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.4rem 1.25rem;
  border-bottom: 1px solid rgba(245, 220, 185, 0.18);
  background: linear-gradient(180deg, rgba(253, 246, 238, 0.08) 0%, rgba(253, 246, 238, 0.02) 100%);
  gap: 0.75rem;
}

.nav-brand-group {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  flex: 1;
  min-width: 0;
}

.nav-logo-wrap {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(253, 246, 238, 0.14) 0%, rgba(253, 246, 238, 0.05) 100%);
  border: 1px solid rgba(245, 220, 185, 0.35);
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: linear-gradient(135deg, #fffcf8 0%, #f7ede0 100%);
  border: 1.2px solid rgba(201, 162, 39, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4), inset 0 0 10px rgba(255, 217, 102, 0.15);
  padding: 4px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.35), 0 0 10px rgba(255, 217, 102, 0.2);
  padding: 3px;
  overflow: hidden;
}

.nav-logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  mix-blend-mode: multiply;
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.5)) brightness(1.1);
  display: block;
}

.nav-brand-text {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  min-width: 0;
}

.nav-brand-title {
  font-family: 'Playfair Display', serif;
  font-size: 0.98rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  color: #fff5e0;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.9);
  line-height: 1.25;
}

.nav-brand-sub {
  font-family: 'Raleway', sans-serif;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #e5cdb2;
  opacity: 0.9;
}

.nav-close {
  background: rgba(253, 246, 238, 0.08);
  border: 1px solid rgba(245, 220, 185, 0.3);
  color: #fff2cc;
  border-radius: 50%;
  font-size: 1.1rem;
  cursor: pointer;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.25s ease;
}

.nav-close:hover {
  background: rgba(201, 162, 39, 0.25);
  border-color: #ffd466;
  color: #ffffff;
  transform: rotate(90deg) scale(1.05);
  box-shadow: 0 0 12px rgba(255, 217, 102, 0.3);
}

.nav-drawer-body {
  flex: 1;
  padding: 1.25rem 1rem;
}

.nav-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding: 0.95rem 1.1rem;
  text-decoration: none;
  color: #fdf5ec;
  border-radius: 10px;
  background: rgba(253, 246, 238, 0.035);
  border: 1px solid rgba(245, 220, 185, 0.08);
  transition: all 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.nav-link:hover {
  background: linear-gradient(90deg, rgba(253, 246, 238, 0.12) 0%, rgba(201, 162, 39, 0.08) 100%);
  border-color: rgba(245, 220, 185, 0.35);
  transform: translateX(4px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.35);
}

.nav-icon {
  font-size: 1.35rem;
  width: 30px;
  text-align: center;
  flex-shrink: 0;
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.6));
}

.nav-link-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.nav-text {
  font-family: 'Raleway', sans-serif;
  font-size: 0.94rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #fff9f0;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.8);
}

.nav-sub {
  font-family: 'Raleway', sans-serif;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: #e2c9af;
}

.nav-arrow {
  color: rgba(245, 220, 185, 0.4);
  font-size: 1rem;
  transition: transform 0.25s, color 0.25s;
}

.nav-link:hover .nav-arrow {
  transform: translateX(4px);
  color: #ffe699;
}

.nav-footer {
  padding: 1.25rem 1.4rem;
  border-top: 1px solid rgba(245, 220, 185, 0.15);
  background: linear-gradient(180deg, rgba(12, 6, 3, 0.3) 0%, rgba(12, 6, 3, 0.6) 100%);
}

.nav-footer-details {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  text-align: center;
}

.nav-footer-hours {
  font-family: 'Raleway', sans-serif;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #ffe099;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.9);
}

.nav-footer-loc {
  font-family: 'Raleway', sans-serif;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: rgba(253, 245, 236, 0.65);
}
