body.preload * {
  transition: none !important;
}
/* ==========================================================================
   GLOBAL RESET
   ========================================================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
}

body {
  background: #ffffff;
  color: #000;
  overflow-x: hidden;
}


/* ==========================================================================
   NAVBAR — DESKTOP
   True 3-column flex: [logo left] [links center] [toggle right]
   ========================================================================== */
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 30px;
  background: #d62828;
  width: 100%;
  min-height: 90px;
  position: relative;
  z-index: 1000;
}

.nav-left {
  display: flex;
  align-items: center;
  width: 160px;
  flex-shrink: 0;
  justify-content: flex-start;
}

.logo {
  height: 70px;
  width: auto;
  cursor: pointer;
  display: block;
}

.logo-link {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 25px;
  flex: 1;
  justify-content: center;
  align-items: center;
  position: static;
  transform: none;
  min-width: 0;
}

.nav-links a {
  color: #fff;
  text-decoration: none;
  font-weight: 900;
  font-size: 19px;
  white-space: nowrap;
  letter-spacing: 1px;
}

.nav-links a:hover {
  text-decoration: underline;
}

/* Right zone — min-width locks it so it never collapses and shifts the toggle */
.theme-item {
  width: 160px;
  flex-shrink: 0;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  position: static;
  transform: none;
}

.hamburger {
  display: none;
  font-size: 30px;
  color: white;
  cursor: pointer;
}


/* ==========================================================================
   THEME TOGGLE BUTTON
   ========================================================================== */
.theme-toggle {
  position: relative;
  display: inline-flex;
  align-items: center;
  width: 64px;
  height: 32px;
  background: #c0392b;
  border: 2px solid #922b21;
  border-radius: 50px;
  cursor: pointer;
  padding: 0;
  outline: none;
  transition: background 0.35s ease;
  flex-shrink: 0;
  flex-grow: 0;
}

.theme-toggle::after {
  content: '☀️';
  position: absolute;
  right: 7px;
  font-size: 12px;
  pointer-events: none;
  opacity: 1;
  transition: opacity 0.2s ease;
}

body.dark-mode .theme-toggle::after {
  opacity: 0;
}

body.dark-mode .theme-toggle::before {
  content: '🌙';
  position: absolute;
  left: 7px;
  font-size: 12px;
  pointer-events: none;
}

/* Use LEFT instead of transform so page-level transforms can't interfere */
.toggle-circle {
  position: absolute;
  left: 3px;
  width: 24px;
  height: 24px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.25);
  transition: left 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  line-height: 1;
}

.toggle-circle::after {
  content: '🌙';
}

body.dark-mode .toggle-circle {
  left: 37px;
  transform: none;
}

body.dark-mode .toggle-circle::after {
  content: '☀️';
}

.mobile-toggle {
  display: none;
}


/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero {
  width: 100%;
  max-width: 1050px;
  aspect-ratio: 21 / 11;
  margin: 30px auto;
  position: relative;
  overflow: hidden;
  border: 2px solid crimson;
  border-radius: 18px;
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
}

.hero-image.active {
  opacity: 1;
}


/* ==========================================================================
   SPECIALS SECTION
   ========================================================================== */
.specials-heading {
  text-align: center;
  font-size: clamp(1.8rem, 5vw, 2.8rem);
  font-weight: 900;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #d62828;
  text-shadow: 2px 2px 0 #000;
  margin: 30px 0 20px 0;
}

.bottom-section-heading {
  text-align: center;
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  font-weight: 900;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #d62828;
  text-shadow: 3px 3px 0 #000;
  margin: 70px 0 35px 0;
}

.specials {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 30px;
  padding: 40px 4% 20px;
  width: 100%;
}

.special-item {
  flex: 0 0 auto;
  width: 100%;
  max-width: 420px;
  border: 2px solid crimson;
  border-radius: 16px;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.18);
  overflow: hidden;
  background: transparent;
}

.special-item img {
  width: 100%;
  height: auto;
  display: block;
}


/* ==========================================================================
   PROMO BANNER
   ========================================================================== */
.promo-banner {
  max-width: 1200px;
  margin: 40px auto;
  padding: 0 4%;
}

.promo-banner img {
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 18px;
  display: block;
  border: 2px solid crimson;
}


/* ==========================================================================
   VIEW MENU BUTTON
   ========================================================================== */
.view-menu-wrapper {
  text-align: center;
  margin: 20px 0 40px 0;
}

