* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", -apple-system, sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #fafafa;
}

/* Typography */
h1,
h2,
h3 {
  font-weight: 300;
  letter-spacing: -0.5px;
}
/* Header Styling */
header {
  background: rgba(255, 255, 255, 0.95); /* Semi-transparent white */
  padding: 1.5rem 5%; /* Responsive padding */
  position: fixed; /* Stays at the top */
  width: 100%; /* Full width */
  top: 0;
  z-index: 1000; /* Ensures it stays on top */
  backdrop-filter: blur(10px); /* Frosted glass effect */
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05); /* Subtle shadow */
  display: flex; /* Flexbox for layout */
  justify-content: space-between; /* Space between items */
  align-items: center; /* Center items vertically */
  transition: background 0.3s ease, box-shadow 0.3s ease; /* Smooth transitions */
}

/* Logo or Heading */
header h1 {
  font-size: 1.5rem; /* Adjusted for readability */
  color: #2c2c2c; /* Neutral dark color */
  font-weight: 500; /* Semi-bold */
  margin-bottom: 0.1rem; /* Space below */
}
h1 a {
  text-decoration: none;
  color: #333;
  transition: color 0.2s ease;
}

h1 a:hover {
  color: #666;
}
/* Navigation Menu */
nav {
  flex: 1; /* Allows the nav to grow and center the content */
  display: flex;
  justify-content: center; /* Centers the list in the navbar */
}

/* Navigation List */
nav ul {
  list-style: none; /* Remove bullets */
  display: flex; /* Flex layout for items */
  gap: 2rem; /* Space between items */
  padding: 0; /* Remove default padding */
  margin: 0; /* Remove default margin */
}

/* Navigation Links */
nav ul li a {
  text-decoration: none; /* Remove underlines */
  color: #555; /* Neutral color for links */
  font-size: 1rem; /* Standard font size */
  font-weight: 700; /* Bold for visibility */
  transition: color 0.3s ease; /* Smooth hover effect */
}

/* Hover Effect for Links */
nav ul li a:hover {
  color: #333; /* Darker hover color */
}

/* Active Link Styling */
nav ul li a.active {
  color: #333; /* Highlight active link */
  border-bottom: 2px solid #333; /* Active indicator */
}

/* Hero Section */
#hero {
  margin-top: 80px;
  height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    rgba(255, 255, 255, 0.9),
    rgba(255, 255, 255, 0.7)
  );
  z-index: -1;
}

.hero-content {
  max-width: 800px;
  padding: 2rem;
  text-align: center;
}

.hero-content h2 {
  font-size: 3rem;
  margin-bottom: 1rem;
  color: #1a1a1a;
}

/* Modern Cards */
.card {
  background: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s, box-shadow 0.3s;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
}

.card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

/* Menu Grid */
.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  padding: 2rem 5%;
}

.menu-item {
  position: relative;
  padding: 1rem;
}

.menu-item img {
  border-radius: 8px 8px 0 0;
}

.menu-item-content {
  padding: 1.5rem;
}

.menu-item-header {
  display: flex;
  justify-content: space-between;
  align-items: start;
  margin-bottom: 1rem;
}

/* Order Modal */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 2000;
  align-items: center;
  justify-content: center;
}

.modal-content {
  background: white;
  padding: 2rem;
  border-radius: 8px;
  max-width: 500px;
  width: 90%;
}

/* Buttons */
.button {
  background: #333;
  color: white;
  border: none;
  padding: 1rem 2rem;
  margin: 0.5rem;
  cursor: pointer;
  transition: all 0.3s;
  font-size: 0.9rem;
  border-radius: 3px;
}

.button:hover {
  background: #000;
  transform: translateY(-2px);
}

.button.secondary {
  background: transparent;
  color: #333;
  border: 1px solid #333;
}
.button.secondary a{
  text-decoration: none;
  color: #333;
  }

.quantity-controls {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 1rem 0;
}

.quantity-btn {
  background: #f0f0f0;
  border: none;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.3s;
}

