* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  background-color: #fafafa;
  color: #222;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  transition: background-color 0.3s, color 0.3s;
}

/* CSS Variables for Light Theme Only */
body {
  --nav-bg: #ffffff;
  --nav-text: #222;
  --nav-hover: #f4a261;
  --nav-hover-text: #222;
  --btn-bg: #e76f51;
  --btn-text: #fff;
  --section-bg: #fff;
  --input-bg: #f9f9f9;
  --input-text: #222;
  --border-color: #ddd;
}

/* Navbar */
.navbar {
  background-color: var(--nav-bg);
  padding: 0.5rem 1rem;
  display: flex;
  align-items: center;
  /* remove space-between */
  justify-content: flex-start; /* aligns items to left */
  gap: 3rem; /* space between logo and nav links */
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 5px rgba(0,0,0,0.3);
}

.navbar .logo {
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--nav-text);
  /* no extra margin needed */
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 1.5rem;
  margin-left: 0; /* ensure no extra margin */
}
.nav-links a {
  text-decoration: none;
  color: var(--nav-text);
  font-weight: 600;
  padding: 0.3rem 0.6rem;
  border-radius: 5px;
  transition: background-color 0.3s;
}
.nav-links a:hover,
.nav-links a.active {
  background-color: var(--nav-hover);
  color: var(--nav-hover-text);
}
#toggleTheme {
  display: none; /* Remove toggle button since no dark mode */
}

/* Buttons */
.btn-primary {
  display: inline-block;
  background-color: var(--btn-bg);
  color: var(--btn-text);
  padding: 0.6rem 1.2rem;
  border: none;
  border-radius: 30px;
  font-weight: 700;
  cursor: pointer;
  transition: background-color 0.3s;
  text-decoration: none;
  user-select: none;
}
.btn-primary:hover {
  background-color: #f28f59;
}

/* Hero Section */
.hero {
  position: relative;
  width: 100vw;
  height: 100vh;
  background-image: url('Images/background\ image.jpg'); /* Make sure path is correct */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-overlay {
  text-align: center;
  color: #fff;
  padding: 2rem;
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 10px;
  max-width: 800px;
  margin: 0 auto;
}
.hero-overlay h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}
.hero-overlay p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

/* Features Section */
.features {
  display: flex;
  justify-content: space-around;
  padding: 3rem 1rem;
  background-color: var(--section-bg);
  color: var(--btn-text);
  flex-wrap: wrap;
  gap: 2rem;
}
.feature {
  flex: 1 1 250px;
  background-color: var(--btn-bg);
  border-radius: 15px;
  padding: 1.5rem;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  color: var(--btn-text);
  transition: transform 0.3s ease;
}
.feature:hover {
  transform: translateY(-5px);
}
.feature h2 {
  margin-bottom: 0.7rem;
}
.feature p {
  font-size: 1rem;
}

/* Main Headings */
h1 {
  margin: 2rem 1rem 1rem;
  text-align: center;
  font-weight: 700;
}
h2 {
  margin-bottom: 1rem;
  font-weight: 700;
}

/* Menu Page */
.menu-page {
  padding: 2rem;
  background-color: var(--section-bg);
  color: var(--nav-text);
}
.menu-Jai Bantaba {
  text-align: center;
  margin-bottom: 2rem;
}
.menu-Jai Bantaba h1 {
  font-size: 3rem;
  margin-bottom: 0.5rem;
}
.menu-section {
  margin-bottom: 3rem;
}
.menu-section h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  border-bottom: 2px solid var(--btn-bg);
  display: inline-block;
  padding-bottom: 0.5rem;
}
.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}
.menu-item {
  background-color: var(--section-bg);
  padding: 1rem;
  border-radius: 8px;
  text-align: center;
  transition: transform 0.3s ease;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  color: var(--nav-text);
}
.menu-item:hover {
  transform: translateY(-5px);
}
.menu-item img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 1rem;
}
.menu-item h3 {
  font-size: 1.4rem;
  margin-bottom: 0.3rem;
  color: var(--btn-bg);
}
.menu-item p.price {
  font-weight: bold;
  color: var(--btn-bg);
  margin: 0.5rem 0;
}
.menu-list {
  list-style: none;
  padding-left: 0;
  font-size: 1.1rem;
}
.menu-list li {
  padding: 0.5rem 0;
  border-bottom: 1px solid #eee;
}

/* Our Story */
.chef-story {
  display: flex;
  align-items: center;
  max-width: 900px;
  margin: 2rem auto;
  gap: 2rem;
  flex-wrap: wrap;
  padding: 0 1rem;
  color: var(--nav-text);
}
.chef-story img {
  border-radius: 15px;
  width: 300px;
  height: auto;
  object-fit: cover;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}
.chef-story div {
  flex: 1;
}

