@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&display=swap");
@import '@fortawesome/fontawesome-free/css/all.min.css';


*{
    padding: 0%;
    margin: 0%;
}
body{
    background-color: #000000;
    animation: fadeIn 3s;
}

 
.header {
    width: 100%;
    background-color: transparent;
    padding: 10px 0;
    z-index: 1;
    height: 100px; 
    position: absolute;
     
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 90%;
    margin: 0 auto;
}

.navbar-div {
    display: flex;
    align-items: center;
    width: 100%;
}

.logo {
    margin-left: 20px;
    width: 300px;
    height: auto;
}

.menu-list {
    flex: 1;
    display: flex;
    justify-content: center;
    margin-left: 200px;
}
 

.menu-items {
    list-style: none;
    display: flex;
    gap: 20px;
}

.menu-name-link {
    text-decoration: none;
    color: #ffffff;
    font-weight: 600;
    transition: 0.3s ease-in-out;
}

.menu-name-link:hover {
    color: #ff0000;
}

.menu-items-btn {
    list-style: none;
    margin-left: auto;
}

.menu-name-btn a {
    text-decoration: none;
    background: #ffcc00;
    color: #000;
    font-weight: 700;
    padding: 8px 15px;
    border-radius: 5px;
    transition: 0.3s;
}

.menu-name-btn a:hover {
    background: #fff;
    color: #ffcc00;
    border: 2px solid #ffcc00;
    border-radius: 5px;
}

.menu-bar-btn {
    display: none;
}

/* slider bar */

.slider{
    width: 100%;
    height: 67vh;
    margin: auto;
    position: relative;
    overflow: hidden;
    padding: 0;
     
}
.item{
   position: relative;
   justify-content: center;
   
}
#span1:hover{
  color: #ff0000;
  transition: all 2s;
}
.letter-1{
   position: absolute;
   width:25%;
    top: 250px;
    left: 40%;
    transform: translate(-50%, -50%);
    border-radius: 5px;
    justify-content: center;
  
}
.letter-1 h2 {
  color: #fff;
  font-size: 44px;
  text-align: center;
  font-weight: bold;
  text-transform: uppercase;
}
.letter-2{
  position: absolute;
   width:35%;
    top: 250px;
    left: 40%;
    transform: translate(-50%, -50%);
    border-radius: 5px;
    justify-content: center;
 
 
}
.letter-2 h2 {
 color: #fff;
 font-size: 44px;
 text-align: center;
 font-weight: bold;
 text-transform: uppercase;
}
.letter-3{
  position: absolute;
  width:25%;
   top: 250px;
   left: 40%;
   transform: translate(-50%, -50%);
   border-radius: 5px;
   justify-content: center;
 
}
.letter-3 h2 {
 color: #fff;
 font-size: 44px;
 text-align: center;
 font-weight: bold;
 text-transform: uppercase;
}
.slider .list{
    position: absolute;
    width: max-content;
    height: 100%;
    left: 0;
    top: 0;
    display: flex;
    transition: 1s;
}
.slider .list img{
    width: 1300px;
    max-width: 100vw;
    height: 100%;
    object-fit: cover;
}
.slider .buttons{
    position: absolute;
    top: 45%;
    left: 5%;
    width: 90%;
    display: flex;
    justify-content: space-between;
}
.slider .buttons button{
    width: 80px;
    height: 80px;
    background-color: transparent;
    color: #ffcc00;
    border: none;
    font-family: monospace;
    font-weight: bold;
}
.slider .dots{
    position: absolute;
    bottom: 10px;
    left: 0;
    color: #fff;
    width: 100%;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
}
.slider .dots li{
    list-style: none;
    width: 10px;
    height: 10px;
    background-color: #fff;
    margin: 10px;
    border-radius: 20px;
    transition: 0.5s;
}
.slider .dots li.active{
    width: 30px;
}
@media screen and (max-width: 768px){
    .slider{
        height: 400px;
    }
}
 


