body {
    background: #151f2b;
    color: #ffe600;
    font-family: 'Segoe UI', Arial, sans-serif;
    margin: 0;
    padding: 0;
}

.main-header {
    background: linear-gradient(#1b2738, #283756);
    text-align: center;
    padding: 45px 0 20px 0;
    border-bottom: 2px solid #ffe600;
}

.main-header h1 {
    font-size: 2.7rem;
    margin: 0;
    letter-spacing: 2px;
}

.subtitle {
    font-size: 1.1rem;
    color: #fffad5;
}

.navbar {
    background: #16233e;
    padding: 10px 0;
    text-align: center;
    box-shadow: 0 3px 10px rgba(23, 35, 62, 0.13);
}

.navbar ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: inline-flex;
    gap: 30px;
}

.navbar ul li a {
    color: #ffe600;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.15rem;
    transition: color 0.2s;
}

.navbar ul li a:hover {
    color: #fffad5;
}

.featured-dishes {
    max-width: 980px;
    margin: 40px auto 0 auto;
    padding: 12px;
}

.featured-dishes h2 {
    text-align: center;
    font-size: 1.7rem;
    color: #ffe600;
    border-bottom: 1px solid #fffad5;
    padding-bottom: 10px;
}

.dishes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
    gap: 18px;
    margin-top: 32px;
}

.dish-card {
    background: #223046;
    padding: 22px;
    border-radius: 14px;
    box-shadow: 0 2px 12px rgba(23, 35, 62, 0.09);
    text-align: center;
    color: #fffad5;
}

.dish-card img {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 2px 6px rgba(23, 35, 62, 0.14);
    margin-bottom: 18px;
}

.dish-card h3 {
    margin: 0 0 8px 0;
    color: #ffe600;
    font-size: 1.17rem;
    font-weight: bold;
}

.dish-card p {
    font-size: 1rem;
    color: #fffad5;
}


@media (max-width: 700px) {
    .main-header {
        padding: 30px 0 10px 0;
    }

    .main-header h1 {
        font-size: 1.7rem;
    }

    .subtitle {
        font-size: 0.96rem;
        padding: 0 8px;
    }

    .navbar ul {
        flex-direction: column;
        display: flex;
        gap: 10px;
        font-size: 1rem;
        padding: 0 8px;
        display: none;
    }

    .featured-dishes {
        padding: 8px;
        margin-top: 24px;
    }

    .dishes-grid {
        grid-template-columns: 1fr;
        gap: 16px;
        margin-top: 18px;
    }

    .dish-card {
        padding: 16px;
        font-size: 0.98rem;
    }

    .dish-card img {
        width: 70px;
        height: 70px;
    }

    
}

.main-header {
    background: #1b2738;
    text-align: center;
    padding: 30px 0;
    border-bottom: 2px solid #ffe600;
    display: flex;
    justify-content: center;
    align-items: center;
}

.main-header img {
    max-width: 500px;
    width: 90%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(23, 35, 62, 0.4);
}

@media (max-width: 700px) {
    .main-header {
        padding: 20px 0;
    }

    .main-header img {
        max-width: 300px;
        width: 100%;
        border-radius: 10px;
        box-shadow: 0 3px 9px rgba(23, 35, 62, 0.3);
    }
}

/* Desktop styles */
.desktop-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    margin: 0;
    padding: 0;
}

.nav-left,
.desktop-menu {
    align-items: center;
    display: flex;
}

/* Hide hamburger and mobile menu on desktop */
.hamburger,
.mobile-menu {
    display: none;
}

/* Mobile styles */
@media (max-width: 700px) {

    /* Hide desktop menu on mobile */
    .desktop-menu {
        display: none;
    }

    /* Show hamburger and mobile menu container */
    .hamburger {
        display: block;
        font-size: 28px;
        color: #ffe600;
        background: none;
        border: none;
        cursor: pointer;
    }

    .nav-left {
        flex: none;
    }

    .nav-right {
        display: flex;
    }

    /* Mobile menu hidden by default */
    .mobile-menu {
        display: none;
        flex-direction: column;
        background: #17233e;
        list-style: none;
        padding: 10px 20px;
        margin: 0;
    }

    .mobile-menu.active {
        display: flex;
    }

    .mobile-menu li {
        border-bottom: 1px solid #2c3a59;
    }

    .mobile-menu li a {
        color: #ffe600;
        text-decoration: none;
        display: block;
        padding: 12px 0;
        font-weight: 600;
    }
}

header {

    background-image: url('bg.jpg') !important;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
}



