* {
  box-sizing: border-box;
}
body {
  margin: 0;
  font-family: Arial, sans-serif;
  overflow-x: hidden;
}

.hamburger {
  z-index: 2000;
}
.nav-links {
  z-index: 999;
}

/* Hamburger Navbar */
.hamburger{
  display: none;
  flex-direction: column;
  cursor: pointer;
  z-index: 2000;
}
.hamburger span{
  height: 3px;
  width: 25px;
  background: white;
  border-radius: 2px;
  margin: 4px 0;
  transition: 0.3s ease;
}

.hamburger.active span:nth-child(1) {
      transform: rotate(45deg) translate(10px, 10px);
    }

.hamburger.active span:nth-child(2) {
      opacity: 0;
    }

.hamburger.active span:nth-child(3) {
      transform: rotate(-45deg) translate(5px, -5px);
    }


/* Navbar */
.navbar {
  color: #fff;
  display: flex;
  justify-content: space-between;
  flex-direction: row;
  padding: 20px 180px;
  align-items: center;
  position: absolute;
  top: 0;
  z-index: 1000;
  width: 100%;
}

.logo {
  display: flex;
  gap: 20px;
  align-items: center;
}
.logo a {
  text-decoration: none;
}
.logo img{
  width: 55px;
}
.logoName {
  font-size: 24px;
  font-weight: bold;
  color: white;
}

.logo-line1 {
  font-size: 24px;
  letter-spacing: 5px;
}

.logo-line2 {
  font-size: 10px;
  letter-spacing: 5px;
}

.nav-links {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
}

.nav-links li a {
  color: white;
  text-decoration: none;
  font-weight: bold;
}

.nav-links li a:hover{
  text-decoration: underline;
  color: pink;
}

/* Hero / Slides */

.homeSlide{
  width: 100%;
  height: 85vh; 
  overflow: hidden;
  position: relative;
}

.slides {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: none;
}


@media (max-width:568px){
  .homeSlide{
    height: 40vh; 
}
 
  
  .navbar{
      position: fixed;
    background-color: #fff;
    height:9%;
    }
    .logo{
      gap: 15px;
    }
    .logoName{
    color:black;
    font-size: 18px;
  }
  .logo img{
      width: 40px;
    }
    .logo-line1{
      font-size: 18px;
    }

    .logo-line2{
      font-size: 8px;
    }

    .hamburger span{
      background: black;
    }
}

/* Intro Section */
.intro {
  margin-top: 100px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 5%;
  padding: 40px 5%;
  min-height: 300px;
}

.introText {
  flex: 1 1 400px;
  max-width: 500px;
  text-align: center;
}

.introImage {
  flex: 1 1 400px;
  max-width: 500px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.introImage img{
  width: 100%;
  max-width: 400px;
  height: auto;
  object-fit: contain;
}

@media (max-width: 768px) {
  .introImage img {
    max-width: 300px;
  }
}

/* Speciality Section */
.speciality {
  margin-top: 100px;
  text-align: center;
  padding: 0 5%;
  max-width: 1200px;
  margin: 100px auto 0;
}

.specialityImage {
  margin: 50px auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px,1fr));
  gap: 20px;
  max-width: 1100px;
  width: 100%;
  justify-items: center;
}

.image-card {
  position: relative;
  width: 100%;
  max-width: 800px;
  border-radius: 10px;
  overflow: hidden;
  text-align: center;
  transition: transform 0.3s ease;
}

.image-card img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
   transition: transform 0.3s ease;
}

.caption {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 12px 0;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  font-weight: 600;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
   transition: transform 0.3s ease;

}

.image-card:hover img,.image-card:hover .caption{
  transform: scale(1.05);
}

