* {
  margin: 0;
  padding: 0;

}

nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-direction: column;
  padding: 1rem 0;
  border-bottom: 1px solid #ccc;
}

.nav-logo {
  text-align: center;
  text-decoration: none;
  color: #ff1e00;
  font-family: fantasy;

}

.nav-logo h1 {
  font-size: 2rem;

}

.menu-icon {
  display: none;
}

/* Style the dropdown button */
.dropbtn {
  background-color: white;
  color: black;
  padding: 12px;
  font-size: 16px;
  border: none;
  cursor: pointer;
}

/* Dropdown button on hover & focus */
.dropbtn:hover,
.dropbtn:focus {
  background-color: white;
}

/* The container <div> - needed to position the dropdown content */
.dropdown {
  position: relative;
  display: inline-block;
}

/* Dropdown Content (Hidden by Default) */
.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  z-index: 1;
}

/* Links inside the dropdown */
.dropdown-content a {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}

/* Change color of dropdown links on hover */
.dropdown-content a:hover {
  background-color: #f1f1f1;
}

/* Show the dropdown menu when button is clicked */
.dropdown.active .dropdown-content {
  display: block;
}

/* Change the background color of the dropdown button when the dropdown content is shown */
.dropdown.active .dropbtn {
  background-color: white;
}

nav ul {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 20px;
}

nav ul li {
  list-style: none;
  padding: 0px 1.5rem;
}

nav ul li:hover {
  background-color: whitesmoke;
}

nav ul li a {
  text-decoration: none;
  color: black;

}

.nav-title-1 {
  text-align: center;
  margin-top: 8px;
}

.nav-title-1 a {
  color: #ff2c07;
  text-decoration: none;
  font-weight: 800;
}

/* Style for hamburger icon */
.hamburger-icon {
  display: none;
}

.box-1 {
  margin: 0 0.5rem;
}


.dropdown-content {
  display: none;
}

.dropdown.active .dropdown-content {
  display: block;
}

.centered {
  /* background-color: rgba(255, 255, 255, 0.75); */
  /* Semi-transparent white background for text */
  padding: 20px;
  color: white;
}

.centered h1 {
  font-weight: bold;
  font-size: 50px;
}

h1 {
  font-size: 36px;
}

p {
  font-size: 18px;
}

/* gallery corousel */

.gallery-title {
  margin: 100px 0px 5px 0px;
  text-align: center;
}

.gallery-container {
  position: relative;
  margin: 0 3rem;
  display: flex;
  align-items: center;
  overflow-x: hidden;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
}

.card {
  width: 15rem;
  flex-shrink: 0;
  scroll-snap-align: start;
  border: 2px solid rgb(212, 204, 212);
  margin: 1rem;
  flex-wrap: wrap;
  text-align: center;
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2);
}

.card-img-top1 {
  width: 100%;
  height: 15rem;
  transition: transform 0.5s ease;
}

.card-img-top1:hover {
  transform: scale(1.1);
}

.card-body button a {
  color: white;
}

#scroll-left,
#scroll-right {
  display: flex;
  align-items: center;
  cursor: pointer;
  padding: 10px;
  background-color: rgba(255, 255, 255, 0.5);
  z-index: 1;
  border: none;
}

#scroll-left:hover,
#scroll-right:hover {
  background-color: rgba(199, 200, 202, 0.255);
  border-radius: 5%;

}

#scroll-left,
#scroll-right i {
  color: #787f8c;
  font-size: 1.5rem;

}

#scroll-left {
  left: 0;
}

#scroll-right {
  right: 0;
}

.righ-left-btns {
  display: flex;
  align-items: center;
  justify-content: right;
  margin-right: 37px;
}

footer {
  color: black;
  padding: 20px;
  width: 100%;
  background: aliceblue;
}

.newsletter p {
  font-weight: 400;
}

.newsletter-form {
  margin-top: 20px;
}