.hero-section {
    position: relative;
    width: 100%;
    min-height: 100vh;
    background: url('assets/images/banner.png') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-overlay {
    width: 100%;
    text-align: center;
    color: #fff;
    position: relative;
    z-index: 2;
    padding: 60px 10px;
}

.hero-title {
    font-family: 'Merriweather', serif;
    font-size: 3rem;
    font-weight: 900;
    color: #ffe600;
    margin-bottom: 18px;
    letter-spacing: 2px;
    text-shadow: 2px 2px 11px rgba(0, 0, 0, 0.24);
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 24px;
    text-shadow: 1px 1px 10px rgba(0, 0, 0, 0.16);
    color: #fff;
}

.hero-btn {
    display: inline-block;
    background: #ffe600;
    color: #2c3a59;
    padding: 16px 32px;
    border-radius: 6px;
    font-weight: bold;
    font-size: 1.25rem;
    text-decoration: none;
    box-shadow: 2px 2px 7px rgba(0, 0, 0, 0.14);
    transition: background 0.2s;
}

.hero-btn:hover {
    background: #2c3a59;
    color: #ffe600;
}

/* Responsive Styles */
@media (max-width: 700px) {
    .hero-section {
        min-height: 38vh;
    }

    .hero-title {
        font-size: 2rem;
        margin-bottom: 10px;
    }

    .hero-subtitle {
        font-size: 1.07rem;
        margin-bottom: 14px;
    }

    .hero-btn {
        font-size: 1rem;
        padding: 11px 20px;
    }
}



.about-section {
    padding: 65px 20px;
    max-width: 950px;
    margin: 0 auto;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.about-section.visible {
    opacity: 1;
    transform: translateY(0);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 38px;
    align-items: center;
}

.about-img img {
    width: 100%;
    max-width: 400px;
    border-radius: 10px;
    box-shadow: 0 4px 18px rgba(23, 35, 62, 0.15);
    object-fit: cover;
    display: block;
}

.about-label {
    color: #ab1616;
    font-weight: bold;
    letter-spacing: 2px;
    font-size: 1rem;
    margin-bottom: 8px;
}

.about-content h2 {
    font-family: 'Merriweather', serif;
    font-size: 2.3rem;
    font-weight: 800;
    margin-bottom: 17px;
    color: #ffe600;
}

.about-content p {
    font-size: 1.07rem;
    color: #fff;
    margin-bottom: 12px;
    line-height: 1.8;
}

/* Responsive Mobile Styles */
@media (max-width: 800px) {
    .about-section {
        padding: 40px 15px;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .about-img img {
        max-width: 100%;
    }

    .about-content h2 {
        font-size: 1.8rem;
    }
}


.order-online-section {
  position: relative;
  width: 100%;
  min-height: 500px;
  background: url('assets/images/banner.png') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
}

.order-online-overlay {
  width: 100%;
  text-align: center;
  color: #fff;
  position: relative;
  z-index: 2;
  background: rgba(20, 30, 30, 0.34);
  padding: 40px 15px;
  border-radius: 8px;
}

.order-title {
  font-family: 'Merriweather', serif;
  font-size: 2.2rem;
  font-weight: 900;
  color: #fff;
  margin-bottom: 22px;
  text-shadow: 2px 2px 8px rgba(0,0,0,0.18);
}

.order-platforms {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

.order-logo {
  display: block;
  width: 170px;
  height: 115px;
  margin: 0;
  background: #fff;
  border-radius: 4px;
  overflow: hidden;
}
.order-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  background: #fff;
}

/* Slight separation between logos */
/* .zomato-logo {
  border-right: 4px solid #fff;
} */

/* Responsive styles for mobile */
@media (max-width: 700px) {
  .order-title {
    font-size: 1.3rem;
    margin-bottom: 18px;
  }
  .order-platforms {
    flex-direction: column;
    gap: 8px;
  }
  .order-logo {
    width: 140px;
    height: 70px;
  }
  .order-online-section {
    min-height: 190px;
    padding: 0;
  }
}



.popular-dishes-section {
  max-width: 1160px;
  margin: 0 auto;
  padding: 70px 20px 30px 20px;
  background: #151f2b;
}

.dishes-title {
  font-family: 'Merriweather', serif;
  font-size: 2.1rem;
  color: #ffe600;
  margin-bottom: 30px;
  text-align: left;
  font-weight: 800;
}

.dishes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 38px 22px;
}

.dish-card {
  background: #fcfbfa;
  border-radius: 9px;
  box-shadow: 0 4px 18px rgba(23, 35, 62, 0.12);
  padding: 16px 20px 28px 20px;
  text-align: left;
  transition: box-shadow 0.25s, transform 0.25s;
  opacity: 0;
  transform: translateY(40px);
}

.dish-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.dish-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 7px;
  box-shadow: 0 2px 9px rgba(23, 35, 62, 0.18);
}

.dish-card h3 {
  color: #151f2b;
  font-size: 1.2rem;
  font-weight: bold;
  margin: 15px 0 10px 0;
  letter-spacing: 1px;
}

.dish-card p {
  font-size: 1rem;
  color: #444;
  line-height: 1.55;
  margin-bottom: 0;
}

.dish-card:hover {
  box-shadow: 0 8px 30px rgba(23,35,62,0.18);
  transform: translateY(-7px) scale(1.03);
}

/* Responsive design */
@media (max-width: 900px) {
  .dishes-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px 12px;
  }
  .dish-card img {
    height: 200px;
  }
  .popular-dishes-section {
    padding-left: 8px;
    padding-right: 8px;
  }
  .dishes-title {
    font-size: 1.5rem;
    margin-bottom: 20px;
  }
}

