/* Importing Font Style from Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500&family=Rubik:wght@400;500;600;700&family=Shadows+Into+Light&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Rouge+Script&display=swap');

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: Roboto, 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}
body {
    background-color: black;
    background-image: url('./assets/images/badam.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    height: 100vh; /* Full viewport height */
    margin: 0; /* Remove default margin */
  }

 html {
    scroll-behavior: smooth;
}

/* Custom Scroll Bar */
 ::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background-color: #F9F6F0;
}
::-webkit-scrollbar-thumb {
    background-color: #FF9D2E;
    border-radius: 4rem;
}

  

/* Header CSS */.logo-container {
  flex-shrink: 0;
}@media (max-width: 800px) {
    .nav-ul {
      display: none;
      flex-direction: column;
      background-color: saddlebrown;
      position: absolute;
      top: 60px;
      right: 0;
      width: 100%;
      text-align: center;
      z-index: 999;
    }

    .nav-ul.show {
      display: flex;
    }

    .openMenu {
      display: block;
      color: #ff9d2e;
    }

    .closeMenu {
      display: block;
      color: #ff9d2e;
    }
  }


.logo {
  height: 80px; /* Adjust the height of the logo */
  width: auto;
}

 .header-main {
    top: 0;
    left: 0;
    width: 100%;
    position: fixed;
    z-index: 10000;
}
.main-title a{
    position: relative;
    text-decoration: none;
    font-size: 25px;
    white-space: nowrap;
    color: #FF9D2E;
    cursor: pointer;
}

.nav-main {
   background: black;
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 64px;
    color:black;
    border: transparent;
    border-block-end: 1px solid hsla(20, 8%, 7%, 0.2);
    transition: 0.6s;
 
}
.nav-menu .dropdown:hover .dropdown-menu {
    display: block;
  }
  .cart-icon {
    position: relative;
    cursor: pointer;
  }

  .cart-icon i {
    font-size: 24px;
    color: beige;
  }

  .cart-badge {
    position: absolute;
    top: -5px;
    right: -10px;
    background-color: #ff9d2e;
    color: white;
    font-size: 12px;
    padding: 2px 5px;
    border-radius: 50%;
    font-weight: bold;
  }

  .dropdown-menu {
    list-style: none;
    margin: 0;
    padding: 0;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: black;
    border: 1px solid #ccc;
    display: none;
  }

  .dropdown-menu li {
    width: 200px;
  }

  .dropdown-menu a {
    padding: 10px 15px;
    color: #333;
    display: block;
  }

  .dropdown-menu a:hover {
    background-color: #f0f0f0;
  };
  
.main-title a{
    position: relative;
    text-decoration: none;
    font-size: 25px;
    white-space: nowrap;
    color: #FF9D2E;
    cursor: pointer;
      
}
.nav-ul {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 64px;
    gap: 40px;
    list-style-type: none;
    box-shadow : 20px;
}
.nav-ul li a {
    font-family: Roboto, sans-serif;
    text-transform: capitalize;
    font-weight: 575;
    font-size: 20px;
    text-decoration: none;
    color:white;
}
.nav-ul li a:hover {
    color: #FF9D2E;
    cursor: pointer;
}




.header-context {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    padding: 4px 8px;
    font-size: 24px;
    font-family: cursive;
    letter-spacing: 1.2px; 
    text-transform: capitalize;
}
.header-context h1 {
    color: #2297be;
    font-family: 'Rouge Script', cursive;
    white-space: nowrap;
    font-size: 80px;
    margin: 16px 0;
    text-shadow: -1px -1px 0 black, 1px -1px 0 aqua, -1px 1px 0 black, 1px 1px 0 aqua;
}
.header-context h3 {
    font-size: 24px;
}
.openMenu, .closeMenu {
    font-size: 1.8rem;
    margin: 8px 16px;
    display: none;
    cursor: pointer;
}
/* HumBurger Media Query */
.menu-filter {
 text-align-last: center;
 padding: 40px;


}
.filter-btn {
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  background-color: saddlebrown;
  color: white;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
}

