@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600&display=swap');

/* General Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
    scroll-margin-top: 100px;
  }
  
  body {
    background-color: #121212;
    color: #ffffff;
  }
  
  /* Header */
  header {
    background-color: #1f1f1f;
    padding: 20px;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
  }
  
  .navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  /* Logo */
  .logo a {
    color: #ed2380;
    font-size: 24px;
    text-decoration: none;
    font-weight: bold;
  }
  
  /* Navigation Links */
  .nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
  }
  
  .nav-links li a {
    color: #ffffff;
    text-decoration: none;
    font-size: 18px;
    transition: color 0.3s;
  }
  
  .nav-links li a:hover {
    color: #ed2380;
  }
  
  /* Call-to-Action Buttons */
  .cta-buttons {
    display: flex;
    gap: 15px;
    align-items: center;
    justify-content: center;

  }
  
  .order-btn, .login-btn {
    padding: 8px 20px;
    border-radius: 5px;
    cursor: pointer;
    margin-bottom: 15px;   
    transition: background-color 0.3s;
  }
  
  .order-btn {
    background-color: #ed2380;
    color: #ffffff;
  }
  
  .order-btn:hover {
    background-color: #ba1965;
  }
  
  .login-btn {
    background-color: #ffffff;
    color: #1f1f1f;
  }
  
  .login-btn:hover {
    background-color: #d4d4d4;
  }
  
  @media only screen and (max-width: 768px) {
    .cta-buttons {
        display: flex; 
        flex-direction: row; 
        justify-content: space-between; 
        gap: 10px; 
    }

    .order-btn,
    .login-btn {
        flex: 1; 
        max-width: 60px; 
        box-sizing: border-box; 
        margin-bottom: 15px;
    }
}

  
  /* Mobile Menu Toggle */
  .menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
  }
  
  .menu-toggle .bar {
    width: 25px;
    height: 3px;
    background-color: #ffffff;
    margin: 4px 0;
    transition: 0.3s;
  }
  
  /* Media Queries */
  @media (max-width: 768px) {
    .nav-links {
      display: none;
      position: absolute;
      top: 95px;
      left: 0;
      background-color: #1f1f1f;
      width: 100%;
      flex-direction: column;
      gap: 10px;
      text-align: center;
      padding: 20px 0;
    }
  
    .nav-links li {
      margin: 10px 0;
    }
  
   
  
    .menu-toggle {
      display: flex;
    }
  
    .nav-links.active {
      display: flex;
    }
  }
  

.menu-item {
  background-color: #f8f8f8;
  border-radius: 8px;
  padding: 16px;
  text-align: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.menu-item img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 12px;
}

.menu-item h4 {
  font-size: 20px;
  color: #333;
  margin-bottom: 8px;
}

.menu-item p {
  font-size: 16px;
  color: #666;
  margin-bottom: 12px;
}

.price-options span {
  font-size: 14px;
  font-weight: bold;
  color: #ff5722;
}

.add-to-cart {
  background-color: #28a745;
  color: white;
  border: none;
  padding: 10px 16px;
  font-size: 14px;
  cursor: pointer;
  border-radius: 4px;
  margin-top: 10px;
  transition: background-color 0.3s ease;
}

.add-to-cart:hover {
  background-color: #218838;
}

