:root {
  /* Color Palette - Emerald & Gold */
  --primary: #064e3b; /* Deep Emerald */
  --primary-light: #065f46;
  --secondary: #d4af37; /* Gold */
  --secondary-light: #f3cf65;
  --accent: #10b981; /* Fresh Green */
  --text-dark: #1f2937;
  --text-light: #f9fafb;
  --white: #ffffff;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-800: #1f2937;
  
  /* Typography */
  --font-main: 'Inter', sans-serif;
  --font-heading: 'Outfit', sans-serif;
  
  /* Shadows & Radius */
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --radius-md: 12px;
  --radius-lg: 20px;
  
  /* Transitions */
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-main);
  color: var(--text-dark);
  background-color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* --- Header --- */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: transparent;
  transition: var(--transition);
  padding: 1.5rem 0;
}

header.scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: 1rem 0;
  box-shadow: var(--shadow-md);
}

header.scrolled .nav-link {
  color: var(--text-dark);
}

header.scrolled .logo-text {
  color: var(--primary);
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo-text {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.5px;
}

.logo-text span {
  color: var(--secondary);
}

.nav-links {
  display: flex;
  gap: 2.5rem;
}

.nav-link {
  color: var(--white);
  font-weight: 500;
  font-size: 1rem;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--secondary);
  transition: var(--transition);
}

.nav-link:hover::after {
  width: 100%;
}

.cta-button {
  background: var(--secondary);
  color: var(--primary);
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.9rem;
  box-shadow: var(--shadow-sm);
  white-space: nowrap;
  display: inline-block;
}

.cta-button:hover {
  background: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* --- Hot Food Section --- */
.hot-food-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hot-food-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 500px;
}

.hot-food-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hot-food-text h2 {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 1.5rem;
}

.hot-food-text p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  color: var(--text-dark);
  opacity: 0.8;
}

.hot-food-text ul {
  margin-bottom: 2.5rem;
  list-style: none;
}

.hot-food-text li {
  margin-bottom: 1rem;
  display: flex;
  gap: 1rem;
  align-items: center;
}

.hot-food-text li i {
  color: var(--secondary);
}

@media (max-width: 768px) {
  .hot-food-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .hot-food-image {
    height: 300px;
  }
  
  .hot-food-text h2 {
    font-size: 2rem;
  }
}

/* --- Mobile Menu --- */
.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
}

.mobile-menu-btn span {
  width: 30px;
  height: 3px;
  background: var(--white);
  border-radius: 3px;
  transition: var(--transition);
}

header.scrolled .mobile-menu-btn span {
  background: var(--primary);
}

/* --- Hero Section --- */
.hero {
  height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('public/images/hero.png');
  background-size: cover;
  background-position: center;
  color: var(--white);
  overflow: hidden;
}

.hero-content {
  max-width: 700px;
}

.hero h1 {
  font-size: 4.5rem;
  margin-bottom: 1.5rem;
  animation: slideUp 1s ease-out;
}

.hero p {
  font-size: 1.25rem;
  margin-bottom: 2.5rem;
  opacity: 0.9;
  animation: slideUp 1s ease-out 0.2s backwards;
}

.hero-btns {
  display: flex;
  gap: 1.5rem;
  animation: slideUp 1s ease-out 0.4s backwards;
}