.view-menu-btn {
  display: inline-block;
  background: #d62828;
  color: #ffffff;
  padding: 18px 50px;
  font-size: 22px;
  font-weight: 900;
  text-decoration: none;
  border: 5px solid #ffcc00;
  border-radius: 10px;
  letter-spacing: 2px;
  transition: 0.3s ease;
}

.view-menu-btn:hover {
  background: #ffcc00;
  color: #d62828;
}


/* ==========================================================================
   HOME CALL BANNER
   ========================================================================== */
.home-call-banner-section {
  width: 100%;
  max-width: 1100px;
  margin: 20px auto 30px auto;
  padding: 0 3%;
}

.home-call-banner-img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 20px;
  cursor: pointer;
}

@media (min-width: 768px) {
  .home-call-banner-section a {
    pointer-events: none;
  }
}


/* ==========================================================================
   CALL NOW BUTTON
   ========================================================================== */
.call-now-wrapper {
  width: 100%;
  display: flex;
  justify-content: center;
  margin: 40px 0;
  padding: 0 15px;
}

.call-now-btn {
  background: #d62828;
  color: #ffffff;
  text-decoration: none;
  font-weight: 900;
  font-size: 22px;
  padding: 18px 40px;
  border-radius: 14px;
  border: 4px solid #ffcc00;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
  transition: 0.3s ease;
}

.call-now-btn:hover {
  background: #ffcc00;
  color: #d62828;
}


/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer {
  background: #d62828;
  padding: 25px 4%;
  width: 100%;
  margin-top: 0;
}

.footer-content {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 15px;
}

.footer-links {
  list-style: none;
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-links a {
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  font-size: 16px;
}

.footer-links a:hover {
  text-decoration: underline;
}

.footer-links i {
  font-size: 20px;
}

.footer-copy {
  color: #fff;
  font-size: 14px;
  text-align: center;
}


/* ==========================================================================
   ABOUT PAGE
   ========================================================================== */
@media (min-width: 768px) {
  .about-banner-static,
  .contact-banner {
    height: 85vh;
  }
}

.about-banner-img,
.contact-banner-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.about-container {
  max-width: 900px;
  margin: 50px auto;
  padding: 0 4%;
  text-align: center;
}

.about-container p {
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 24px;
  color: #000;
}

.about-inline-banner {
  width: 100%;
  max-width: 1200px;
  height: auto;
  display: block;
  margin: 50px auto;
  padding: 0 4%;
  border-radius: 12px;
}

.about-top-banner {
  width: 100%;
  max-width: 1100px;
  margin: 30px auto 50px auto;
  padding: 0 4%;
}

.about-top-banner-img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 18px;
}


/* ==========================================================================
   MENU PAGE
   ========================================================================== */
.menu-main-heading {
  text-align: center;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 900;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #d62828;
  text-shadow: 2px 2px 0 #000;
  margin: 50px 0 30px 0;
}

.menu-tabs {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
  margin: 0 auto 50px;
  padding: 0 4%;
  max-width: 1400px;
}

.menu-tab:hover {
  border-color: #d62828;
  color: #d62828;
  transform: translateY(-2px);
}

.menu-tab.active {
  background: #d62828;
  color: #fff;
  border-color: #d62828;
}

.menu-tab i {
  font-size: 18px;
}

.menu-category {
  max-width: 1400px;
  margin: 0 auto 50px;
  padding: 0 4%;
}

.menu-section-title {
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-weight: 900;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #d62828;
  margin-bottom: 30px;
  text-align: center;
}

.menu-grid-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
}

.menu-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: 0.3s ease;
  flex: 0 0 auto;
  width: calc(25% - 19px);
  min-width: 280px;
  max-width: 350px;
}

#drinks .menu-card {
  flex: 0 0 320px;
  width: 320px;
}

.menu-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(214, 40, 40, 0.2);
}

.menu-card-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
  background: #f5f5f5;
}

.menu-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.3s ease;
}

.menu-card:hover .menu-card-image img {
  transform: scale(1.05);
}

.menu-card-content {
  padding: 20px;
}

.menu-card h4 {
  font-size: 18px;
  font-weight: 900;
  color: #d62828;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.menu-card-desc {
  font-size: 14px;
  color: #666;
  margin-bottom: 12px;
  line-height: 1.4;
}

.menu-card-price {
  font-size: 16px;
  font-weight: bold;
  color: #000;
}

.menu-call-banner {
  width: 100%;
  margin: 50px 0;
  padding: 0 4%;
}

.menu-call-banner img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
}

.menu-search-wrapper {
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 20px 15px;
}

.menu-search-form {
  width: 100%;
  max-width: 600px;
  display: flex;
  align-items: center;
  background: #ffffff;
  border-radius: 50px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  border: 2px solid #d40000;
}