@media (max-width: 600px) {
  .dishes-grid {
    grid-template-columns: 1fr;
    gap: 13px 0;
  }
  .dish-card img {
    height: 200px;
  }
  .dish-card {
    padding: 10px 10px 18px 10px;
  }
}




.quality-section {
  width: 100%;
  min-height: 300px;
  background: url('ingredients-bg.jpg') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.quality-overlay {
  width: 100%;
  text-align: center;
  z-index: 2;
  padding: 55px 12px 45px 12px;
  background: rgba(22, 19, 15, 0.38);
  display: flex;
  align-items: center;
  justify-content: center;
}

.quality-title-wrap {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Decorative lines left or right of headline */
.quality-title {
  font-family: 'Merriweather', serif;
  font-weight: 800;
  font-size: 2.5rem;
  color: #fff;
  position: relative;
  background: transparent;
  margin: 0 24px;
}
.quality-title:before,
.quality-title:after {
  content: '';
  display: inline-block;
  vertical-align: middle;
  border-top: 3px solid #fff;
  width: 85px;
  margin: 0 20px;
}
.quality-title:before { margin-left: 0; }
.quality-title:after { margin-right: 0; }

/* Responsive styles for headline and lines */
@media (max-width: 800px) {
  .quality-title {
    font-size: 1.3rem;
    margin: 0 7px;
  }
  .quality-title:before,
  .quality-title:after {
    width: 35px;
    margin: 0 7px;
  }
  .quality-overlay {
    padding: 28px 6px 18px 6px;
  }
  .quality-section {
    min-height: 120px;
  }
}


.features-section {
  padding: 55px 12px 40px 12px;
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px 15px;
}

.feature-card {
  text-align: center;
  padding: 18px 12px 16px 12px;
  border-radius: 9px;
  background: #f7f2ee;
  box-shadow: 0 2px 8px rgba(23, 35, 62, 0.10);
  transition: box-shadow 0.3s, transform 0.3s;
  opacity: 0;
  transform: translateY(24px);
}

.feature-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.feature-icon {
  font-size: 54px;
  color: #17233e;
  margin-bottom: 12px;
}

.feature-card h3 {
  color: #17233e;
  font-size: 1.13rem;
  font-weight: bold;
  margin-bottom: 10px;
  letter-spacing: 1px;
}

.feature-card p {
  font-size: 0.96rem;
  color: #3c3937;
  line-height: 1.55;
}

.feature-card:hover {
  box-shadow: 0 8px 40px rgba(23,35,62,0.15);
  transform: translateY(-7px) scale(1.03);
}

/* Responsive */
@media (max-width: 900px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px 8px;
  }
  .feature-icon { font-size: 44px; }
  .features-section { padding: 26px 4px 18px 4px; }
}

@media (max-width: 600px) {
  .features-grid {
    grid-template-columns: 1fr;
    gap: 11px 0;
  }
  .feature-card { padding: 14px 4px 12px 4px; }
  .feature-icon { font-size: 36px; }
}




.reviews-section {
  max-width: 900px;
  margin: 60px auto 80px auto;
  padding: 10px 15px;
  
  text-align: center;
}

.reviews-title {
  font-family: 'Merriweather', serif;
  font-weight: 800;
  font-size: 2.5rem;
  color: #ffe600;
  margin-bottom: 36px;
}

.reviews-carousel {
  position: relative;
  display: flex;
  align-items: center;
  max-width: 780px;
  margin: 0 auto;
}

.reviews-wrapper {
  flex: 1;
  overflow: hidden;
  position: relative;
  min-height: 180px;
}

.review-card {
  opacity: 0;
  position: absolute;
  width: 100%;
  transition: opacity 0.6s ease, transform 0.6s ease;
  padding: 20px 30px;
  box-sizing: border-box;
  border-radius: 10px;
  background: #f7f2ee;
  box-shadow: 0 4px 14px rgba(171,22,22,0.15);
  color: #3a3a3a;
  font-size: 1.1rem;
  line-height: 1.5;
  user-select: none;
  transform: translateX(100%);
}

.review-card.active {
  opacity: 1;
  position: relative;
  transform: translateX(0);
}

.review-text {
  font-style: italic;
  margin-bottom: 18px;
  color: #5d3a3a;
}

.reviewer-info {
  font-weight: 700;
  color: #17233e;
  font-size: 1rem;
}

.reviewer-info span {
  display: block;
  font-weight: 400;
  font-size: 0.88rem;
  color: #6a6666;
}

/* Carousel buttons */
.carousel-btn {
  background: none;
  border: none;
  font-size: 2.8rem;
  color: #ffe600;
  cursor: pointer;
  padding: 15px 12px;
  transition: color 0.3s;
  user-select: none;
}

.carousel-btn:hover {
  color: #ffe600;
}

.prev-btn {
  margin-right: 10px;
}

.next-btn {
  margin-left: 10px;
}

/* Responsive */
@media (max-width: 650px) {
  .reviews-title {
    font-size: 1.8rem;
    margin-bottom: 24px;
  }
  .reviews-carousel {
    flex-direction: column;
  }
  .carousel-btn {
    font-size: 2rem;
    padding: 10px 8px;
  }
  .prev-btn, .next-btn {
    margin: 6px 0;
  }
}




/* footer {
    background: #16233e;
    color: #ffe600;
    text-align: center;
    padding: 22px 0;
    margin-top: 34px;
    font-size: 1.02rem;
} */


.main-footer {
  background: #16233e;
  color: #ffe600;
  padding: 70px 15px 30px 15px;
  font-family: 'Merriweather', serif;
}

.footer-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 34px;
  align-items: flex-start;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  /* align-items: flex-start; */
  min-width: 180px;
  text-align: center;
}