.menu-item:hover {
  transform: scale(1.05);
}



  /* General Styles */
  
  h1, p {
    margin-bottom: 20px;
  }
  
  /* Hero Section */
  .hero {
    background-image: url('hero-background1.jpg'); 
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
  }
  
  .hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.6); /* Dark overlay */
    z-index: 1;
  }
  
  .hero-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
    padding: 0 20px;
  }
  
  .hero h1 {
    font-size: 3rem;
    color: #ed2380;
  }
  
  .hero p {
    font-size: 1.2rem;
    color: #f5f5f5;
  }
  
  /* Call to Action Buttons */
  .cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 20px;
  }
  
  .cta {
    padding: 15px 30px;
    font-size: 16px;
    font-weight: bold;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 25px;
    transition: background-color 0.3s ease, color 0.3s ease;
  }
  
  .order-now {
    background-color: #ed2380;
    color: #ffffff;
  }
  
  .order-now:hover {
    background-color: #ba1965;
  }

  .full-price {
    text-decoration: line-through; /* Strikethrough for original price */
    color: #b4b0b0; /* Gray color to de-emphasize full price */
    margin-right: 10px; /* Space between full price and discounted price */
  }
  
  .discounted-price {
    color: #32c5f4; /* Red color to emphasize the discount */
    font-weight: bold;
    font-size: 1.2em; /* Slightly larger font for discount price */
  }
  
  .explore-menu {
    background-color: #ffffff;
    color: #1f1f1f;
  }
  
  .explore-menu:hover {
    background-color: #b3bbbd;
  }
  






  .menu-categories {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    padding-top: 10px;
    padding-bottom: 50px;
    text-align: center;
    text-underline-position: unset;
}
.category-btn {
    background-color: #32c5f4;
    color: white;
    border: none;
    padding: 12px 20px;
    font-size: 16px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    text-decoration: none;
}
.category-btn:hover {
    background-color: #2980b9;
}
@media (max-width: 600px) {
    .category-btn {
        width: calc(50% - 10px);
    }
}





#backToTop {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #3498db;
  color: white;
  border: none;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  text-align: center;
  line-height: 50px;
  font-size: 20px;
  cursor: pointer;
  /* display: none; remove for now to see it */
  opacity: 0;
  visibility: hidden;
  z-index: 1000;
}

#backToTop.show {
  opacity: 1;
  visibility: visible;
  display: block;
}

#backToTop:hover {
  background-color: #2980b9;
}






  /* Media Queries */
  @media (max-width: 768px) {
    .hero h1 {
      font-size: 2.5rem;
    }
  
    .hero p {
      font-size: 1rem;
    }
  
    .cta-buttons {
      flex-direction: column;
      gap: 15px;
    }
  }
  


  /* Menu Section */
.menu {
    padding: 80px 20px;
    text-align: center;
  }
  
  .menu-items {
    padding-top: 25px;
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
  }
  
  /* Menu Item Card */
  .menu-item {
    background-color: #1f1f1f;
    border-radius: 15px;
    padding: 20px;
    max-width: 300px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
  }
  
  .menu-item:hover {
    transform: translateY(-10px);
  }
  
  .menu-item img {
    width: 100%;
    border-radius: 10px;
  }
  
  .menu-item h3 {
    margin: 20px 0;
    font-size: 1.5rem;
    color: #ed2380;
  }
  
  .menu-item p {
    color: #f5f5f5;
    font-size: 1rem;
    margin-bottom: 15px;
  }
  
  /* .menu-item span {
    color: #ed2380;
    font-size: 1.2rem;
    font-weight: bold;
  } */
  
  /* See All Menu Button */
  .see-all-menu {
    margin-top: 40px;
  }
  
  .see-all-menu a {
    padding: 15px 30px;
    background-color: #ed2380;
    color: #ffffff;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 16px;
    border-radius: 30px;
    transition: background-color 0.3s ease;
  }
  
  .see-all-menu a:hover {
    background-color: #ba1965;
  }
  
  /* Responsive Design */
  @media (max-width: 768px) {
    .menu-items {
      flex-direction: column;
      align-items: center;
    }
  
    .menu-item {
      max-width: 90%;
      margin-bottom: 30px;
    }
  }



  /* Menu Section */