#menuSearch {
  flex: 1;
  padding: 14px 20px;
  border: none;
  font-size: 16px;
  outline: none;
}

.menu-search-btn {
  background: #d40000;
  color: white;
  border: none;
  padding: 14px 22px;
  cursor: pointer;
  font-size: 16px;
  transition: background 0.3s ease;
}

.menu-search-btn:hover {
  background: #a80000;
}


/* ==========================================================================
   TESTIMONIALS SECTION
   ========================================================================== */
.testimonials-section {
  background: #ffffff;
  padding: 80px 4%;
  text-align: center;
  margin: 80px 0;
}

.testimonials-heading {
  font-size: clamp(2rem, 5vw, 2.8rem);
  font-weight: 900;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #d62828;
  margin-bottom: 60px;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.testimonial-card {
  background: #ffffff;
  padding: 35px 25px;
  border-radius: 16px;
  border: 2px solid crimson;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  font-size: 17px;
  font-weight: 600;
  line-height: 1.6;
  transition: 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 180px;
}

.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 45px rgba(214, 40, 40, 0.25);
}

.testimonials-closing {
  max-width: 900px;
  margin: 50px auto 0;
  padding: 0 4%;
  text-align: center;
}

.testimonials-closing p {
  font-size: 20px;
  line-height: 1.8;
  margin-bottom: 25px;
  color: #000;
}


/* ==========================================================================
   CONTACT PAGE
   ========================================================================== */
.contact-banner {
  width: 100%;
  margin: 0;
  overflow: hidden;
}

.contact-banner-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.contact-section {
  max-width: 700px;
  margin: 80px auto 60px auto;
  padding: 0 4%;
  text-align: center;
}

.contact-heading {
  font-size: 2.5rem;
  font-weight: 900;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #d62828;
  margin-bottom: 40px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 16px;
  font-size: 16px;
  border: 2px solid #d62828;
  border-radius: 8px;
  outline: none;
  transition: 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: #ffcc00;
  box-shadow: 0 0 8px rgba(255, 204, 0, 0.5);
}

.contact-btn {
  background: #d62828;
  color: #fff;
  padding: 16px;
  font-size: 18px;
  font-weight: 900;
  border: 3px solid #ffcc00;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.3s ease;
}

.contact-btn:hover {
  background: #ffcc00;
  color: #d62828;
}


/* ==========================================================================
   DARK MODE
   ========================================================================== */
body.dark-mode {
  background-color: #121212;
  color: #ffffff;
}

body.dark-mode .about-container,
body.dark-mode .contact-section,
body.dark-mode .menu-card,
body.dark-mode .testimonial-card,
body.dark-mode .testimonials-section {
  background-color: #1e1e1e;
}

body.dark-mode .navbar,
body.dark-mode .footer {
  background: #d62828;
}

/* Explicitly lock navbar flex in dark mode — prevents any shift */
body.dark-mode .navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

body.dark-mode .nav-left {
  width: 160px;
  flex-shrink: 0;
  justify-content: flex-start;
}

body.dark-mode .nav-links {
  flex: 1;
  justify-content: center;
  position: static;
  transform: none;
}

body.dark-mode .theme-item {
  width: 160px;
  flex-shrink: 0;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  position: static;
  transform: none;
  right: auto;
  top: auto;
}

body.dark-mode .nav-links a,
body.dark-mode .footer-links a,
body.dark-mode .footer-copy {
  color: #ffffff;
}

body.dark-mode .about-container p,
body.dark-mode .contact-section p,
body.dark-mode .menu-card-desc,
body.dark-mode .menu-card-price,
body.dark-mode .testimonials-closing p {
  color: #ffffff;
}

body.dark-mode .testimonials-section,
body.dark-mode .about-container,
body.dark-mode .contact-section,
body.dark-mode .menu-category,
body.dark-mode .menu-main-heading,
body.dark-mode .testimonials-closing {
  background: transparent;
}


/* ==========================================================================
   RESPONSIVE — TABLET  (max-width: 992px)
   ========================================================================== */
@media (max-width: 992px) {
  .about-top-banner {
    max-width: 900px;
    margin: 25px auto 40px auto;
  }

  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}


/* ==========================================================================
   RESPONSIVE — MOBILE  (max-width: 767px)
   ========================================================================== */