@keyframes slideUp {
  from { transform: translateY(50px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

/* --- Categories --- */
.section {
  padding: 8rem 0;
}

.section-title {
  text-align: center;
  margin-bottom: 4rem;
}

.section-title h2 {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 1rem;
}

.section-title .underline {
  width: 80px;
  height: 4px;
  background: var(--secondary);
  margin: 0 auto;
  border-radius: 2px;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.category-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 400px;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}

.category-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.category-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.category-card:hover img {
  transform: scale(1.1);
}

.category-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 2rem;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  color: var(--white);
}

.category-overlay h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

/* --- Scrolling Categories --- */
.category-scroller {
  padding: 4rem 0;
  background: var(--white);
  overflow: hidden;
}

.category-scroller .section-title {
  margin-bottom: 3rem;
}

.scroller-track {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.scroller-inner {
  display: flex;
  gap: 4rem;
  width: max-content;
  animation: scroll 30s linear infinite;
}

.scroller-inner:hover {
  animation-play-state: paused;
}

.scroll-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  width: 120px;
}

.circle-icon {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  transition: var(--transition);
  border: 4px solid var(--white);
  overflow: hidden;
  background: var(--white);
}

.circle-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* --- Offers Banner --- */
.offers-banner {
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.offers-content {
  box-shadow: var(--shadow-lg);
}

/* --- Floating WhatsApp --- */
.whatsapp-float {
  position: fixed;
  bottom: 100px;
  right: 30px;
  background: #25d366;
  color: white;
  padding: 12px 24px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  box-shadow: var(--shadow-lg);
  z-index: 999;
  transition: var(--transition);
}

.whatsapp-float:hover {
  transform: translateY(-5px) scale(1.05);
  background: #128c7e;
}

.whatsapp-float i {
  font-size: 1.5rem;
}

/* --- Mobile Bottom Nav --- */
.bottom-nav {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: var(--white);
  box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.1);
  z-index: 1001;
  padding: 10px 0;
  justify-content: space-around;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
}

.bottom-nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  color: var(--gray-800);
  font-size: 0.75rem;
  font-weight: 600;
}

.bottom-nav-item i {
  font-size: 1.2rem;
  color: var(--primary);
}

.bottom-nav-item:hover i {
  color: var(--secondary);
}

/* --- Mobile Responsiveness Updates --- */
.mobile-logo-container {
  display: none;
}

@media (max-width: 768px) {
  header {
    display: none; /* Hide top navbar on mobile */
  }

  .mobile-logo-container {
    display: flex;
    align-items: center;
    width: 100%;
    padding: 1rem 20px; /* Left padding as requested */
    position: fixed;
    top: 0;
    left: 0;
    z-index: 2000;
    transition: var(--transition);
    background: transparent;
  }

  .mobile-logo-container.scrolled {
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  }

  .mobile-logo-container img {
    height: 45px;
    width: auto;
    filter: drop-shadow(0 3px 10px rgba(0,0,0,0.2));
  }
  
  .hero {
    padding-top: 5rem;
    min-height: 100vh;
    display: flex;
    align-items: center;
  }

  .whatsapp-float {
    display: none; /* Hide floating button on mobile since it's in the bottom nav */
  }
  
  .bottom-nav {
    display: flex;
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 400px;
    background: rgba(6, 78, 59, 0.9); /* Primary color with opacity */
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    padding: 12px 20px;
    justify-content: space-around;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    z-index: 1001;
  }
  
  .bottom-nav-item {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.7rem;
    font-weight: 500;
    transition: var(--transition);
    flex: 1;
    text-align: center;
  }

  .bottom-nav-item i {
    font-size: 1.4rem;
    color: var(--white);
    margin-bottom: 4px;
    display: block;
    transition: var(--transition);
  }

  .bottom-nav-item:active i,
  .bottom-nav-item:hover i {
    color: var(--secondary);
    transform: translateY(-5px);
  }

  .bottom-nav-item:active span,
  .bottom-nav-item:hover span {
    color: var(--white);
  }
  
  body {
    padding-bottom: 100px; /* Space for floating nav */
  }

  .hero {
    padding-top: 4rem; /* Adjust since header is gone */
  }
}

.scroll-item span {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--text-dark);
  font-size: 0.9rem;
  white-space: nowrap;
}

.scroll-item:hover .circle-icon {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

@keyframes scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(calc(-50% - 2rem)); }
}

/* --- Features --- */
.features {
  background: var(--gray-100);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
}

.feature-item {
  text-align: center;
  padding: 2rem;
  background: var(--white);
  border-radius: var(--radius-md);
  transition: var(--transition);
}

.feature-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.feature-icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  display: block;
}

.feature-item h3 {
  color: var(--primary);
  margin-bottom: 1rem;
}

/* --- Contact & Location --- */
.contact-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.map-box {
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 450px;
  box-shadow: var(--shadow-lg);
}

.map-box iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.contact-info h3 {
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 2rem;
}

.info-item {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.info-icon {
  font-size: 1.5rem;
  color: var(--secondary);
}

.info-text h4 {
  margin-bottom: 0.25rem;
}

/* --- Footer --- */
footer {
  background: var(--primary);
  color: var(--white);
  padding: 4rem 0 2rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-logo .logo-text {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.footer-links h4 {
  margin-bottom: 1.5rem;
  color: var(--secondary);
}

.footer-links ul li {
  margin-bottom: 0.75rem;
  opacity: 0.8;
}

.footer-links ul li:hover {
  opacity: 1;
  padding-left: 5px;
}

.copyright {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.9rem;
  opacity: 0.6;
}

/* --- Offers Banner --- */
.offers-banner {
  padding-bottom: 4rem;
}

.offers-content {
  box-shadow: var(--shadow-lg);
}

/* --- Hot Food Section --- */
.hot-food-grid li i {
  font-size: 1.1rem;
}

/* --- Testimonials --- */
.testimonial-card {
  transition: var(--transition);
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

/* --- Mobile Responsiveness --- */
@media (max-width: 1024px) {
  .hero h1 { font-size: 3.5rem; }
  .contact-container { grid-template-columns: 1fr; gap: 3rem; }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
  
  .mobile-menu-btn {
    display: flex;
  }
  
  .hero { text-align: center; }
  .hero h1 { font-size: 2.8rem; }
  .hero-btns { justify-content: center; flex-direction: column; }
  
  .section { padding: 5rem 0; }
  
  .container { padding: 0 1.5rem; }

  /* Mobile Nav styles */
  .nav-links.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--white);
    padding: 2rem;
    box-shadow: var(--shadow-lg);
    gap: 1.5rem;
    text-align: center;
  }
  
  .nav-links.active .nav-link {
    color: var(--primary);
    font-size: 1.2rem;
  }
  
  .mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
  }
  
  .mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
  }
  
  .mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -8px);
  }

  /* New Sections Mobile Adjustments */
  .offers-content {
    padding: 2.5rem !important;
    text-align: center;
  }
  
  .offers-content h2 {
    font-size: 2rem !important;
  }
  
  .hot-food-grid {
    grid-template-columns: 1fr !important;
    gap: 2rem !important;
  }
  
  .hot-food-image {
    height: 300px !important;
  }
  
  .hot-food-text {
    text-align: center;
  }
  
  .hot-food-text ul {
    text-align: left;
    display: inline-block;
  }
}