@media screen and (max-width: 800px) {
    .nav-ul {
        height: 100vh;
        position: fixed;
        top: -100vh;
        right: 0;
        left: 0;
        z-index: 10;
        margin: 0;
        padding: 0;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        background-color: #666;
        display: none;
        transition: top 1s ease;
    }
    .closeMenu {
        display: block;
        position: absolute;
        top: 20px;
        right: 20px;
    }
    .openMenu {
        display: block;
        transition: all 0.8s;
    }
    .nav-ul li a {
        color: black;
    }
    .nav-ul li a:hover {
        color: #FF9D2E;
    }
    .header-context h1 {
        font-size: 64px;
        margin: 8px 2px;
    }
    .header-context h3 {
        margin-top: 8px;
        font-size: 18px;
    }
    .nav-main {
        padding: 0 32px;
        height: 64px;
    }
    .main-title {
        font-size: 18px;
    }
}
@media screen and (max-width: 420px) {
    .header-context h1 {
        font-size: 52px;
    }
    .header-context h3 {
        font-size: 14px;
    }
    .nav-main {
        padding: 0 16px;
        height: 56px;
    }
    .main-title {
        font-size: 14px;
    }
    .openMenu, .closeMenu {
        font-size: 1.5rem;
    }
}
.text{
    color:whitesmoke;
    width: 100%;
    background-color: #e88c25;
}
/* Partision Code */
section {

    margin-bottom: 60px;
    width: 100%;
    
}

.slideshow-container {

    position: relative;
    max-width: 100%;
    
    margin: auto;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(11, 10, 10, 0.2);
    
  }
  
  .slide {

    display: none;
    flex-wrap: wrap;
    width: 100%;
    height: 700px;
  }
  
  .left-column {
    width: 50%;
    height: 100%;
  }
  
  .right-column {
    width: 50%;
    background:black;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    color: #ccc;
  }
  
  .slide-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
  }
  
  .right-column h2 {
margin-bottom: 0px;
   
    font-size: 28px;
  }
  
  .right-column p {
    font-size: 20px;
    margin: 20px 0;
  }
  
  .slide-button {
    background-color: #ff9d2e;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
  }
  
  .slide-button:hover {
    background-color: #e88c25;
  } */
  
  .prev, .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    padding: 16px;
    margin-top: -22px;
    color: white;
    font-weight: bold;
    font-size: 18px;
    user-select: none;
    transition: 0.3s;
    border-radius: 50%;
    background: rgba(243, 238, 238, 0.5);
  }
  
  .prev:hover, .next:hover {
    background: rgba(0, 0, 0, 0.8);
  }
  
  .prev {
    left: 10px;
  }
  
  .next {
    right: 10px;
  }
  
  @keyframes fade {
    from { opacity: 0.4; }
    to { opacity: 1; }
  }
 
/* About CSS */
.about-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 48px;
    padding: 16px 32px;
}
.about-banner {
    position: relative;
    width: 424px;
}
.about-img1 {
    max-width: 100%;
    height: auto;
}
.about-img2 {
    width: 200px;
    height: 175px;
    position: absolute;
    left: 16px;
    top: 0px;
    animation: scaleUp 1s linear infinite alternate;
}
@keyframes scaleUp {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.05);
    }
}
.about-content {
    width: 424px;
    padding: 8px 12px;
}
.h2-about-title {
    font-size: 36px;
    margin-bottom: 12px;
    color: #FF9D2E;
}
.span {
    color: #FF9D2E;
    white-space: nowrap;
}
.section-text {
    line-height: 1.2rem;
    padding: 4px;
    font-size: 16px;
    color:white;
    margin-bottom: 12px;
}
.about-ul {
    list-style-type: none;
    padding-left: 4px;
    margin: 12px 0;
}
.about-text{
    margin-left: 4px;
    line-height: 1.6rem;
    font-size: 16px;
    color:wheat;
    font-weight: bold;
    white-space: nowrap;
}
.btn-order-now {
    background: none;
    padding: 10px 20px;
    font-size: 20px;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    cursor: pointer;
    color: #F9F6F0;
    transition: color 0.8s;
    position: relative;
    overflow: hidden;
    border: 2px solid #FF9D2E;
    border-radius: 4px;
}
.btn-order-now:hover {
    color: #FF9D2E;
}
.btn-order-now::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 200%;
    background: #FF9D2E;
    z-index: -1;
    transition: 0.8s;
    border-radius: 0 0 50% 50%;
}
.btn-order-now:hover::before {
    height: 0%;
}
@media screen and (max-width: 1200px) {
    .about-container {
        gap: 40px;
    }
    .about-banner {
        width: 375px;
    }
    .about-img2 {
        width: 150px;
        height: 25px;
    }
}
@media screen and (max-width: 800px) {
    .about-container {
        display: block;
        padding: 16px;
    }
    .about-banner {
        display: flex;
        justify-content: center;
        align-items: center;
        width: auto;
        margin-bottom: 16px;
    }
    .about-content {
        width: auto;
    }
}
@media screen and (max-width: 600px) {
    .about-container {
        gap: 32px;
        padding: 8px 16px;
    }
    .about-img2 {
        width: 125px;
        height: 100px;
    }
}