@media (max-width: 767px) {

  .navbar {
    justify-content: center;
    padding: 15px;
    min-height: 80px;
    flex-wrap: nowrap;
  }

  .nav-left {
    width: auto;
    flex-shrink: 0;
    justify-content: center;
  }

  .logo {
    height: 65px;
  }

  .hamburger {
    display: block;
    position: absolute;
    right: 20px;
    left: auto;
    top: 50%;
    transform: translateY(-50%);
  }

  /* Hide desktop theme-item (the one outside nav-links) */
  .theme-item {
    display: none;
  }

  /* But SHOW theme-item when it's inside the mobile dropdown nav-links */
  .nav-links .theme-item {
    display: flex;
    width: 100%;
    justify-content: center;
    align-items: center;
    padding: 12px 0;
  }

  /* Also show it when the menu is open */
  .nav-links.active .theme-item {
    display: flex;
  }

  .mobile-toggle {
    display: block;
    width: 100%;
    text-align: center;
    padding: 15px 0;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    background: #d62828;
    width: 100%;
    position: absolute;
    top: 100%;
    left: 0;
    padding: 15px 0;
    z-index: 2000;
    flex: unset;
    justify-content: unset;
    transform: none;
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links li {
    text-align: center;
    padding: 12px 0;
  }

  /* Override dark-mode desktop nav-links rules so mobile still works */
  body.dark-mode .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    flex: unset;
    justify-content: unset;
    flex-direction: column;
  }

  body.dark-mode .nav-links .theme-item,
  body.dark-mode .nav-links.active .theme-item {
    display: flex;
    width: 100%;
    justify-content: center;
    align-items: center;
    padding: 12px 0;
  }

  body.dark-mode .theme-item {
    display: none;
  }

  .specials-heading {
    margin: 40px 0 30px 0;
  }

  .specials {
    flex-direction: column;
    align-items: center;
    padding: 40px 8% 60px;
  }

  .special-item {
    width: 100%;
    max-width: 560px;
    margin: 0 auto;
  }

  .promo-banner {
    margin: 0 0 30px 0;
    padding: 0 4%;
  }

  .view-menu-wrapper {
    margin: 0 0 30px 0;
  }

  .home-call-banner-section {
    height: auto;
    margin: 0 0 30px 0;
    padding: 0 3%;
  }

  .home-call-banner-img {
    height: auto;
    object-fit: contain;
  }

  .call-now-wrapper {
    margin: 25px 0;
  }

  .call-now-btn {
    font-size: 18px;
    padding: 14px 26px;
    border-radius: 10px;
  }

  .footer {
    padding: 20px 3%;
  }

  .footer-content {
    gap: 10px;
  }

  .footer-links {
    gap: 20px;
  }

  .footer-links a {
    font-size: 14px;
  }

  .footer-links i {
    font-size: 18px;
  }

  .footer-copy {
    font-size: 12px;
  }

  .about-container {
    margin: 30px auto;
    padding: 0 8%;
  }

  .about-container p {
    font-size: 16px;
  }

  .about-inline-banner {
    margin: 30px auto;
    padding: 0 8%;
  }

  .about-banner-static {
    height: auto;
  }

  .about-banner-img {
    height: auto;
    object-fit: contain;
  }

  .about-top-banner {
    max-width: 100%;
    margin: 25px auto 35px auto;
    padding: 0 5%;
  }

  .about-top-banner-img {
    border-radius: 14px;
  }

  .menu-main-heading {
    margin: 30px 0 20px 0;
  }

  .menu-tabs {
    gap: 10px;
    margin-bottom: 30px;
    padding: 0 8%;
  }

  .menu-tab {
    padding: 10px 18px;
    font-size: 14px;
  }

  .menu-tab i {
    font-size: 16px;
  }

  .menu-category {
    margin: 0 auto 30px;
    padding: 0 8%;
  }

  .menu-grid-cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .menu-card-image {
    height: 180px;
  }

  .menu-call-banner {
    margin: 30px 0;
    padding: 0 8%;
  }

  .menu-search-form {
    max-width: 100%;
  }

  #menuSearch {
    font-size: 15px;
    padding: 12px 16px;
  }

  .menu-search-btn {
    padding: 12px 16px;
  }

  .contact-section {
    margin: 40px auto;
    padding: 0 8%;
  }

  .contact-heading {
    font-size: 2rem;
  }

  .testimonials-section {
    padding: 40px 6%;
    margin: 40px 0;
  }

  .testimonials-heading {
    margin-bottom: 30px;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .testimonial-card {
    padding: 25px 18px;
    font-size: 16px;
  }

  .testimonials-closing {
    margin: 30px auto 0;
    padding: 0 8%;
  }
}




.center-title {
  text-align: center;
}

.center-text {
  text-align: center;
}

.menu-price-group {
  margin-top: 8px;
}