.menu-sections {
    padding: 130px 20px;
    margin: auto 0;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
  }
  .menu-section{
    width: 80%;
  }
  
  .menu-category {
    margin-bottom: 50px;
  }
  
  /* Menu Items */
  .menu-items {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
  }
  
  .menu-item {
    background-color: #1f1f1f;
    border-radius: 10px;
    padding: 20px;
    max-width: 300px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
  }
  
  .menu-item:hover {
    transform: translateY(-10px);
  }
  
  .menu-item img {
    width: 100%;
    border-radius: 10px;
  }
  
  .menu-item h4 {
    margin: 20px 0;
    font-size: 1.5rem;
    color: #32c5f4;
  }
  
  .menu-item p {
    color: #f5f5f5;
    font-size: 1rem;
    margin-bottom: 15px;
  }
  
  /* .menu-item span {
    color: #ed2380;
    font-size: 1.2rem;
    font-weight: bold;
  } */
  
  /* Add to Cart Button */
  .add-to-cart {
    background-color: #ed2380; /* Background color */
    color: #ffffff; /* Text color */
    border: none; /* No border */
    /* Vertical and horizontal padding */
   /* Top margin and horizontal margins */
    font-weight: bold; /* Bold text */
    font-size: 14px; /* Font size */
    cursor: pointer; /* Pointer cursor on hover */
    border-radius: 20px; /* Rounded corners */
    transition: background-color 0.3s ease; /* Smooth transition for background color */
    display: flex; /* Use flexbox for layout */
    justify-content: center; /* Center text horizontally */
    align-items: center; /* Center text vertically */
    text-align: center; /* Center text */
    width: 100%;
    padding: 10px 40px;
    margin-top: 20px;
}



.add-to-cart:hover {
    background-color: #ba1965; /* Darker shade on hover */
}

  
  .add-to-cart i {
    margin-right: 5px;
  }
  
  
  /* See All Menu Button */
  .see-all-menu {
    text-align: center;
    margin-top: 50px;
  }
  
  .see-all-menu a {
    padding: 15px 30px;
    background-color: #ed2380;
    color: #ffffff;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 16px;
    border-radius: 30px;
    transition: background-color 0.3s ease;
  }
  
  .see-all-menu a:hover {
    background-color: #ba1965;
  }
  
  /* Responsive */
  @media (max-width: 768px) {
    .menu-items {
      flex-direction: column;
      align-items: center;
    }
    .menu-item {
      max-width: 90%;
    }
  }

  /* cart */

  h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #ed2380;
    margin-bottom: 40px;
  }
  
  .cart-section {
    padding: 85px 20px;
    max-width: 800px;
    margin: 0 auto;
  }
  
  .cart-items {
    background-color: #1f1f1f;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    margin-bottom: 20px;
  }
  
  .cart-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
  }
  
  .cart-item:last-child {
    margin-bottom: 0;
  }
  
  .cart-item img {
    width: 80px;
    border-radius: 10px;
  }
  
  .cart-item h4 {
    margin-left: 20px;
    font-size: 1.5rem;
    color: #32c5f4;
  }
  
  .cart-item span {
    color: #ed2380;
    font-size: 1.2rem;
    font-weight: bold;
  }
  
  .remove-item {
    background-color: #ed2380;
    color: #ffffff;
    border: none;
    padding: 5px 10px;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.3s ease;
  }
  
  .remove-item:hover {
    background-color: #ba1965;
  }




  /* Cart Summary */
  .cart-summary {
    text-align: center;
  }
  
  .cart-summary h3 {
    color: #32c5f4;
    margin-bottom: 20px;
  }
  
  .checkout-btn {
    background-color: #ed2380;
    color: #ffffff;
    border: none;
    padding: 15px 30px;
    cursor: pointer;
    border-radius: 30px;
    transition: background-color 0.3s ease;
  }
  
  .checkout-btn:hover {
    background-color: #ba1965;
  }
  
  .checkout-btn:disabled {
    background-color: #555555;
    cursor: not-allowed;
  }


  /* General Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
  }
  
  body {
    background-color: #121212;
    color: #ffffff;
  }
  
  h2 {
    font-size: 2.5rem;
    color: #ed2380;
    text-align: center;
    margin-bottom: 20px;
  }
  

  .container {
    text-align: center;  
  }
  
  h3 {
    position: relative;
    font-family: 'Arial', sans-serif;
    font-size: 36px;
    color: #ffffff;
    text-align: center;           
    display: inline-block;       
    margin: 0 auto;              
  }
  
  h3::after {
    content: "";
    position: absolute;
    bottom: -5px;                
    left: 0;
    width: 100%;                 
    height: 3px;                  
    background-color: #32c5f4;   
  }
  
  /* h3 {
    text-align: center;
    position: relative;          
    font-family: 'Arial', sans-serif;
    font-size: 36px;
    color: #ffffff;
    display: inline-block;       
  }
  h3::after {
    content: "";
    position: absolute;
    bottom: -5px;                
    left: 0;
    width: 100%;                 
    height: 3px;               
    background-color: #FF6347;   
  } */



  .contact-section {
    display: flex;
    justify-content: space-between;
    padding: 50px;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .contact-form-container {
    flex: 1;
    margin-right: 40px;
  }
  
  .form-group {
    margin-bottom: 20px;
  }
  
  label {
    display: block;
    font-size: 1.2rem;
    color: #32c5f4;
    margin-bottom: 10px;
  }
  
  input, textarea {
    width: 100%;
    padding: 10px;
    background-color: #1f1f1f;
    color: #ffffff;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
  }
  
  input::placeholder, textarea::placeholder {
    color: #bdbdbd;
  }
  
  textarea {
    height: 150px;
  }
  
  .submit-btn {
    background-color: #ed2380;
    color: #ffffff;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1.2rem;
    transition: background-color 0.3s ease;
  }
  
  .submit-btn:hover {
    background-color: #ba1965;
  }
  
  .map-container {
    flex: 1;
  }


  
  .map-container h2 {
    font-size: 2em; 
    margin: 10px 0;
    font-size: 2.5rem;
    color: #ed2380;
  }
  
  #map {
    position: relative;
    padding-bottom: 56.25%; 
    height: 0;
    overflow: hidden;
    max-width: 100%;
  }
  
  #map iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
  }
  
  #map {
    width: 100%;
    height: 455px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  }
  
  /* Responsive */
  @media (max-width: 768px) {
    .contact-section {
      flex-direction: column;
    }
  
    .contact-form-container {
      margin-right: 0;
      margin-bottom: 40px;
    }
  }
  @media only screen and (max-width: 768px) {
    .map-container h2 {
      font-size: 2em; 
    }
  }
  

  


  /* Footer Styles */
