:root {
  --bg: #140f0b;
  --bg-alt: #1e1712;
  --accent: #e8702a;
  --accent2: #c53b31;
  --turquoise: #1fa4a2;
  --text: #fef7ec;
  --muted: #c8b7a0;
  --card: #261c15;
  --radius: 10px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--text);
}

/* Top bar */
.topbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.8rem 1.5rem;
  background: rgba(20, 15, 11, 0.9);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.5);
  transition: background 0.25s ease, box-shadow 0.25s ease, padding 0.25s ease;
}

.topbar.topbar--scrolled {
  background: rgba(10, 6, 4, 0.96);
  padding-block: 0.55rem;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.7);
}

.logo {
  font-family: "Lobster", system-ui, sans-serif;
  font-weight: 400;
  font-style: normal;
  letter-spacing: 0.08em;
  text-transform: none;
  color: var(--accent);
  font-size: 1.9rem;
  text-decoration: none;
}

.logo:hover,
.logo:focus {
  text-decoration: none;   /* keep it off on hover/focus too */
}

.nav {
  display: flex;
  gap: 1rem;
}

.nav a {
  position: relative;
  color: var(--muted);
  text-decoration: none;
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding-bottom: 0.1rem;
  transition: color 0.2s ease, transform 0.15s ease;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -0.15rem;
  width: 0;
  height: 2px;
  background: linear-gradient(135deg, var(--accent2), var(--accent));
  transform: translateX(-50%);
  transition: width 0.22s ease;
}

.nav a:hover {
    color: var(--text);
  transform: translateY(-1px);
}

.nav a:hover::after {
  width: 80%;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--text);
}

/* Layout helpers */
.section {
  padding: 5rem 1.5rem;
}

.section.alt {
  background: var(--bg-alt);
}

.container {
  max-width: 1100px;
  margin: 0 auto;
}

h1, h2, h3 {
  font-family: "Trebuchet MS", system-ui;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

h2 {
  margin-top: 0;
  margin-bottom: 0.75rem;
}

.section-subtitle {
  color: var(--muted);
  margin-bottom: 2rem;
}

/* Hero */
.hero {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 1.5rem;
  overflow: hidden;
}

.hero-slides {
  position: absolute;
  inset: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-slide.active {
  opacity: 1;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top, rgba(229, 115, 66, 0.65), transparent),
              linear-gradient(to bottom, rgba(0, 0, 0, 0.7), #000);
}

.hero-content {
  position: relative;
  max-width: 600px;
}

.hero h1 {
  font-family: "Chewy", system-ui, sans-serif;
  font-size: 3.2rem;
  margin-bottom: 0.5rem;
}

.hero p {
  font-size: 1.1rem;
  color: #ffe4c7;
  margin-bottom: 1.8rem;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
}

.hero-logo {
  max-width: 260px;
  width: 70%;
  height: auto;
  margin-bottom: 1rem;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.75rem 1.4rem;
  border-radius: 999px;
  border: 1px solid transparent;
  text-decoration: none;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn.primary {
  background: linear-gradient(135deg, var(--accent2), var(--accent));
  color: #fff;
}

.btn.secondary {
  background: transparent;
  color: #ffe4c7;
  border-color: rgba(255, 255, 255, 0.5);
}

.btn.primary:hover {
  filter: brightness(1.08);
  transform: translateY(-1px);
}

.btn.secondary:hover {
  background: rgba(0, 0, 0, 0.3);
}

/* Intro cards */
.intro {
  padding-top: 4rem;
}

.intro p {
  max-width: 620px;
}

.intro-highlights {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.card {
  background: var(--card);
  border-radius: var(--radius);
  padding: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

/* About */
.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 2rem;
  align-items: center;
}

.values {
  list-style: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1rem;
}

.values li {
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 0.35rem 0.9rem;
  font-size: 0.85rem;
  color: var(--muted);
}

.about-photos {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 0.5rem;
}

.about-photo {
  border-radius: var(--radius);
  background-size: cover;
  background-position: center;
  min-height: 130px;
}

.about-photo.photo1 {
  background-image: url("images/about1.jpg");
}

.about-photo.photo2 {
  background-image: url("images/about2.jpg");
}

/* Menu */
.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.menu-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.menu-list li {
  padding-bottom: 0.75rem;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.12);
}

.menu-list strong {
  font-size: 0.98rem;
}

.menu-list p {
  margin: 0.25rem 0 0;
  font-size: 0.9rem;
  color: var(--muted);
}

.badge {
  display: inline-block;
  font-size: 0.7rem;
  text-transform: uppercase;
  margin-left: 0.35rem;
  padding: 0.12rem 0.4rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.09);
}

.badge.spicy {
  color: #ffb4a2;
  border: 1px solid rgba(255, 124, 89, 0.6);
}

.badge.veg {
  color: #c8f7c5;
  border: 1px solid rgba(152, 251, 152, 0.6);
}

.badge.house {
  color: #ffeaa7;
  border: 1px solid rgba(255, 234, 167, 0.6);
}

.menu-cta {
  margin-top: 2.5rem;
  text-align: center;
}


.instagram {
  margin-top: 2.5rem;
  text-align: center;
  color: var(--muted);
  a {
  color: var(--muted);
  text-decoration: none;
}
}

/* Events */
.events-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-top: 1.5rem;
}

/* Contact / Reservations */
.contact-grid {
  flex-direction: column;
    align-items: center;
}

/* Left column: info + map */
.contact-grid > :first-child {
  flex: 0 0 420px;  /* fixed width, smaller than full container */
  padding-right: 1rem; /* small extra space on the right */
}

/* Right column: form card */
.reservation-card {
  background: rgba(12, 8, 5, 0.95);
  border-radius: 18px;
  padding: 1.75rem 1.5rem 2rem;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.03);
}