/* Testimonial section*/
.testimonials {
  background: linear-gradient(to left, #6f4e37, #a1887f); /* coffee brown */
  padding: 5px 40px 100px;
  border-bottom-right-radius: 200px;
  border-top-left-radius: 200px;
  margin: 150px auto;
  width: 90%;
  max-width: 1200px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: background 0.6s ease;
}

@media (min-width:768px){
  .testimonials:hover {
   background: linear-gradient(to right, #5a3c2b, #8e7b70);
   border-bottom-left-radius: 200px;
  border-top-right-radius: 200px;
  border-bottom-right-radius: 0px;
  border-top-left-radius: 0px;
}
}

.testimonials h3 {
  font-size: 2rem;
  color: #fff;
  margin-bottom: 30px;
  font-family: 'Segoe UI', sans-serif;
  letter-spacing: 2px;
  text-align: center;
}


.testimonials iframe {
  width: 100%;
  height:750px;
  border: none;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
  background-color: #fff;
}

/* Home Order Section- zomato, swiggy*/
.homeOrder {
  margin-top: 100px;
  margin-bottom: 80px;
  text-align: center;
  color: rgb(244, 82, 109);
  font-size: 30px;
  font-weight: bold;
}

.orderImages {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 120px;
}

.orderImages img {
  width: 150px;
}

.orderImages img:hover{
  transform: scale(1.15);
}

/* Footer Section */
footer {
  background-color: #333;
  width: 100%;
}

.footer {
  color: white;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 50px 5%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

/* Back to Top Arrow */
#backToTop {
  position: fixed;
  bottom: 30px;
  right: 25px;
  background-color:rgb(9, 94, 212);
  color:white;
  border: none;
  border-radius: 25%;
  padding: 10px 15px;
  font-size: 30px;
  cursor: pointer;
  box-shadow: 0 0 10px rgba(0,0,0,0.3);
  display: none;
  z-index: 999;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

#backToTop:hover {
  transform: translateY(-3px);
}

.Business_hours ul li {
  list-style: none;
  padding-bottom: 15px;
  transform: translateX(-15%);
}


.social a img {
  border-radius: 50%;
  width: 40px;
  margin-top: 15px;
  margin-right: 15px;
}

.visit_us strong,.call strong{
  color: #b93b6b;
}

.call a{
  color: white;
  text-decoration: none;
}

.call a:hover{
  text-decoration: underline;
}

.copyright {
  height: 80px;
  text-align: center;
  background-color: #1b1b1b;
  color: wheat;
  opacity: 0.7;
}
.copyright p {
  padding: 2.1%;
}


/* About Section */
.aboutheading {
  text-align: center;
  margin-top: 100px;
}

.aboutheading span {
  color: palevioletred;
  font-size: 18px;
}

.aboutheading h2 {
  font-size: 35px;
  letter-spacing: 1.2px;
  color: #333;
}

.aboutpara {
  font-size: 17px;
  line-height: 32px;
  max-width: 600px;
  opacity: 0.7;
}

.aboutdown {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 40px;
  padding: 0 5%;
  margin-bottom: 100px;
  max-width: 1200px;            /* ✅ Optional, to keep it from going full width */
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.mission,
.vision,.aboutImage{
  flex: 1 1 300px;
  max-width: 33.3%;
  text-align: center;
}

.aboutImage img{
  width: 100%;
  height: auto;
  max-width: 300px;
  object-fit: contain;
  display: block;
  margin: 0 auto;
}

.mission h2,
.vision h2 {
  font-size: 40px;
  color: #333;
}

.mission p,
.vision p {
  font-size: 20px;
  opacity: 0.7;
  line-height: 28px;
}


/* menu page styling*/
.menuIntro {
  text-align: center;
  margin-top: 70px;
}

.menuIntro span {
  color: #cf8627;
  font-size: 16px;
}

.menuIntro h2 {
  font-size: 32px;
  letter-spacing: 2px;
  line-height: 1.3;
  color: #282828;
}

.menuIntro p {
  font-size: 17px;
  line-height: 1.7;
  opacity: 0.9;
}

#menuSection {
  padding: 0px 5%;
  margin-top: 70px;
  text-align: center;
}

#categoryButtons {
  margin-bottom: 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
}
/* Base Category Button Styling */
#categoryButtons button {
  padding: 10px 20px;
  font-size: 16px;
  font-weight: bold;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.3s ease;
  animation: fadeIn 0.5s ease-in-out;
}

.all-menu-wrapper {
  flex: 1;
  gap: 16px;
  padding: 10px;
  margin-bottom: 100px;
}

.all-menu-wrapper .allmenuImg {
  width: 100%;
  max-width: 500px;
  margin: 10px;
  animation: fadeIn 1s ease-in-out;
}