.quantity-btn:hover {
  background: #e0e0e0;
}

/* Features Section */
#features {
  padding: 5rem 5%;
  background: white;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.feature-card {
  text-align: center;
  padding: 2rem;
}

.feature-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #333;
}

/* Cart Badge */
.cart-badge {
  position: fixed;
  top: 20px;
  right: 20px;
  background: #333;
  color: white;
  padding: 1rem;
  border-radius: 50%;
  cursor: pointer;
  z-index: 1001;
}
/* Testimonial Section */
#testimonials {
  background-color: #f9f9f9;
  padding: 2rem;
  text-align: center;
}

.testimonial-container {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
}

.testimonial-card {
  background: white;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  margin: 1rem;
  padding: 1.5rem;
  width: 300px;
}

.testimonial-card p {
  font-style: italic;
}

.testimonial-card span {
  display: block;
  margin-top: 1rem;
  font-weight: bold;
}

.testimonial-card a {
  display: block;
  margin-top: 0.5rem;
  color: #007BFF;
  text-decoration: none;
}

.testimonial-card a:hover {
  text-decoration: underline;
}
/* Events Styling */
#events-offers {
  background-color: #f4f4f4;
  padding: 2rem;
  text-align: center;
}

.events-container {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
}

.event-card, .offer-card {
  background: white;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  margin: 1rem;
  padding: 1.5rem;
  width: 300px;
}

.event-card h3, .offer-card h3 {
  color: #333;
}

.event-card p, .offer-card p {
  margin: 0.5rem 0;
}

.event-card span {
  display: block;
  margin-top: 1rem;
  font-weight: bold;
}
/* Responsive Design */
@media (max-width: 768px) {
  nav ul {
    flex-direction: column;
    gap: 1rem;
  }

  .hero-content h2 {
    font-size: 2rem;
  }

  .menu-grid {
    grid-template-columns: 1fr;
  }
}

/* Subscription section */

.subscription-section {
  padding: 5rem 2rem;
  background-color: #f9f9f9;
}

.subscription-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.subscription-desc {
  max-width: 600px;
  margin: 1.5rem auto 3rem;
  color: #666;
}

.subscription-plans {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  padding: 1rem;
}

.plan-card {
  background: white;
  border-radius: 10px;
  padding: 2rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  position: relative;
}

.plan-card:hover {
  transform: translateY(-5px);
}

.plan-card.featured {
  border: 2px solid #4caf50;
}

.featured-badge {
  position: absolute;
  top: -12px;
  right: 20px;
  background: #4caf50;
  color: white;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 0.9rem;
}

.plan-features {
  list-style: none;
  padding: 0;
  margin: 2rem 0;
  text-align: left;
}

.plan-features li {
  margin: 1rem 0;
  color: #555;
}

.plan-features i {
  color: #4caf50;
  margin-right: 10px;
}
/* Contact Form */

.contact-section {
  padding: 5rem 2rem;
  background-color: #f9f9f9;
}

.contact-container {
  max-width: 1200px;
  margin: 0 auto;
}

.contact-container h2 {
  text-align: center;
  margin-bottom: 1rem;
}

.contact-desc {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 3rem;
  color: #666;
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 3rem;
}

.contact-info {
  background: white;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.info-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 2rem;
}

.info-item:last-child {
  margin-bottom: 0;
}

.info-item i {
  font-size: 1.5rem;
  color: #4caf50;
  margin-right: 1rem;
  margin-top: 0.25rem;
}

.info-item h3 {
  margin: 0 0 0.5rem 0;
  font-size: 1.1rem;
}

.info-item p {
  margin: 0;
  color: #666;
  line-height: 1.5;
}