.map-placeholder {
  margin-top: 1rem;
  margin-bottom: 1.5rem;
  border-radius: var(--radius);
  border: 1px dashed rgba(255, 255, 255, 0.2);
  padding: 0.75rem;
}

.map-placeholder iframe {
  display: block;
  width: 100%;
  height: 260px;
  border: 0;
}

/* Mobile: stack */
@media (max-width: 768px) {
  .contact-grid {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .contact-grid > :first-child,
  .contact-grid > :last-child {
    width: 100%;
    max-width: 520px;
  }
}

/* Center section titles */
#reservations h2,
#contact h2 {
  text-align: center;
  margin-bottom: 1rem;
}

.hours {
  color: var(--muted);
}

/******************************************( Reservation )************************************/

/* Professional animated reservation form */
.reservation-form {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

/* Floating-label wrapper */
.reservation-form label {
  position: relative;
  display: block;
  font-size: 0.8rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* Inputs / textarea base */
.reservation-form input,
.reservation-form textarea {
  width: 100%;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: #120c08;
  color: var(--text);
  padding: 0.85rem 0.9rem 0.4rem;
  font-family: inherit;
  font-size: 0.9rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

/* Focus animation */
.reservation-form input:focus,
.reservation-form textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 1px rgba(232, 112, 42, 0.4);
  background: #1a0f0a;
}

/* Floating label text */
.reservation-form label span {
  position: absolute;
  left: 0.9rem;
  top: 0.45rem;
  font-size: 0.75rem;
  color: rgba(255, 244, 230, 0.7);
  pointer-events: none;
  transition: transform 0.15s ease, opacity 0.15s ease;
}

/* Move label when focused or filled */
.reservation-form input:focus + span,
.reservation-form textarea:focus + span,
.reservation-form input:not(:placeholder-shown) + span,
.reservation-form textarea:not(:placeholder-shown) + span {
  transform: translateY(-0.35rem);
  opacity: 0.85;
}

/* Button styling */
.reservation-form .btn.primary {
  align-self: center;
  padding-inline: 2.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  background: linear-gradient(135deg, var(--accent2), var(--accent));
  color: #fff;
  box-shadow: none;                 /* no glow */
  transform: none;
  filter: none;
  transition: background 0.18s ease;
}

.reservation-form .btn.primary:hover {
  background: linear-gradient(135deg, #ff8850, #ffb060); /* slightly brighter */
  transform: none;
  box-shadow: none;
  filter: none;
}

/*****************************************************************************/

.small {
  font-size: 0.85rem;
  color: var(--muted);
}

/* Footer */
.footer {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1.2rem 1.5rem;
  background: #0d0906;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  font-size: 0.85rem;
  color: var(--muted);
}

.footer-links {
  display: flex;
  gap: 0.75rem;
}

.footer-links a {
  color: var(--muted);
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--text);
}

/* Responsive */
@media (max-width: 768px) {
  .nav {
    position: fixed;
    top: 64px;
    right: 0.75rem;
    left: 0.75rem;
    flex-direction: column;
    background: rgba(10, 6, 4, 0.98);
    padding: 0.9rem 1.2rem 1.1rem;
    transform: translateY(-16px) scale(0.98);
    opacity: 0;
    pointer-events: none;
    border-radius: 14px;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.75);
    transition: transform 0.22s ease, opacity 0.22s ease;
    min-width: 0;
  }

  .nav.open {
    transform: translateY(0) scale(1);
    opacity: 1;
    pointer-events: auto;
  }

  .nav a {
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  }

  .nav a:last-child {
    border-bottom: none;
  }

  .nav-toggle {
    display: block;
  }

  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    height: 90vh;
  }

  .hero h1 {
    font-size: 2.3rem;
  }

  .contact-grid > :last-child {
    padding: 1.5rem 1.2rem 1.8rem;
  }
}


.menu-page {
  padding-top: 5rem; /* pushes content below fixed navbar */
}

.menu-image {
  display: block;
  width: 100%;
  max-width: 900px;
  margin: 1.5rem auto;
  border-radius: 12px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.35);
}


/* Simple manual slideshow */
.simple-slider {
  position: relative;
  margin-top: 2rem;
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
}

.simple-slide {
  display: none;
}

.simple-slide.active {
  display: block;
}

.simple-slide img {
  width: 100%;
  height: auto;
  max-height: 80vh;
  object-fit: cover;
  border-radius: 12px;
}

/* Prev/next buttons */
.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.5);
  border: none;
  color: #fff;
  font-size: 1.5rem;
  padding: 0.3rem 0.6rem;
  cursor: pointer;
  border-radius: 999px;
}

.slider-prev {
  left: 0.3rem;
}

.slider-next {
  right: 0.3rem;
}

/************* MUSIC **********************/
.music-toggle {
  position: fixed;
  bottom: 1.4rem;
  right: 1.4rem;
  z-index: 120;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: none;
  background: rgba(20, 15, 11, 0.9);
  color: #fff;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.6);
  cursor: pointer;
  backdrop-filter: blur(10px);
  transition: background 0.2s ease, transform 0.15s ease, opacity 0.2s ease;
}

.music-toggle.muted {
  opacity: 0.65;
}

/* Tighter spacing between Reservations and Find Us */
#reservations.section,
#contact.section {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

/* Almost no gap between them */
#reservations {
  margin-bottom: 1rem;
}

#contact {
  margin-top: 0;
}