/* Menu Items */
.menu-header {
    
    text-align: center;
}
.subhead{
    color: red;
    font-size: 30px;
}
.Heading{
    font-size: 30px;
    color:  rgb(255, 196, 0);
} 
.Discription{
    font-size: 18px;
    padding: 4px 0;
    color: rgb(215, 201, 201);
}
.allitems {
    display: grid;
    grid-template-columns: auto auto auto;
    justify-content: center;
    align-items: center;
    gap: 28px 48px;
    margin-bottom: 32px;
}
.btn {
    display: block;
    background: none;
    font-size: 18px;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    cursor: pointer;
    width: 100%;
    height: 45px;
    color: #F9F6F0;
    transition: color 0.8s;
    position: relative;
    overflow: hidden;
    border: 2px solid #FF9D2E;
}
.btn:hover {
    color: #FF9D2E;
}
.btn::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 200%;
    background: #FF9D2E;
    z-index: -1;
    transition: 0.8s;
    border-radius: 0 0 50% 50%;
}
.btn:hover::before {
    height: 0%;
}
.dishpic{
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
}
.price-tag {
    text-align: center;
    font-size: 18px;
    padding: 4px 0;
    color: white
}
.Items{
    width: 275px;
    height: 404px;
}
.Dish{
    text-align: center;
    font-size: 20px;
    padding: 4px 0;
    color: #bbbbbb;
}
@media screen and (max-width: 1000px) { 
    .allitems{
        grid-template-columns: auto auto;
        gap: 32px 32px;
    }
}
@media screen and (max-width: 620px) {
    .allitems {
        grid-template-columns: auto;
        gap: 24px 24px;
    }
}

