:root {
  --primary-color: #588157;
  --secondary-color: #3a5a40;
  --text-color: #333;
  --background-color: #f4f9f4;
  --white: #ffffff;
  --nav-bg: #344e41;
  --nav-hover: #588157;
  --transition-speed: 0.3s;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

body {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: var(--text-color);
  background-color: var(--background-color);
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Hamburger Menu */
.hamburger {
  padding: 10px;
  cursor: pointer;
  background-color: transparent;
  border: 0;
  margin: 0;
  display: none; /* default hidden */
}

.hamburger-inner,
.hamburger-inner::before,
.hamburger-inner::after {
  background-color: var(--white) !important;
}

.hamburger.is-active .hamburger-inner,
.hamburger.is-active .hamburger-inner::before,
.hamburger.is-active .hamburger-inner::after {
  background-color: var(--white) !important;
}

/* Floating Nav */
.floating-nav {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--nav-bg);
  padding: 15px 30px;
  border-radius: 50px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(5px);
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 90%;
  max-width: 1200px;
  gap: 20px;
  transition: all var(--transition-speed) ease;
}

.floating-nav.scrolled {
  top: 0;
  border-radius: 0;
  width: 100%;
  max-width: 100%;
}

.floating-nav .logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.floating-nav .logo-img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  transform: scale(4);
  transform-origin: left center;
}

.floating-nav .logo span {
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--white);
  white-space: nowrap;
  transition: color var(--transition-speed) ease;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 30px;
  margin-left: auto;
  padding-left: 20px;
}

.nav-links li {
  white-space: nowrap;
}

.nav-links a {
  text-decoration: none;
  color: var(--white);
  font-weight: 500;
  transition: all var(--transition-speed) ease;
  padding: 5px 10px;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: var(--nav-hover);
  transition: width var(--transition-speed) ease;
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-links a:hover {
  color: var(--nav-hover);
}

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--nav-bg);
  padding: 80px 20px 20px;
  transform: translateX(100%);
  transition: transform var(--transition-speed) ease;
  z-index: 999;
}

.mobile-menu.active {
  transform: translateX(0);
}

.mobile-menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mobile-menu li {
  margin: 20px 0;
  text-align: center;
  opacity: 0;
  transform: translateY(20px);
  transition: all var(--transition-speed) ease;
}

.mobile-menu.active li {
  opacity: 1;
  transform: translateY(0);
}

.mobile-menu li:nth-child(1) { transition-delay: 0.1s; }
.mobile-menu li:nth-child(2) { transition-delay: 0.2s; }
.mobile-menu li:nth-child(3) { transition-delay: 0.3s; }
.mobile-menu li:nth-child(4) { transition-delay: 0.4s; }
.mobile-menu li:nth-child(5) { transition-delay: 0.5s; }

.mobile-menu a {
  text-decoration: none;
  color: var(--white);
  font-size: 1.5rem;
  font-weight: 500;
  display: block;
  padding: 10px;
  transition: color var(--transition-speed) ease;
}

.mobile-menu a:hover {
  color: var(--nav-hover);
}

/* RESPONSIVE LOGIC */


/* The rest (hero, about, contact, animations, etc.) remain unchanged */


/* Animations */
@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-20px); }
  100% { transform: translateY(0px); }
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.animate-slide-up {
  animation: slideUp 1s ease-out;
}

.animate-fade-in {
  animation: fadeIn 1s ease-out;
}

.animate-float {
  animation: float 6s ease-in-out infinite;
}

.animate-bounce {
  animation: bounce 2s ease-in-out infinite;
}

.animate-hover {
  transition: transform var(--transition-speed) ease;
}

.animate-hover:hover {
  transform: translateY(-5px);
}

.animate-pulse {
  animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.8; }
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 100px 5% 50px;
  background-color: var(--background-color);
  overflow: hidden;
}

.hero-content {
  flex: 1;
  max-width: 600px;
  padding-right: 50px;
}

.hero h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  line-height: 1.2;
  margin-bottom: 30px;
  color: #333;
}

.hero-text p {
  font-size: clamp(1rem, 2vw, 1.25rem);
  margin-bottom: 15px;
  color: #555;
}

.order-now-btn {
  display: inline-block;
  padding: 15px 40px;
  margin-top: 30px;
  background: var(--primary-color);
  color: var(--white);
  text-decoration: none;
  border-radius: 50px;
  font-size: clamp(1rem, 2vw, 1.2rem);
  font-weight: bold;
  transition: all var(--transition-speed) ease;
  box-shadow: 0 4px 15px rgba(88, 129, 87, 0.3);
}