.footer-logo {
  width: 250px;
  height: auto;
  margin-bottom: 10px;
  border-radius: 7px;
  /* background: #fff; */
  padding: 7px;
}

.brand-title {
  font-weight: 900;
  font-size: 1.15rem;
  margin-bottom: 4px;
}

.brand-desc {
  font-size: 0.98rem;
  color: #fff7eb;
}

.footer-section {
  margin-bottom: 16px;
}

.footer-heading {
  font-size: 1.12rem;
  font-weight: bold;
  margin-bottom: 14px;
  letter-spacing: 1px;
}

.footer-socials a {
  display: inline-block;
  background: #ffe600;
  color: #16233e;
  margin-right: 14px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  text-align: center;
  line-height: 46px;
  font-size: 1.35rem;
  transition: background 0.2s;
}
/* .footer-socials a:hover {
  background: #fff;
  color: #ffe600;
} */

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-links li {
  margin-bottom: 12px;
}
.footer-links a {
  color: #fff;
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover {
  color: #ffe600;
}

.footer-contact div {
  margin-bottom: 10px;
  font-size: 1.2rem;
  color: #fff;
  line-height: 1.8rem;
}

/* Responsive Styles */
@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }
  .footer-brand {
    min-width: 0;
  }
}

@media (max-width: 600px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 18px;
    text-align: center;
  }
  .footer-section, .footer-brand {
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
  }
  .footer-logo {
    margin: 0 auto 10px auto;
  }
}


.copyright-bar {
  background: #161616;
  color: #e6e6e6;
  font-family: 'Merriweather', serif;
  font-size: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 13px 32px 11px 32px;
  /* width: 100%; */
  min-height: 32px;
}

.copyright-left {
  font-weight: 600;
}

.copyright-right {
  color: #bfbfbf;
  font-size: 0.98rem;
}

.designer {
  color: #ffe600;
  font-weight: 700;
}

/* Responsive for mobile */
@media (max-width: 700px) {
  .copyright-bar {
    flex-direction: column;
    text-align: center;
    padding: 11px 6px 10px 6px;
    font-size: 0.98rem;
  }
  .copyright-left,
  .copyright-right {
    margin: 3px 0;
  }
}