/* FadeIn Keyframes */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateX(400px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


/* Different styles for each category */
.btn-all{
  background-color: #e7433d;
  color: white;
}
.btn-all:hover{
  background-color: rgb(251, 26, 26);
  transform: scale(1.05);
}

.btn-starters {
  background-color: #ff9472;
  color: white;
}
.btn-starters:hover {
  background-color: #ff6f61;
  transform: scale(1.05);
}

.btn-main {
  background-color: #845ec2;
  color: white;
}
.btn-main:hover {
  background-color: #6a4fb3;
  transform: scale(1.05);
}

.btn-rice {
  background-color: #00c9a7;
  color: white;
}
.btn-rice:hover {
  background-color: #00a189;
  transform: scale(1.05);
}

.btn-beverages {
  background-color: #f9a825;
  color: white;
}
.btn-beverages:hover {
  background-color: #c17900;
  transform: scale(1.05);
}

.btn-desserts {
  background-color: #ff6f91;
  color: white;
}
.btn-desserts:hover {
  background-color: #e85a78;
  transform: scale(1.05);
}

#subCategoryButtons {
  margin-bottom: 50px;
   display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
}
/* Subcategory Buttons */
#subCategoryButtons button {
  padding: 10px 20px;
  font-size: 15px;
  border: none;
  cursor: pointer;
  border-radius: 20px;
  background-color: #e0e0e0;
  color: #333;
  transition: 0.3s ease;
  animation: fadeIn 0.6s ease-in-out;
}

#subCategoryButtons button:hover {
  background-color: #d32f2f;
  color: white;
  transform: scale(1.05);
}

/* Fade-in animation for menu images */
.menuImg {
  margin-bottom: 100px;
  width: 100%;
  max-width: 700px;
  animation: fadeIn 1s ease-in-out;
}

/* FadeIn Keyframes */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateX(400px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

#contact {
  padding: 60px 5%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 80px;
  max-width: 1200px;
  margin: 0 auto;
}

.textPart{
  flex: 1 1 400px;
  max-width: 500px;
  font-size: 17px;
  line-height: 28px;
  color: #333;
  padding: 10px;
}

.textPart p{
 margin-bottom: 16px;
}

.textPart strong{
  color: #b93b6b;
}

.textPart .social {
  margin-top: 10px;
}

.textPart .social img {
  width: 35px;
  margin-right: 10px;
  border-radius: 50%;
}

.mapContainer {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  margin-top: 40px;
}

.mapBlock {
  flex: 1 1 400px;
  max-width: 500px;
  min-width: 300px;
  padding: 10px;
}

.mapBlock h3 {
  margin-bottom: 10px;
  font-size: 20px;
  color: #b93b6b;
  text-align: center;
}

.mapBlock iframe {
  width: 100%;
  height: 300px;
  border: none;
  border-radius: 10px;
}

@media (max-width: 992px){
  .navbar {
    flex-direction: row;
    padding: 15px 20px;
  }

  .logo {
    justify-content: flex-start;
  }

  .hamburger {
    display: flex;
    position: absolute;
    right: 20px;
    top: 20px;
  }

  .nav-links {
    display: none !important;
    flex-direction: column;
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    background: #222;
    padding: 30px 10px;
    gap: 20px;
    z-index: 999;
    text-align: center;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.3);
    border-radius: 0 0 10px 10px;
    opacity: 0;
    pointer-events: none;
  }

  .nav-links.active {
    display: flex !important;
    opacity: 1;
    pointer-events: all;
    animation: fadeInNav 0.3s ease-in-out;
  }


  .nav-links li a {
    color:white;
    font-size: 18px;
    padding: 10px 0;
    border-bottom: 1px solid #fff;
    display: inline-block;
  }

  .nav-links li:last-child a {
    border-bottom: none;
  }
}


/* -------------------- Responsive Styles (Max-width: 768px) -------------------- */
 @media (max-width: 768px) {
  /* Navbar */
  .navbar {
    flex-direction: row;
    padding: 15px 20px;
  }

  .logo {
    justify-content: flex-start;
  }

  .hamburger {
    display: flex;
    position: absolute;
    right: 20px;
    top: 20px;
  }
  
  .homeSlide{
      height:40vh;
  }

  .nav-links {
    display: none !important;
    flex-direction: column;
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    background: #222;
    padding: 30px 10px;
    gap: 20px;
    z-index: 999;
    text-align: center;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.3);
    border-radius: 0 0 10px 10px;
    opacity: 0;
    pointer-events: none;
  }

  .nav-links.active {
    display: flex !important;
    opacity: 1;
    pointer-events: all;
    animation: fadeInNav 0.3s ease-in-out;
  }

  .nav-links li a {
    font-size: 18px;
    padding: 10px 0;
    border-bottom: 1px solid #fff;
    display: inline-block;
  }

  .nav-links li:last-child a {
    border-bottom: none;
  }

  /* Intro Section */
  .introImage img {
    max-width: 300px;
  }

  /* Speciality Section */