.order-now-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(88, 129, 87, 0.4);
  background: var(--secondary-color);
}

.hero-image {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-image img {
  max-width: 100%;
  height: auto;
  border-radius: 50%;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Common Section Styles */
section {
  padding: 100px 0;
}

section h2 {
  text-align: center;
  font-size: clamp(2rem, 4vw, 2.5rem);
  margin-bottom: 50px;
  color: var(--primary-color);
}

/* About Section */
.about {
  background: var(--white);
}

.about-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  font-size: clamp(1rem, 2vw, 1.2rem);
  line-height: 1.8;
}

/* Menu Section */
.menu {
  background: #f5f5f5;
}

.menu-content {
  text-align: center;
}

.menu-button {
  display: inline-block;
  padding: 15px 30px;
  background: var(--primary-color);
  color: var(--white);
  text-decoration: none;
  border-radius: 50px;
  font-weight: bold;
  transition: all var(--transition-speed) ease;
}

.menu-button:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 15px rgba(88, 129, 87, 0.3);
}

/* Subscription Section */
.subscription {
  background: var(--white);
}

.subscription-content {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-top: 50px;
}

.plan {
  background: #f8f8f8;
  padding: 30px;
  border-radius: 15px;
  text-align: center;
  transition: all var(--transition-speed) ease;
  width: 300px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.plan:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.plan.featured {
  background: var(--primary-color);
  color: var(--white);
  transform: scale(1.05);
}

.plan h3 {
  font-size: clamp(1.5rem, 3vw, 1.8rem);
  margin-bottom: 20px;
}

.plan .price {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: bold;
  margin-bottom: 30px;
}

.subscribe-button {
  padding: 12px 30px;
  font-size: clamp(0.9rem, 2vw, 1.1rem);
  background: var(--secondary-color);
  color: var(--white);
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: all var(--transition-speed) ease;
}

.subscribe-button:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 15px rgba(58, 90, 64, 0.3);
}

/* Contact Section */
.contact {
  background: #f5f5f5;
}

.order-options {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.order-link {
  display: inline-block;
  padding: 15px 30px;
  text-decoration: none;
  color: var(--white);
  border-radius: 50px;
  font-weight: bold;
  transition: all var(--transition-speed) ease;
  min-width: 200px;
  text-align: center;
}

.order-link.swiggy {
  background: #fc8019;
}

.order-link.zomato {
  background: #cb202d;
}

.order-link.whatsapp {
  background: #25d366;
}

.order-link:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.contact-info {
  text-align: center;
  font-size: clamp(1rem, 2vw, 1.2rem);
}

/* Responsive Design */
@media (max-width: 1200px) {
  .container {
    padding: 0 30px;
  }
}

@media (max-width: 992px) {
  .nav-links {
    display: none;
  }

  .mobile-menu {
    display: block;
  }

  .floating-nav {
    padding: 10px 20px;
  }
}

@media (max-width: 768px) {
  .floating-nav {
    padding: 10px 20px;
  }

  .nav-links {
    display: none;
  }

  .mobile-menu-button {
    display: block;
  }

  .mobile-menu {
    display: block;
  }

  .hero {
    flex-direction: column;
    text-align: center;
    padding-top: 100px;
    gap: 50px;
  }

  .hero-content {
    padding-right: 0;
    margin-bottom: 0;
  }

  .hero h1 {
    font-size: 2.5rem;
  }

  .order-now-btn {
    padding: 12px 30px;
    font-size: 1.1rem;
  }

  .subscription-content {
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }

  .plan {
    width: 100%;
    max-width: 300px;
  }

  .plan.featured {
    transform: none;
  }

  .order-options {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }

  .order-link {
    width: 100%;
    max-width: 300px;
  }
}

@media (max-width: 480px) {
  .floating-nav {
    padding: 8px 15px;
  }

  .floating-nav .logo span {
    font-size: 1.2rem;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .hero-text p {
    font-size: 1rem;
  }

  section {
    padding: 60px 0;
  }

  section h2 {
    font-size: 2rem;
  }
}
@media (min-width: 992px) {
  .hamburger {
    display: none !important;
  }

  .nav-links {
    display: flex !important;
  }
}