/* Review paga code */
.testimonials{
    margin: 0;
    
    padding: 60px 0;
    background: black;
    color: red;
    text-align: center;
}
.inner{
    max-width: 1300px;
    margin: auto;
    overflow: hidden;
    padding: 0 20px;
}
.inner-border {
    width: 264px;
    height: 4px;
    border-radius: 8px;
    background: #edb574;
    margin: 0 auto 12px;
}
.inner h1 {
    font-size: 45px;
    color: #ff9d2e;
}
.row{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
.col{
    flex: 33.33%;
    max-width: 33.33%;
    box-sizing: border-box;
    padding: 15px;
}
.testimonial{
    color: white;
    height: 450px;
    background:rgb(48, 45, 45);
    padding: 4px 8px;
    border-radius: 15px;
    transition: transform 0.5s;
    box-shadow: 1px 1px 2px white;
    cursor: pointer;
}
.testimonial img{
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin: 8px 0;
}


.star{
    color: orange;
    margin: 12px 0;
}
.name{
    color: #FF9D2E;
    font-size: 20px;
    font-weight: bold;
    text-transform: capitalize;
    margin: 8px 0;
    white-space: nowrap;
}
@media screen and (max-width: 800px) {
    .inner h1 {
        font-size: 26px;
        white-space: nowrap;
    }
    .col{
        flex: 75%;
        max-width: 100%;
    }
    .testimonial {
        height: 400px;
    }
}

/* Footer CSS */
footer {
	background-color: #24262b;
}
.footer-row {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    line-height: 1.6rem;
}
.footer-col {
    height: 225px;
    width: 250px;
    padding: 8px;
}
.footer-col ul {
    list-style-type: none;
}
.footer-col ul  a {
    text-transform: capitalize;
    
    text-decoration: none;
	font-weight: 400;
    letter-spacing: 0.8px;
	color: #bbbbbb;
}
.footer-col ul li  {
    text-transform: capitalize;
   text-align: center;
   font-size-adjust: 01px;
	color: #bbbbbb;}
.footer-col ul  a:hover {
    color: #e91e63;
}
.footer-title {
    position: relative;
    color: #ffffff;
    text-transform: capitalize;
    padding: 4px 0 0;
    margin-bottom: 12px;
}
.footer-title::before{
	content: '';
	position: absolute;
	left: 0;
	bottom: -4px;
	background-color: #e91e63;
	height: 2px;
	box-sizing: border-box;
	width: 75px;
}
.social-links a i {
    display: inline-block;
    text-align: center;
	height: 40px;
	width: 40px;
	background-color: rgba(255,255,255,0.2);
    padding-top: 6px;
    margin: 4px;
	text-align: center;
	line-height: 1.6rem;
	border-radius: 50%;
	color: #ffffff;
	transition: all 0.4s ease;
}
.social-links a i:hover {
    color: #e91e63;
    transform: translateY(-4px);
}
.footer-copyright, .footer-copyright h3 a {
    text-decoration: none;
    text-align: center;
    color: #F9F6F0;
    padding: 12px 0;
    font-size: 16px;
    letter-spacing: 1.1px;
    font-family: Verdana, Tahoma, sans-serif;
    text-transform: capitalize;
}
 @media screen and (max-width: 700px) {
    .footer-row {
        display: block;
    }
    .footer-col {
        width: 50%;
        margin-left: auto;
        margin-right: auto;
    }
    .footer-copyright, .footer-copyright h3 a {
        font-size: 14px;
    }
 } 
 .cart-icon {
    position: relative;
    cursor: pointer;
  }

  .cart-icon i {
    font-size: 24px;
    color: white;
  }

  .cart-badge {
    position: absolute;
    top: -5px;
    right: -10px;
    background-color: #ff9d2e;
    color: white;
    font-size: 12px;
    padding: 2px 5px;
    border-radius: 50%;
    font-weight: bold;
  }

  /* Cart Dropdown */
  .cart-dropdown {
    display: none;
    position: absolute;
    right: 0;
    top: 40px;
    background-color: white;
    color: black;
    width: 300px;
    padding: 10px;
    border-radius: 5px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 1000;
  }

  .cart-dropdown.show {
    display: block;
  }

  .cart-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
  }

  .cart-item h4 {
    font-size: 16px;
    margin: 0;
  }

  .cart-item p {
    margin: 0;
    color: saddlebrown;
  }

  .remove-item {
    background: none;
    border: none;
    color: red;
    font-size: 16px;
    cursor: pointer;
  }

  .cart-total {
    margin-top: 10px;
    text-align: right;
    font-weight: bold;
    color: saddlebrown;
  }
  a {
    text-decoration: none;
    color: rgb(15, 14, 14);
  }

  /* Navbar */
  .nav-main {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: black;
    padding: 10px;
    position: sticky;
    top: 0;
    z-index: 1000;
  }

  .logo-container img {
    height: 50px;
    width: auto;
  }

  .nav-ul {
    list-style: none;
    display: flex;
    gap: 20px;
    align-items: center;
  }

  .cart-icon,
  .profile-icon {
    position: relative;
    cursor: pointer;
  }

  .cart-icon i,
  .profile-icon i {
    font-size: 24px;
    color: white;
  }

  .cart-badge {
    position: absolute;
    top: -5px;
    right: -10px;
    background-color: #ff9d2e;
    color: white;
    font-size: 12px;
    padding: 2px 5px;
    border-radius: 50%;
    font-weight: bold;
  }

  /* Login Modal */
  .modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
  }

  .modal-content {
    background: white;
    color: black;
    padding: 20px;
    border-radius: 8px;
    width: 300px;
    text-align: center;
    position: relative;
  }
  .modal-content h2{
    color: #070707;

  }

  .close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    background: none;
    border: none;
    font-size: 18px;
    cursor: pointer;
  }

  .login-form input {
    width: 100%;
    padding: 8px;
    margin: 10px 0;
    border: 1px solid #ccc;
    border-radius: 5px;
  }

  .login-form button {
    width: 100%;
    padding: 8px;
    background-color: saddlebrown;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
  }