/* Sustainability Section */
.sustainability {
  max-width: 800px;
  margin: 0 auto 3rem;
  background-color: var(--section-bg);
  padding: 2rem;
  border-radius: 15px;
  color: var(--nav-text);
}
.sustainability ul {
  list-style: disc inside;
  margin-top: 1rem;
}
.sustainability li {
  margin-bottom: 0.5rem;
}

/* Reservation Form */
.reservation-form {
  max-width: 500px;
  margin: 2rem auto 3rem;
  background-color: var(--section-bg);
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  color: var(--nav-text);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.reservation-form label {
  font-weight: 600;
}
.reservation-form input,
.reservation-form select,
.reservation-form textarea {
  padding: 0.5rem;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  background-color: var(--input-bg);
  color: var(--input-text);
  font-size: 1rem;
}
.reservation-form input:focus,
.reservation-form select:focus,
.reservation-form textarea:focus {
  outline: none;
  border-color: var(--btn-bg);
  box-shadow: 0 0 5px var(--btn-bg);
}

/* Contactless ordering */
.contactless-order {
  max-width: 500px;
  margin: 0 auto 3rem;
  background-color: var(--section-bg);
  padding: 1.5rem;
  border-radius: 15px;
  text-align: center;
  color: var(--nav-text);
}
.contactless-order img {
  margin-top: 1rem;
  width: 150px;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

/* Contact Page */
.contact-info {
  max-width: 600px;
  margin: 2rem auto;
  padding: 0 1rem;
  font-size: 1.1rem;
  color: var(--nav-text);
}
.social-feed {
  max-width: 600px;
  margin: 2rem auto;
  padding: 0 1rem;
  color: var(--nav-text);
}
.social-feed h2 {
  margin-bottom: 1rem;
}
.social-embed {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

/* Contact form */
.contact-form {
  max-width: 500px;
  margin: 2rem auto 4rem;
  padding: 2rem;
  background-color: var(--section-bg);
  border-radius: 15px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  color: var(--nav-text);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.contact-form label {
  font-weight: 600;
}
.contact-form input,
.contact-form textarea {
  padding: 0.5rem;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  background-color: var(--input-bg);
  color: var(--input-text);
  font-size: 1rem;
}
.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--btn-bg);
  box-shadow: 0 0 5px var(--btn-bg);
}

/* Footer */
footer {
  text-align: center;
  padding: 1rem;
  background-color: var(--nav-bg);
  color: var(--nav-text);
  margin-top: auto;
  font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 768px) {
  .features {
    flex-direction: column;
    padding: 2rem 1rem;
  }
  .chef-story {
    flex-direction: column;
    align-items: center;
  }
  .chef-story img {
    width: 90%;
    max-width: 300px;
  }
  .menu-grid {
    grid-template-columns: 1fr;
    padding: 1rem;
  }
  .reservation-form,
  .contact-form,
  .contactless-order {
    width: 90%;
    margin: 2rem auto;
  }
}
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 30px;
  background-color: #fff;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
  margin: 0;
  padding: 0;
}

.nav-links li a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
}

.phone-number {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
}

.phone-number i {
  color: orange;
}

.phone-number a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
}
body {
  font-family: 'Poppins', sans-serif;
}

.menu-toggle {
  display: none;
  font-size: 1.8rem;
  background: none;
  border: none;
  cursor: pointer;
  color: #333;
}

@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    gap: 1rem;
    background-color: #fff;
    padding: 1rem 0;
    width: 100%;
  }

  .nav-links.active {
    display: flex;
  }

  .phone-number {
    margin-top: 1rem;
    width: 100%;
    justify-content: flex-start;
  }

  .navbar {
    flex-direction: row;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
  }
}


footer {
  background-color: #f4f4f4;
  padding: 2em 1em;
  text-align: center;
}

.footer-logo {
  font-size: 1.5em;
  font-weight: 600;
  color: #333;
  font-family: 'Poppins', sans-serif;
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer-nav {
  list-style: none;
  padding: 0;
  margin: 0 0 1em 0;
}

.footer-nav li {
  margin: 0.5em 0;
}

.footer-nav a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
}

.footer-nav a:hover {
  text-decoration: underline;
}

.footer-text p {
  margin: 0.3em 0;
  font-size: 0.95em;
  color: #555;
}
.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); /* More flexible column size */
  gap: 2rem;
  padding: 2rem;
  justify-items: center;
}

.menu-item {
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 12px;
  padding: 1rem;
  text-align: center;
  width: 100%;
  max-width: 350px; /* Slightly bigger cards */
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.menu-item img {
  width: 100%;
  height: 220px; /* Increased from default ~150px */
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 1rem;
}
.logo a {
  text-decoration: none;
  color: inherit;
}
.contact-hero {
  background-image: url('Images/contact us.jpg');
  height: 850px; /* adjust to desired size */
  background-size: contain;  /* or 'cover' if you want it to fill the space */
  background-repeat: no-repeat;
  background-position: center;
}