.res-container {
    width: 100%;
    margin: 50px auto;
    background: #555;
    padding: 40px;
    animation: fadeIn 3s;
     
}
.res-container h2 {
    font-size: 2rem;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 10px;
    color: #ffffff;
    margin-left: 370px;
}
.divider {
    width: 60px;
    height: 3px;
    background: #ffcc00;
    margin: 10px auto;
}
p {
    font-size: 1rem;
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto 30px;
    color: #fff;
    display: table-cell; 
    vertical-align: middle; 
    align-items: center;
    justify-content: center;
    display: table;
}
.image-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}
.image-gallery img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 5px;
}
@media (max-width: 750px) {
    .image-gallery {
        grid-template-columns: repeat(1, 1fr);
        animation: fadeIn 3s;
    }
}
@media (max-width: 480px) {
    .image-gallery {
        grid-template-columns: 1fr;
    }
}





 /* specialmenu  */


/* 
 @import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&display=swap"); */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  list-style-type: none;
  text-decoration: none;
}

:root {
  --primary: #ffcc00;
  --white: #ffffff;
  --bg: #f5f5f5;
}

html {
  font-size: 62.5%;
  font-family: "Montserrat", sans-serif;
  scroll-behavior: smooth;
}

@media (min-width: 1440px) {
  html {
    zoom: 1.5;
  }
}

@media (min-width: 2560px) {
  html {
    zoom: 1.7;
  }
}

@media (min-width: 3860px) {
  html {
    zoom: 2.5;
  }
}

::-webkit-scrollbar {
  width: 1.3rem;
}

/* ::-webkit-scrollbar-thumb {
  border-radius: .05rem;
  background: #797979;
  transition: all 0.5s ease-in-out;
} */

::-webkit-scrollbar-thumb:hover {
  background: #222224;
}

::-webkit-scrollbar-track {
  background: #f9f9f9;
}

/* body {
  font-size: 1.6rem;
  background: var(--bg);
} */

.container {
  max-width: 1000px;
  padding: 0 1rem;
  margin: 0  ;
  font-size: 2rem;
  font-weight: bold;
  text-transform: uppercase;
  animation: fadeIn 3s;
}

.text-center {
  text-align: center;
  margin-top: 0;
}

.section-heading {
  font-size: 3rem;
  color: white;
  padding: 2rem 0;
}

#tranding {
  padding: 4rem 0;
  
  height: 75vh;
  margin-top: 0;

}

@media (max-width:1440px) {
  #tranding {
    padding: 7rem 0;
  }
}

#tranding .tranding-slider {
  height: 52rem;
  padding: 2rem 0;
  position: relative;
}

@media (max-width:500px) {
  #tranding .tranding-slider {
    height: 45rem;
  }
}

.tranding-slide {
  width: 37rem;
  height: 42rem;
  position: relative;
}

@media (max-width:500px) {
  .tranding-slide {
    width: 28rem !important;
    height: 36rem !important;
  }
  .tranding-slide .tranding-slide-img img {
    width: 28rem !important;
    height: 36rem !important;
  }
}

.tranding-slide .tranding-slide-img img {
  width: 37rem;
  height: 42rem;
  border-radius: 2rem;
  object-fit: cover;
}

.tranding-slide .tranding-slide-content {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
}

.tranding-slide-content .food-price {
  position: absolute;
  top: 2rem;
  right: 2rem;
  color: var(--white);
}

.tranding-slide-content .tranding-slide-content-bottom {
  position: absolute;
  bottom: 2rem;
  left: 2rem;
  color: var(--white);
}

.food-rating {
  padding-top: 1rem;
  display: flex;
  gap: 1rem;
}

.rating ion-icon {
  color: var(--primary);
}

.swiper-slide-shadow-left,
.swiper-slide-shadow-right {
  display: none;
}