.newsletter-input {
  padding: 10px;
  width: 200px;
}

.newsletter-submit {
  padding: 10px 20px;
  background-color: #d15e44;
  color: white;
  border: none;
  cursor: pointer;
}

.newsletter-submit:hover {
  padding: 10px 20px;
  background-color: #f43004;
  color: white;
  border: none;
  cursor: pointer;
}



.address-info h5 {
  text-align: center;
  font-weight: 700;
}

.other-info {
  background-color: #cdcded;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  flex-wrap: wrap;
  padding: 1rem;
}

.other-info p {
  margin-bottom: 0;

}

.new-ot-info {
  display: flex;
  gap: 1rem;
}

.new-ot-info a {
  text-decoration: none;
  color: #495057;
}

.new-ot-info a:hover {
  color: #0a58ca;
}

/* alert messages */
#alertContainer {
  width: 75vw;
  text-align: center;
  margin: auto;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 9999;
}

/* Add spacing between alerts */
.alert {
  margin-bottom: 10px;
}

/* Reservation box  */
.reservation-box {
  display: flex;
  align-items: stretch;
  justify-content: center;
  margin-top: 3rem;

}

.reservation-info {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.res-all-info h4 {
  color: red;
  margin: 20px 50px 37px 50px
}

.reservation-info h6 {
  margin: 20px;
}

.res-timings {
  margin: 40px;
}

.res-timings h4 {
  text-align: center;
  color: red;
  margin: 10px 10px 25px 10px;
}

.res-timings div p span {
  font-weight: bold;
}

.review-form-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.review-form-box button {
  background-color: #ffa6007c;
  padding: 5px 8px;
  border-radius: 6px;
  font-weight: 700;
}

.review-form-box button:hover {
  background-color: #ffa600df;
}

.review-form-box div {
  margin: 10px;
}

.review-form-box div label {
  font-weight: 600;
}

.rating {
  display: inline-block;
  font-size: 24px;
  /* Adjust the size of the stars */
}

.rating i {
  color: gold;
}

.review-rating-field {
  display: flex;
  align-items: flex-start;
}

/* about.html */
.about-container {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 2rem 0;
}

.about-content {
  width: 70%;
  padding: 1rem;
  text-align: center;
  color: black;
  /* box-shadow: 5px 5px 5px 5px rgba(0, 0, 0, 0.2); */

}

.about-content div {
  margin: 3rem;
}

/* contact.html */

.contact-container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;

}

.contact-card1 {
  width: 30rem;
}

.address-info11 h5 {
  font-size: 1.5rem;
  margin: 0 0 24px 0;
  color: darkviolet;
}

/* new styles code  */

.new-ct-1 {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem;
  background-color: #e9ecef82;
}



.new-ct-3 img {
  width: 508px;
  height: 530px;
  object-fit: fill;

}

.new-ct-5 {
  margin: 1rem;

}

.new-ct-6 {
  display: flex;
  flex-wrap: wrap;
}

.new-ct-7 {
  width: 300px;
  /* border: 2px solid red; */
  margin: 2rem;

}

.new-ct-7 h4 {
  font-weight: 800;

}

.new-ct-5 h1 {
  font-weight: 800;

}

.new-gallery-1 {
  margin: 4rem;
  text-align: center;
}

.new-gallery-1 h1 {
  font-weight: 800;
}

.new-gallery-2 {
  display: flex;
  align-items: center;
  justify-content: center;
}

.new-gallery-3 {
  margin-left: 3rem;
}

.new-gallery-3 img {
  width: 615px;
  height: 615px;
}

.new-gallery-4 {

  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1rem;

}

.new-gallery-4 img {
  width: 300px;
  height: 300px;

}

.new-team-ct {
  background-color: #f8f9fa;
  color: black;
  padding: 5rem;
}

.new-team-ct-1 {
  text-align: center;
}

