/* ═══════════════════════════════════════
   Burger & Sandwich Page —
═══════════════════════════════════════════ */
html { visibility: hidden; }
:root {
  --fire-orange: #ff5722;
  --fire-yellow: #ffc107;
  --charcoal: #263238;
}

/* ── Body ── */
.burger-body {
  background: var(--charcoal);
  color: var(--white);
  padding: 10rem 5% 5rem;
}

/* ── Fire Header ── */
.fire-header {
  text-align: center;
  margin-bottom: 5rem;
}

.fire-header h1 {
  font-size: 4rem;
  color: var(--fire-orange);
  text-shadow: 0 0 20px var(--fire-orange);
  animation: flicker 1s infinite alternate;
  font-family: var(--font-display);
  font-weight: 900;
  letter-spacing: -2px;
  line-height: 1.1;
}

.fire-header h1 span {
  font-style: italic;
  font-weight: 400;
}

@keyframes flicker {
  from { opacity: 1; text-shadow: 0 0 20px var(--fire-orange); }
  to   { opacity: 0.85; text-shadow: 0 0 45px var(--fire-orange), 0 0 80px rgba(255,87,34,0.4); }
}

/* ── Split Layout ── */
.split-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  position: relative;
}

.split-container::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  width: 2px;
  height: 100%;
  background: linear-gradient(transparent, var(--fire-orange), transparent);
  pointer-events: none;
}

/* ── Section Title ── */
.section-title {
  text-align: center;
  font-size: 2.5rem;
  color: var(--fire-yellow);
  margin-bottom: 3rem;
  border-bottom: 2px solid var(--fire-orange);
  padding-bottom: 0.8rem;
  font-family: var(--font-body);
  font-weight: 800;
  letter-spacing: 3px;
}

/* ── Dish List ── */
.dish-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

/* ── Dish Card ── */
.dish-card {
  background: rgba(255,255,255,0.05);
  padding: 1rem;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  border: 1px solid rgba(255,255,255,0.1);
  transition: var(--transition);
}

.dish-card:hover {
  background: rgba(255,87,34,0.1);
  border-color: var(--fire-orange);
  transform: translateX(10px);
  box-shadow: 0 10px 30px rgba(255,87,34,0.15);
}

/* ── Dish Image ── */
.dish-img {
  width: 160px;
  height: 160px;
  border-radius: 15px;
  overflow: hidden;
  flex-shrink: 0;
}

.dish-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.165,0.84,0.44,1);
}

.dish-card:hover .dish-img img {
  transform: scale(1.1);
}

/* ── Dish Info ── */
.dish-info h4 {
  font-size: 1.5rem;
  color: var(--fire-orange);
  font-family: var(--font-display);
  font-weight: 800;
  margin-bottom: 0.3rem;
}

.dish-info p {
  font-size: 0.9rem;
  opacity: 0.7;
  line-height: 1.5;
  margin-bottom: 0.5rem;
}

.dish-price {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--fire-yellow);
}

/* ── Footer Nav (water buttons) ── */
.burger-footer-nav {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 5rem;
}

.water-btn {
  width: 50px;
  height: 50px;
  background: rgba(255,255,255,0.1);
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  border: 1px solid rgba(255,255,255,0.2);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
}

.water-btn:hover {
  background: var(--fire-orange);
  box-shadow: 0 0 15px var(--fire-orange);
  border-color: var(--fire-orange);
}

.water-btn svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .split-container { grid-template-columns: 1fr; }
  .split-container::after { display: none; }
  .fire-header h1 { font-size: 2.8rem; }
}

@media (max-width: 768px) {
  .burger-body { padding-top: 14rem; }

  .fire-header h1 { font-size: 2rem; letter-spacing: -1px; }

  .burger-body .sub-page-header .nav-links {
    flex-wrap: nowrap;
    gap: 0.3rem;
    justify-content: center;
    overflow-x: auto;
  }

  .burger-body .sub-page-header .nav-links::-webkit-scrollbar { display: none; }

  .burger-body .sub-page-header .nav-links a {
    font-size: 0.55rem;
    padding: 0.4rem 0.6rem;
  }

  .burger-body .sub-page-header .nav-links a.feel-love-link {
    font-size: 0.55rem !important;
    padding: 0.4rem 0.8rem !important;
  }

  .dish-card {
    flex-direction: column;
    text-align: center;
  }

  .dish-img { width: 100%; height: 180px; }
}

  /* ══════════════════════════════════════
   FOOTER 
══════════════════════════════════════ */
  .cafe-footer {
    background: var(--charcoal);
    color: rgba(207, 205, 205, 0.75);
    text-align: center;
    padding: 2rem 5%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }

  .cafe-footer-note {
    font-size: 0.9rem;
    color: var(--accent-gold, #c5a059);
    font-weight: 600;
    letter-spacing: 0.3px;
    margin: 0;
  }

  .cafe-footer-address {
    font-size: 0.82rem;
    opacity: 0.7;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin: 0;
  }

  .cafe-footer-btns {
    display: flex;
    gap: 0.8rem;
    flex-wrap: wrap;
    justify-content: center;
  }

  .cafe-footer-call,
  .cafe-footer-wa {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0.6rem 1.4rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .cafe-footer-call svg,
  .cafe-footer-wa svg {
    width: 15px;
    height: 15px;
    fill: currentColor;
    flex-shrink: 0;
  }

  .cafe-footer-call {
    background: linear-gradient(135deg, var(--accent-gold, #3a2d15), #a8883e);
    color: var(--primary-brown, #3d2b1f);
    box-shadow: 0 6px 20px rgba(70, 45, 0, 0.3);
  }

  .cafe-footer-call:hover {
    background: #00beeede;
    border-color: #17a094;
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgb(11, 53, 131);
  }

  .cafe-footer-wa {
    border: 1px solid rgba(255,255,255,0.2);
    color: var(--primary-brown, #3d2b1f);
    background: linear-gradient(135deg, var(--accent-gold, #3a2d15), #a8883e);
    
  }

  .cafe-footer-wa:hover {
    background: #25d366;
    border-color: #25d366;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgb(14, 110, 50);
  }

  @media (max-width: 480px) {
    .cafe-footer-note { font-size: 0.8rem; }
    .cafe-footer-address { font-size: 0.75rem; }
  }
html { visibility: visible; }