.speciality {
    padding: 0 20px;
  }

  .specialityImage {
    grid-template-columns: 1fr;
    gap: 20px;
    justify-items: center;
  }

  .image-card {
    max-width: 400px;
    width: 80%;
  }

  .image-card img {
    width: 100%;
  }

  .caption {
    width: 100%;
    font-size: 1rem;
    padding: 8px 0;
  }

  /* Home Order Section */
  .orderImages {
    gap: 40px;
  }

  .orderImages img {
    width: 120px;
  }

  /* Footer */
  .footer {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .Business_hours ul li {
    transform: none;
  }

  /* About Section */
  .aboutdown {
    flex-direction: column;
    text-align: center;
  }

  .mission,
  .vision,
  .aboutImage {
    max-width: 100%;
  }

  /* Menu Page */
  #categoryButtons {
    gap: 10px;
  }

  #subCategoryButtons {
    gap: 10px;
  }

  .menuImg {
    width: 100%;
    max-width: 100%;
  }

  /* Contact Page */
  #contact {
    flex-direction: column;
    gap: 40px;
    padding: 30px 5%;
  }

  .mapContainer {
    gap: 20px;
  }

  .mapBlock {
    min-width: 100%;
  }
}
  

/* Animation for Nav */
@keyframes fadeInNav {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


/* Testimonial section meda queries*/ 


@media screen and (max-width: 768px) {
  .testimonials {
    padding: 20px 20px 60px;
    border-bottom-right-radius: 100px;
    border-top-left-radius: 100px;
    margin: 100px auto;
  }

  .testimonials h3 {
    font-size: 1.6rem;
  }

  .testimonials iframe {
    height: 700px;
  }
}

@media screen and (max-width: 480px) {
  .testimonials {
    padding: 20px 15px 50px;
    border-bottom-right-radius: 60px;
    border-top-left-radius: 60px;
    margin: 80px auto;
  }

  .testimonials h3 {
    font-size: 1.4rem;
    letter-spacing: 1px;
  }

  .testimonials iframe {
    height: 900px;
  }
}

@media screen and (max-width: 480px) {
  /* Navbar adjustments */
  .navbar {
    padding: 12px 15px;
  }

  .hamburger {
    top: 15px;
    right: 15px;
  }

  .nav-links {
    padding: 20px 10px;
    gap: 15px;
  }

  .nav-links li a {
    font-size: 16px;
  }

  /* Intro Section */
  .intro {
    flex-direction: column;
    margin-top: 80px;
    padding: 30px 5%;
    gap: 30px;
  }

  .introText {
    max-width: 100%;
  }

  .introImage img {
    max-width: 250px;
  }

  /* Speciality Section */
  .specialityImage {
    gap: 15px;
  }

  .image-card {
    max-width: 90%;
  }

  .caption {
    font-size: 0.9rem;
  }

  /* Home Order Section */
  .homeOrder {
    font-size: 24px;
  }

  .orderImages img {
    width: 100px;
  }

  /* About Section */
  .aboutheading h2 {
    font-size: 26px;
  }

  .aboutpara {
    font-size: 15px;
    line-height: 28px;
  }

  .mission h2,
  .vision h2 {
    font-size: 28px;
  }

  .mission p,
  .vision p {
    font-size: 16px;
    line-height: 24px;
  }

  /* Menu Page */
  .menuIntro h2 {
    font-size: 24px;
  }

  .menuIntro p {
    font-size: 15px;
  }

  #categoryButtons button,
  #subCategoryButtons button {
    padding: 8px 15px;
    font-size: 14px;
  }

  .all-menu-wrapper .allmenuImg {
    max-width: 100%;
  }

  .menuImg {
    max-width: 100%;
  }

  /* Contact Section */
  #contact {
    padding: 20px 5%;
    gap: 30px;
  }

  .textPart {
    font-size: 15px;
    line-height: 26px;
  }

  .textPart .social img {
    width: 30px;
  }

  .mapBlock h3 {
    font-size: 18px;
  }

  /* Footer */
  .footer {
    padding: 30px 5%;
  }

  .social a img {
    width: 30px;
  }

  .copyright {
    height: auto;
    padding: 15px 0;
  }

  .copyright p {
    padding: 0 10px;
    font-size: 14px;
  }

  /* Back to Top Button */
  #backToTop {
    font-size: 26px;
    padding: 8px 12px;
    bottom: 20px;
    right: 15px;
  }
}