.tranding-slider-control {
  position: relative;
  bottom: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tranding-slider-control .swiper-button-next {
  left: 58% !important;
  transform: translateX(-58%) !important;
  background-color: transparent;
}

@media (max-width:990px) {
  .tranding-slider-control .swiper-button-next {
    left: 70% !important;
    transform: translateX(-70%) !important;
  }
}

@media (max-width:450px) {
  .tranding-slider-control .swiper-button-next {
    left: 80% !important;
    transform: translateX(-80%) !important;
  }
}

@media (max-width:990px) {
  .tranding-slider-control .swiper-button-prev {
    left: 30% !important;
    transform: translateX(-30%) !important;
  }
}

@media (max-width:450px) {
  .tranding-slider-control .swiper-button-prev {
    left: 20% !important;
    transform: translateX(-20%) !important;
  }
}

.tranding-slider-control .slider-arrow {
  background: var(--white);
  width: 3.5rem;
  height: 3.5rem;
  border: 1px solid #ffcc00;
  border-radius: 50%;
  left: 42%;
  transform: translateX(-42%);
  filter: drop-shadow(0px 8px 24px rgba(248, 246, 246, 0.94));
   
  background-color: transparent;
}

.tranding-slider-control .slider-arrow ion-icon {
  font-size: 2rem;
  color: #ffcc00;
}

.tranding-slider-control .slider-arrow::after {
  content: '';
}

.tranding-slider-control .swiper-pagination {
  position: relative;
  width: 15rem;
  bottom: 1rem;
}

.tranding-slider-control .swiper-pagination .swiper-pagination-bullet {
  filter: drop-shadow(0px 8px 24px rgba(18, 28, 53, 0.1));
}

.tranding-slider-control .swiper-pagination .swiper-pagination-bullet-active {
  background: var(--primary);
}


/* last container */

.container-3 {
  width: 100%;
  margin: 50px auto;
  background: #000000;
  padding: 40px;
  border-radius: 10px;
  animation: fadeIn 3s;
}
.container-3 h2 {
  font-size: 2rem;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 10px;
  margin-left: 400px;
  color: #f5f5f5;
}
.divider-3 {
  width: 60px;
  height: 3px;
  background: gold;
  margin: 10px auto;
}
.menu-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  margin-top: 20px;
}
.menu-item-3 {
  background: #555;
  color: white;
  padding: 15px;
  border-radius: 5px;
  text-align: left;
  position: relative;
}
.menu-item-3 img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 5px;
  transition: all 2s;
}
.menu-item-3 img:hover {
  transform: scale(1.09);
  transition: all 2s;
}
.menu-item-3 h3 {
  font-size: 1.2rem;
  margin: 10px 0 5px;
}
.menu-item-3 p {
  font-size: 0.9rem;
  line-height: 1.4;
}
@media (max-width: 768px) {
  .menu-grid-3 {
      grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 480px) {
  .menu-grid-3 {
      grid-template-columns: 1fr;
  }
}


@keyframes fadeIn {
  0%{
    opacity: 0;
  }
  100%{
    opacity: 1;
  }
  
}



/* reviwe */

.customer-review {
  background-color: #3d3d3d;
  color: white;
  text-align: center;
  padding: 50px 20px;
  animation: fadeIn 3s;
}

.review-heading {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
}

.review-heading::after {
  content: "";
  display: block;
  width: 50px;
  height: 3px;
  background: #ffcc00;
  margin: 10px auto 0;
}

.review-slider {
  position: relative;
  max-width: 600px;
  margin: 0 auto;
  overflow: hidden;
}

.review-slide {
  display: none;
  padding: 20px;
  transition: opacity 0.5s ease-in-out;
}

.review-slide.active {
  display: block;
}

.review-text {
  font-size: 10px;
  font-style: italic;
  margin-bottom: 10px;
}

.review-author {
  font-size: 13px;
  margin-bottom: 10px;
}

.review-stars {
  color: #ffcc00;
  font-size: 12px;
}

.review-dots {
  margin-top: 20px;
}

.dot {
  height: 3px;
  width: 5px;
  margin: 5px;
  background-color: gray;
  border-radius: 50%;
  display: inline-block;
  cursor: pointer;
}

.dot.active {
  background-color: #ffcc00;
}


/* footer */

footer {
  background: #4e4e4e;
  color: #fff;
  padding: 40px 20px;
  text-align: center;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  max-width:100%;
  margin: auto;
}

.footer-section {
  flex: 1;
  margin: 5px;
  min-width: 250px;
  padding: 5px;
  border-bottom: 2px solid gray;
}

.footer-section h2 {
  font-size: 10px;
  margin-bottom: 15px;
  color: #ffcc00;
}

.footer-section p {
  font-size: 10px;
  line-height: 1.6;
}

.social a {
  display: inline-block;
  margin: 0 10px;
  font-size:20px;
  color: #ffcc00;
  transition: 0.3s;
   
}

.social a:hover {
  color: #fff;
}

.contact p i {
  color: #ffcc00;
  margin-right: 10px;
}

.footer-bottom {
  text-align: center;
  margin-top: 5px;
  padding-top: 5px;
  border-top: 1px solid #444;
}
iframe{
  border-radius: 10px;
  
}

 

/* media qurey */

/* Media Query for Laptops (1050px) */
@media screen and (max-width: 1050px) {
  .menu-list {
      margin-left: 100px;
  }
  .logo {
      width: 250px;
  }
  .slider{
    height: 100vh;
  }

}

/* Media Query for Tablets (750px) */
@media screen and (max-width: 750px) {
  .menu-list {
      display: none;
      flex-direction: column;
      position: absolute;
      top: 80px;
      left: 0;
      width: 100%;
      background-color: rgba(0, 0, 0, 0.9);
      text-align: center;
      padding: 20px 0;
  }
  .menu-items {
      flex-direction: column;
      gap: 15px;
  }
  .menu-items-btn {
      margin-top: 20px;
      margin-left: 10px;
      
  }
  .menu-bar-btn {
      display: block;
      background: none;
      border: none;
      cursor: pointer;
      font-size: 24px;
      color: white;
      margin-left: auto;
      padding: 10px;
  }
  .menu-bar {
      display: block;
      width: 30px;
      height: 3px;
      background: white;
      position: relative;
  }
  .menu-bar::before,
  .menu-bar::after {
      content: "";
      position: absolute;
      width: 15px;
      height: 3px;
      background: white;
      transition: 0.3s ease-in-out;
  }
  .menu-bar::before {
      top: -8px;
  }
  .menu-bar::after {
      top: 8px;
      right: 2px;
  }
  .menu-list.show {
      display: flex;
      width: 200px;
      height: 150px;
      border-radius: 10px;
      margin-right: 5px;
  }
}

/* Media Query for Mobile (350px) */
@media screen and (max-width: 350px) {
  .logo {
      width: 200px;
  }
  .menu-bar {
      width: 25px;
  }
  .menu-bar::before,
  .menu-bar::after {
      width: 25px;
       
  }
}



/* Media Query for 1050px (Large Screens) */
@media screen and (max-width: 1050px) {
  .slider {
      width: 100%;
      margin: auto;
  }
  .item img {
      height: 450px;
  }
  .letter-1{
    position: absolute;
    width:45%;
     top: 600px;
     left: 45%;
     transform: translate(-50%, -50%);
     border-radius: 5px;
     justify-content: center;
   
 }
 .letter-1 h2 {
   color: #fff;
   font-size: 44px;
   text-align: center;
   font-weight: bold;
   text-transform: uppercase;
 }
 .letter-2{
  position: absolute;
  width:45%;
   top: 600px;
   left: 45%;
   transform: translate(-50%, -50%);
   border-radius: 5px;
   justify-content: center;
 
}
.letter-2 h2 {
 color: #fff;
 font-size: 44px;
 text-align: center;
 font-weight: bold;
 text-transform: uppercase;
}
.letter-3{
  position: absolute;
  width:45%;
   top: 600px;
   left: 45%;
   transform: translate(-50%, -50%);
   border-radius: 5px;
   justify-content: center;
 
}
.letter-3 h2 {
 color: #fff;
 font-size: 44px;
 text-align: center;
 font-weight: bold;
 text-transform: uppercase;
}
}

/* Media Query for 750px (Tablets) */
@media screen and (max-width: 750px) {
  .slider {
      width: 100%;
  }
  .item img {
      height: 350px;
  }
  
  .buttons button {
      font-size: 18px;
      padding: 8px 12px;
  }
  .dots li {
      width: 12px;
      height: 12px;
  }
  .letter-1{
    position: absolute;
    width:45%;
     top: 400px;
     left: 45%;
     transform: translate(-50%, -50%);
     border-radius: 5px;
     justify-content: center;
   
 }
 .letter-1 h2 {
   color: #fff;
   font-size: 24px;
   text-align: center;
   font-weight: bold;
   text-transform: uppercase;
 }
 .letter-2{
  position: absolute;
  width:45%;
   top: 400px;
   left: 45%;
   transform: translate(-50%, -50%);
   border-radius: 5px;
   justify-content: center;
 
}
.letter-2 h2 {
 color: #fff;
 font-size: 24px;
 text-align: center;
 font-weight: bold;
 text-transform: uppercase;
}
.letter-3{
  position: absolute;
  width:45%;
   top: 400px;
   left: 45%;
   transform: translate(-50%, -50%);
   border-radius: 5px;
   justify-content: center;
 
}
.letter-3 h2 {
 color: #fff;
 font-size: 24px;
 text-align: center;
 font-weight: bold;
 text-transform: uppercase;
}
 

}

/* Media Query for 350px (Mobile Phones) */
@media screen and (max-width: 350px) {
  .slider {
      width: 100%;
  }
  .item img {
      height: 250px;
  }
  .buttons button {
      font-size: 14px;
      padding: 6px 10px;
  }
  .dots li {
      width: 8px;
      height: 8px;
  }
}




/* Media Query for 1050px (Large Screens) */
@media screen and (max-width: 1050px) {
  .res-container {
      padding: 20px;
  }
  .res-container h2{
    margin-left: 300px;
  }
  .image-gallery img {
      width: 100%;
  }
  .tranding-slide-img img {
      height: 200px;
  }
}

/* Media Query for 750px (Tablets) */
@media screen and (max-width: 750px) {
  .res-container h2{
    margin-left: 80px;
  }
  .image-gallery {
      flex-direction: column;
      align-items: center;
  }
  .image-gallery img {
      width: 100%;
      margin-bottom: 10px;
  }
  .tranding-slide-img img {
      height: 180px;
  }
  .swiper-button-prev,
  .swiper-button-next {
      font-size: 18px;
  }
}

/* Media Query for 350px (Mobile Phones) */
@media screen and (max-width: 350px) {
  .res-container h2 {
      font-size: 20px;
  }
  .image-gallery img {
      width: 100%;
  }
  .tranding-slide-img img {
      height: 150px;
  }
  .food-name {
      font-size: 14px;
  }
  .swiper-button-prev,
  .swiper-button-next {
      font-size: 14px;
  }
}


/* Media Query for 1050px (Large Screens) */
@media screen and (max-width: 1050px) {
  .menu-grid-3 {
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;

  }
  .container-3 h2{
    margin-left: 300px;
  }
  .menu-item-3 img {
      width: 100%;
      height: auto;
  }
}

/* Media Query for 750px (Tablets) */
@media screen and (max-width: 750px) {
  .menu-grid-3 {
      grid-template-columns: repeat(1, 1fr);
      gap: 15px;
  }
  .container-3 h2{
    margin-left: 100px;
  }
  .menu-item-3 h3 {
      font-size: 18px;
  }
  .menu-item-3 p {
      font-size: 14px;
  }
}

/* Media Query for 350px (Mobile Phones) */
@media screen and (max-width: 350px) {
  .menu-grid-3 {
      grid-template-columns: repeat(1, 1fr);
      gap: 10px;
  }
  .menu-item-3 h3 {
      font-size: 16px;
  }
  .menu-item-3 p {
      font-size: 12px;
  }
  .menu-item-3 img {
      width: 100%;
      height: auto;
  }
}




/* Media Query for 1050px (Large Screens) */
@media screen and (max-width: 1050px) {
  .footer-container {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 20px;
  }
  .footer-section {
      text-align: center;
  }

}

/* Media Query for 750px (Tablets) */
@media screen and (max-width: 750px) {
  .footer-container {
      grid-template-columns: repeat(1, 1fr);
      text-align: center;
      
  }

  .footer-section iframe {
      width: 100%;
      height: 180px;
  }
  .footer-section h2{
    font-size: 20px;
}
.footer-section p{
  font-size: 20px;
}
.footer-section a{
  font-size: 40px;
}
}

/* Media Query for 350px (Mobile Phones) */
@media screen and (max-width: 350px) {
  .footer-container {
      grid-template-columns: repeat(1, 1fr);
      padding: 10px;
  }
  .footer-section h2 {
      font-size: 18px;
  }
  .footer-section p {
      font-size: 14px;
  }
  .footer-section iframe {
      width: 100%;
      height: 150px;
  }
  .footer-bottom p {
      font-size: 12px;
      text-align: center;
  }
}