.contact-form {
  background: white;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group.full-width {
  grid-column: span 2;
}

label {
  margin-bottom: 0.5rem;
  color: #333;
}

input,
textarea {
  padding: 0.8rem;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 1rem;
}

textarea {
  resize: vertical;
}

.button {
  background: #4caf50;
  color: white;
  padding: 1rem 2rem;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 1rem;
  font-weight: bold;
  transition: background 0.3s ease;
}

.button:hover {
  background: #45a049;
}

/* Responsive Design */
@media (max-width: 768px) {
  .contact-content {
    grid-template-columns: 1fr;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .form-group.full-width {
    grid-column: span 1;
  }
}
/* Responsive header */
header {
    background: rgba(255, 255, 255, 0.95);
    padding: 1.5rem 5%;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  header h1 {
    font-size: 1.5rem;
    color: #2c2c2c;
    font-weight: 500;
  }
  
  header h1 a {
    text-decoration: none;
    color: inherit;
    transition: color 0.2s ease;
  }
  
  nav ul {
    list-style: none;
    display: flex;
    gap: 2rem;
  }
  
  nav ul li a {
    text-decoration: none;
    color: #555;
    font-size: 1rem;
    font-weight: 700;
    transition: color 0.3s ease;
  }
  
  nav ul li a:hover {
    color: #333;
  }
  
  .mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
  }
  
  .mobile-menu-btn span {
    display: block;
    width: 25px;
    height: 2px;
    background-color: #333;
    margin: 5px 0;
    transition: all 0.3s ease;
  }
  
  .cart-badge {
    position: fixed;
    top: 20px;
    right: 20px;
    background: #333;
    color: white;
    padding: 0.5rem;
    border-radius: 50%;
    cursor: pointer;
    z-index: 1001;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
  }
  
  @media (max-width: 768px) {
    .mobile-menu-btn {
      display: block;
    }
  
    nav {
      position: fixed;
      top: 0;
      right: -100%;
      width: 70%;
      height: 100vh;
      background: white;
      padding: 80px 2rem 2rem;
      transition: right 0.3s ease;
    }
  
    nav.active {
      right: 0;
    }
  
    nav ul {
      flex-direction: column;
      gap: 1.5rem;
    }
  
    .mobile-menu-btn.active span:nth-child(1) {
      transform: rotate(45deg) translate(5px, 5px);
    }
  
    .mobile-menu-btn.active span:nth-child(2) {
      opacity: 0;
    }
  
    .mobile-menu-btn.active span:nth-child(3) {
      transform: rotate(-45deg) translate(7px, -7px);
    }
  
    .cart-badge {
      top: 15px;
      right: 70px;
    }
  }
  /* Footer Section */
  .footer {
    background-color: #2d2d2d;
    color: #ffffff;
    padding: 4rem 2rem 2rem;
    margin-top: 4rem;
  }
  
  .footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
  }
  
  .footer-section h4 {
    color: #ffffff;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    position: relative;
  }
  
  .footer-section h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -0.5rem;
    width: 50px;
    height: 2px;
    background-color: #f8b400;
  }
  
  .footer-section p, .footer-section li {
    color: #a0a0a0;
    line-height: 1.6;
    margin-bottom: 0.5rem;
  }
  
  .footer-section ul {
    list-style: none;
    padding: 0;
  }
  
  .footer-section ul li {
    margin-bottom: 0.75rem;
  }
  
  .footer-section ul li a {
    color: #a0a0a0;
    text-decoration: none;
    transition: color 0.3s ease;
  }
  
  .footer-section ul li a:hover {
    color: #ffffff;
  }
  
  .social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
  }
  
  .social-links a {
    color: #ffffff;
    font-size: 1.5rem;
    transition: color 0.3s ease;
  }
  
  .social-links a:hover {
    color: #f8b400;
  }
  
  .footer-bottom {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #404040;
    text-align: center;
    color: #707070;
    font-size: 0.9rem;
  }
  
  .footer-bottom p {
    margin: 0.5rem 0;
  }
  
  @media (max-width: 768px) {
    .footer-content {
      grid-template-columns: 1fr;
      gap: 2rem;
    }
    
    .footer {
      padding: 3rem 1.5rem 1.5rem;
    }
  }