.new-team-ct-1 h1 {
  font-weight: 800;
}

.new-team-ct-2 {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 5rem;
  margin-top: 4rem;
}

.new-team-ct-3 {
  display: flex;
  width: 40%;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}

.new-team-ct-3 img {
  width: 200px;
  height: 200px;
  border-radius: 50%;
}

.new-team-ct-4 h4 {
  font-weight: 700;
}

.new-team-ct-5 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.new-team-ct-5 i:hover {
  cursor: pointer;
  scale: 1.05;
}

.new-team-ct-6 {
  text-align: center;
  margin-top: 8rem;
}

.new-team-ct-6 h1 {
  font-weight: 800;
}

.new-team-ct-6 a {
  background-color: black;
  color: white;
  padding: 1rem 2rem;
  border: 1px solid white;
  text-decoration: none;
}

.new-team-ct-6 a:hover {
  background-color: white;
  color: black;

}

.news-lt-1 {
  display: flex;
  /* align-items: center; */
  justify-content: center;
  background-color: black;
  color: white;
  padding: 4rem 0;
  width: 90%;
  margin: 4rem auto;
  gap: 2rem;
}

.news-lt-2 {
  width: 50%;
}

.news-lt-3 img {
  width: 500px;
  height: 500px;
  object-fit: cover;
}

.news-lt-2 h1 {
  font-weight: 800;
}

.news-lt-4 {
  display: flex;

}

.news-lt-4 input {
  width: 300px;
  padding: 0.5rem;
  border: 1px solid white;
  border-radius: 10px;
}

.news-lt-5 {
  border: 1px solid white;
  width: 137px;
  text-decoration: none;
  text-align: center;
  padding: 0.7rem;
  color: white;
  border-radius: 10px;
  margin-left: 1rem;
}

.news-lt-5:hover {
  background-color: white;
  color: black;

}



.new-res-ct-1 {
  position: relative;
  overflow: hidden;
  min-height: 500px;
  /* Adjust as needed */
  padding: 40px 20px;
  /* Adjust as needed */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

/* Blurred background image */
.new-res-ct-1::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('https://images.unsplash.com/photo-1633635316983-97ccb7a48423?q=80&w=2070&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D') center/cover no-repeat;
  /* filter: blur(8px); */
  z-index: 0;
}

/* Make sure content stays above the background */
.new-res-ct-1>* {
  position: relative;
  z-index: 1;
  color: #fff;
  /* Optional: makes text white for better contrast */
}

.new-res-ct-1 h1 {
  font-weight: 800;
}

.new-res-ct-3 {
  border: 1px solid #fff;
  /* width: 137px; */
  text-decoration: none;
  text-align: center;
  padding: 0.7rem 1rem;
  color: #212529;
  border-radius: 10px;
  margin-left: 1rem;
  background-color: white;
}

.new-res-ct-3:hover {
  border: 1px solid #0d0101;
  color: #212529;
  background-color: whitesmoke;
}

.new-res-ct-4 {
  border: 1px solid white;
  width: 137px;
  text-decoration: none;
  text-align: center;
  padding: 0.7rem 1rem;
  color: white;
  border-radius: 10px;
  margin-left: 1rem;
  font-weight: 600;
}

.new-res-ct-4:hover {
  border: 1px solid white;
  width: 137px;
  text-decoration: none;
  text-align: center;
  padding: 0.7rem 1rem;
  color: black;
  border-radius: 10px;
  margin-left: 1rem;
  background-color: white;

}

.new-contact-div-1 {
  margin: auto;
  background-color: aliceblue;
}

.new-contact-div-2 {
  display: flex;
  align-items: baseline;
  justify-content: space-around;
  text-align: center;
  padding: 4rem 0;
  flex-wrap: wrap;
}

