* {
    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 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 0.5rem 1rem;
    background-color: var(--nav-bg);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
  }
  
  /* --- LOGO --- */
  .navbar .logo {
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--nav-text);
  }
  
  /* --- NAV LINKS (centered in desktop using absolute) --- */
  .nav-links {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 1.5rem;
    list-style: none;
  }
  
  /* --- NAV LINK STYLING --- */
  .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);
  }
  
  /* --- HAMBURGER BUTTON --- */
  .menu-toggle {
    display: none;
    font-size: 1.8rem;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--nav-text);
  }
  
  /* Hero Section */
  .hero {
    position: relative;
    width: 100vw;
    height: 100vh;
    background-image: url('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-header {
    text-align: center;
    margin-bottom: 2rem;
  }
  .menu-header 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;
  }

  .hero-slider {
    position: relative;
    height: 100vh;
    overflow: hidden;
  }
  
  .slider-container {
    position: relative;
    width: 100%;
    height: 100%;
  }
  
  .slide {
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    z-index: 0;
  }
  
  .slide.active {
    opacity: 1;
    z-index: 1;
  }
  
  .hero-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    text-align: center;
    background-color: rgba(0, 0, 0, 0.4);
    padding: 2rem;
    border-radius: 8px;
  }
  
  .btn-primary {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.75rem 1.5rem;
    background-color: #f57c00;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
  }

  .arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 2rem;
    background: rgba(0, 0, 0, 0.3);
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    cursor: pointer;
    z-index: 10;
  }
  
  .arrow.left {
    left: 20px;
  }
  
  .arrow.right {
    right: 20px;
  }
  .slider-dots {
    position: absolute;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
  }
  
  .dot {
    width: 30px;
    height: 6px;
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 3px; /* Rounded ends like in your screenshot */
    cursor: pointer;
    transition: background-color 0.3s ease;
  }
  
  .dot.active {
    background-color: white;
  }
  .services-page {
    padding: 0;
  }
  
  .services-header {
    padding: 2rem 0 1rem 3rem; /* align exactly like "Lunch" */
    text-align: left;
  }
  
  .services-header h1 {
    font-size: 2.5rem;
    border-bottom: 3px solid #f57c00;
    display: inline-block;
    margin-bottom: 0.5rem;
  }
  
  .service-section {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    margin-bottom: 3rem;
    padding-left: 3rem; /* hard-align like the menu page */
    padding-right: 1rem;
  }
  
  .service-info h2 {
    font-size: 1.8rem;
    font-weight: 600;
    border-bottom: 2px solid #f57c00;
    padding-bottom: 0.3rem;
    margin-bottom: 1rem;
  }
  
  .service-info .price {
    font-size: 1.4rem; /* Increase this number for larger size */
    font-weight: lighter;
    color: black; /* Optional: makes it stand out */
    margin-left: 1rem;
  }
  
  .service-info ul {
    list-style: disc;
    padding-left: 1.5rem;
    font-size: 1rem;
    line-height: 1.7;
    color:black;
  }
  
  .service-image {
    width: 100%;
    max-width: 900px;
    border-radius: 8px;
    margin-top: 1rem;
    margin-left: 0; /* aligns image with text */
  }

  .about-header {
    padding: 2rem 0 1rem 3rem;
    text-align: left;
  }
  
  .about-header h1 {
    font-size: 2.5rem;
    border-bottom: 3px solid #f57c00;
    display: inline-block;
    margin-bottom: 1rem;
  }
  
  .about-content {
    padding: 0 3rem;
    max-width: 900px;
  }
  
  .about-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    color: black;
  }
  
  .about-image {
    flex: 1;
    max-width: 600px;
    height: auto;
    border-radius: 8px;
  }
  .service-flex {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 3rem;
  }
  
  .service-info {
    width: 100%;
    max-width: 600px;
  }
  
  .service-image {
    width:680px;
    height: 300px;
    object-fit: cover;
    border-radius: 8px;
    margin-top: 0;
  }

  .service-image--first {
    width: 900px;
    height: 400px;
    object-fit: cover;
  }

  .invisible-text {
    color: #fafafa;
  }
  .small-heading {
    font-size: 1.2rem !important;
  }
  .sub-note {
  font-size: 0.5em;
  font-weight: bold;
  margin-left: 0.5rem;
}
@media (max-width: 768px) {
  .service-flex {
    flex-direction: column;
    align-items: center;
    text-align: left;
  }

  .service-image {
    width: 100%;
    max-width: 500px;
    height: auto;
    margin-top: 1rem;
  }

  .service-info {
    width: 100%;
  }
}
.container {
  max-width: 1200px; /* Adjust based on your design */
  margin: 0 auto;
  padding: 0 20px;
}

.service-image {
  margin-top: 4.5rem; /* adjust this value as needed */
}
.services-title {
  font-size: 2.5rem;
  border-bottom: 3px solid #f57c00;
  display: inline-block;
  margin-bottom: 0.5rem;
  margin-left: -0.0rem; /* Nudges the heading left to match other text */
}
@media (max-width: 768px) {
  .service-flex {
    flex-direction: column;
    align-items: center;
    text-align: left;
  }

  .service-info {
    width: 100%;
  }

  .about-image {
    width: 100%;
    max-width: 100%;
    margin-top: 1.5rem;
  }

  .services-title {
    margin-left: 0;
  }
}
@media (max-width: 768px) {
  .navbar {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }

  .menu-toggle {
    display: block;
  }

  .nav-links {
    position: static;
    transform: none;
    flex-direction: column;
    width: 100%;
    background-color: var(--nav-bg);
    margin-top: 1rem;
    display: none;
    padding-left: 0;
  }

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

  .nav-links li {
    padding: 0.5rem 1rem;
    width: 100%;
  }
}
.red-text {
  color: red;
  font-weight: bold;
  font-size: 1.10rem;
}
.service-heading .price {
  margin-left: 0.3rem; /* Adjust spacing as needed */
  display: inline;     /* Keep it inline with the heading */
}