.footer {
    background-color: #121212;
    color: #ffffff;
    padding: 40px 20px;
    text-align: center;
  }
  
  .footer-container {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .footer-logo {
    margin-bottom: 20px;
  }
  
  .logo {
    width: 150px; 
  }
  
  .footer-links {
    margin: 20px 0;
  }
  
  .footer-links ul {
    list-style-type: none;
    padding: 0;
  }
  
  .footer-links ul li {
    display: inline;
    margin: 0 15px;
  }
  
  .footer-links ul li a {
    color: #ed2380;
    text-decoration: none;
    transition: color 0.3s ease;
  }
  
  .footer-links ul li a:hover {
    color: #ba1965;
  }
  
  .footer-subscribe {
    margin: 20px 0;
  }
  
  .footer-subscribe h3 {
    margin-bottom: 10px;
  }
  
  #subscribe-email {
    padding: 10px;
    width: 250px;
    border: none;
    border-radius: 5px;
    margin-right: 10px;
    background-color: #1f1f1f;
    color: #ffffff;
  }
  
  .subscribe-btn {
    background-color: #ed2380;
    color: #ffffff;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }
  
  .subscribe-btn:hover {
    background-color: #ba1965;
  }
  
  .footer-socials {
    margin: 20px 0;
  }
  
  .footer-socials h3 {
    margin-bottom: 10px;
  }
  .footer-socials h4{
    margin-bottom: 10px;
  }
  .footer-subscribe h4{
    margin-bottom: 10px;
  }
  
  .social-icons {
    display: flex;
    justify-content: center;
  }
  
  .social-icon {
    width: 30px; 
    margin: 0 10px;
  }
  
  .footer-bottom {
    margin-top: 20px;
    font-size: 0.8rem;
  }
  
  /* Responsive */
  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
    }
  
    .footer-links ul li {
      display: block;
      margin: 10px 0;
    }
  
    #subscribe-email {
      width: 100%;
    }
    .subscribe-btn {
      margin-top: 10px;
    }
    .footer-socials {
      margin-top: 10px;
    }
    .footer-socials h4{
      margin-bottom: 10px;
    }
    .footer-subscribe h4{
      margin-bottom: 10px;
    }
  }
  