.offers-div-1 {
  text-align: center;
  background-color: #283566;
  color: white;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.offers-div-2 {
  width: 50%;
  margin: 5rem 0;
}

.offers-div-2 h1 {
  font-weight: 700;
}

.resto-cl-1 {
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.resto-cl-2 {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  margin: 5rem 2rem;
  gap: 2rem;

}

.resto-cl-3 {
  width: 88%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;

}

.resto-cl-3 h1 {
  font-weight: 800;
  text-align: center;
}

.resto-cl-3 p {
  margin: 0 2rem;
}

.resto-cl-5 p {
  margin: 0;
}

.resto-cl-4 {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}

.resto-cl-5 {
  width: 40%;
}

.resto-cl-5 h3 {
  font-weight: 700;
}

.resto-cl-6 img {
  width: 100%;
}

.resto-cl-7 {
  margin: auto;
}

.resto-cl-7 h2 {
  margin: auto;
  font-weight: 800;
  text-align: center;
}

.resto-cl-8 {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 6rem;
  margin: 3rem auto;
}

.resto-cl-9 {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 25%;
  text-align: center;
}

.resto-cl-9 img {
  width: 100%;
  height: auto;
}

.resto-cl-10 h3 {
  font-weight: 700;
}

.privacy-cl-1 {
  width: 65%;
  margin: 5rem auto;
}

.privacy-cl-1 h1 {
  text-align: center;
  font-weight: 800;
}

.privacy-cl-2 {
  margin: 2.5rem auto;
}

.privacy-cl-3 {
  margin: 2.5rem auto;
}

.privacy-cl-3 h4 {
  font-weight: 700;
}

.new-abt-cl-1 {
  margin: 4rem;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.new-abt-cl-2 {
  width: 50%;
  display: flex;
  justify-content: center;
}

.new-abt-cl-2 img {
  width: 75%;
  height: auto;
}

.new-abt-cl-3 {
  width: 50%;
}


.new-abt-cl-4 {
  border: 1px solid #0a58ca;
  width: 137px;
  text-decoration: none;
  text-align: center;
  padding: 0.7rem 1rem;
  color: #0a58ca;
  border-radius: 10px;
  margin-left: 1rem;
}

.new-abt-cl-4:hover {
  border: 1px solid #00050c;
  width: 137px;
  text-decoration: none;
  text-align: center;
  padding: 0.7rem 1rem;
  color: #f1f3f6;
  border-radius: 10px;
  margin-left: 1rem;
  background-color: black;
}

.new-time-cl-1 {
  position: relative;
  width: 85%;
  height: 550px;
  overflow: hidden;
  margin: 4rem auto;
}

.new-time-cl-2 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* filter: blur(8px); */
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

.new-time-cl-3 h3 {
  font-weight: 800;
  font-family: auto;
}

.new-time-cl-3 {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  background: rgba(0, 0, 0, 0.3);
  /* Optional: adds a dark overlay for better text readability */
}


.new-time-cl-4 {
  border: 1px solid white;
  padding: 2rem 4rem;
}

.review-boxx h3 {
  font-family: auto;
}

.my-stars {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-flow: row-reverse;
  gap: 10px;
}

.my-stars .pic-star {
  color: white;
  font-size: 2rem;
  transition: color 0.2s, transform 0.2s;
  cursor: pointer;
}

.my-stars .pic-star:hover,
.my-stars .pic-star:hover~.pic-star {
  color: #ff9800;
  transform: scale(1.15);
}

.my-stars .pic-star:hover~.pic-star {
  color: #ccc;
  transform: scale(1);
}

.my-stars .pic-star:hover,
.my-stars .pic-star:nth-child(1):hover~.pic-star,
.my-stars .pic-star:nth-child(2):hover~.pic-star,
.my-stars .pic-star:nth-child(3):hover~.pic-star,
.my-stars .pic-star:nth-child(4):hover~.pic-star,
.my-stars .pic-star:nth-child(5):hover~.pic-star {
  color: #ff9800;
}




/* new styles code  */