/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Afacad+Flux:wght@300;400;500;600;700&family=DM+Sans:wght@300;400;500;600;700&display=swap');

/* CSS Variables */
:root {
  --font-heading: 'Afacad Flux', sans-serif;
  --font-body: 'DM Sans', sans-serif;

  /* Brand color palette */
  --primary-color: #1a1a1a;
  --primary-black: #1a1a1a;
  --brand-emerald: #1e3a32;
  --brand-grey: #585858;
  --brand-white: #FAFAFA;
  --warm-white: #f9f7f4;
  --light-cool-grey: #f9f7f4;
  --cream: #f9f7f4;
  --accent-emerald: #1e3a32;
  --text-dark: #333333;
  --text-light: #6c757d;
  --white: #FAFAFA;
  --border-radius: 8px;
  --button-radius: 30px;

  /* Spacing */
  --container-max: 1400px;
  --section-padding: 60px 0;
}

/* Accessibility - Skip Links */
.skip-link {
  position: absolute;
  top: -40px;
  left: 6px;
  background: var(--accent-emerald);
  color: var(--white);
  padding: 8px 16px;
  text-decoration: none;
  font-weight: 500;
  border-radius: 4px;
  z-index: 10000;
  font-size: 14px;
  transition: top 0.3s ease;
}

.skip-link:focus {
  top: 6px;
}

/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  height: 100%;
  width: 100%;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  line-height: 1.6;
  color: var(--text-dark);
  background-color: var(--warm-white);
}

.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 40px;
}

/* Loading Screen */
.loading-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--warm-white);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  opacity: 1;
  transition: opacity 0.5s ease;
}

.loading-screen.hidden {
  opacity: 0;
  pointer-events: none;
}

.loading-spinner {
  text-align: center;
}

.spinner {
  width: 50px;
  height: 50px;
  border: 4px solid var(--cream);
  border-top: 4px solid var(--accent-emerald);
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin: 0 auto 20px;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.loading-spinner p {
  color: var(--text-light);
  font-size: 14px;
  letter-spacing: 1px;
}

/* Header Styles */
.header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  background: transparent;
  border-bottom: none;
  box-shadow: none;
  transition: all 0.3s ease;
  padding: 25px 0;
}

.header.scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
  padding: 15px 0;
}

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  transition: all 0.3s ease;
  z-index: 1001;
}

.menu-toggle span {
  width: 25px;
  height: 2px;
  background-color: var(--white);
  margin: 3px 0;
  transition: all 0.3s ease;
  transform-origin: center;
  display: block;
}

.header.scrolled .menu-toggle span {
  background-color: var(--text-dark);
}

.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}

.navbar {
  padding: 15px 0;
}

.nav-container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-left, .nav-right {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-link {
  text-decoration: none;
  color: var(--white);
  font-weight: 400;
  font-size: 15px;
  transition: color 0.3s ease;
  letter-spacing: 0.3px;
}

.nav-link:hover {
  color: var(--accent-emerald);
}

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

.header.scrolled .nav-link:hover {
  color: var(--accent-emerald);
}

.logo {
  display: flex;
  align-items: center;
  position: relative;
  height: auto;
  min-height: 30px;
}

.logo-text {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  white-space: nowrap;
  line-height: 1;
}

.logo-white {
  display: block;
  opacity: 1;
  color: var(--white);
}

.logo-black {
  display: none;
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  color: var(--accent-emerald);
}

/* Logo visibility states */
.header.scrolled .logo-white {
  display: none;
  opacity: 0;
}

.header.scrolled .logo-black {
  display: block;
  opacity: 1;
}



.nav-right button {
  background: none;
  border: none;
  color: var(--white);
  cursor: pointer;
  padding: 8px;
  border-radius: 50%;
  transition: all 0.3s ease;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-right button:hover {
  background-color: rgba(255,255,255,0.1);
  color: var(--accent-emerald);
}

/* Clean icon symbols without emojis */
.search-btn::before { content: "⌕"; font-size: 18px; }
.location-btn::before { content: "⌖"; font-size: 16px; }
.account-btn::before { content: "◯"; font-size: 16px; }
.cart-btn::before { content: "▢"; font-size: 16px; }

/* Hero Section */
.hero {
  height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  overflow: hidden;
  background: linear-gradient(rgba(26, 26, 26, 0.4), rgba(26, 26, 26, 0.5)), 
              url('https://images.unsplash.com/photo-1482049016688-2d3e1b311543?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80') center/cover;
  padding: 120px 80px 0 80px;
}

.hero-content {
  text-align: left;
  color: var(--white);
  z-index: 2;
  position: relative;
  max-width: 50%;
  width: 100%;
}

.hero-badge {
  display: inline-block;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50px;
  padding: 8px 20px;
  margin-bottom: 25px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.5px;
}

.hero-badge span {
  color: var(--white);
}

.hero-rating {
  margin-bottom: 40px;
  opacity: 0.9;
}

.stars {
  color: var(--accent-emerald);
  font-size: 16px;
  margin-bottom: 8px;
  letter-spacing: 2px;
}

.hero-rating span {
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 400;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: 4rem;
  font-weight: 400;
  line-height: 1.1;
  margin-bottom: 20px;
  letter-spacing: -1px;
  max-width: 500px;
}

.hero-subtitle {
  font-size: 1rem;
  opacity: 0.9;
  margin-bottom: 15px;
  font-weight: 400;
  line-height: 1.5;
}

.hero-value {
  font-size: 0.9rem;
  opacity: 0.85;
  margin-bottom: 35px;
  font-weight: 300;
  line-height: 1.6;
}

.hero-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 30px 0;
}

.hero-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 16px;
  color: var(--white);
}

.feature-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  background: var(--accent-emerald);
  border-radius: 50%;
  flex-shrink: 0;
  position: relative;
}

.feature-icon::after {
  content: '';
  width: 8px;
  height: 4px;
  border: 2px solid var(--white);
  border-top: none;
  border-right: none;
  transform: rotate(-45deg);
  margin-top: -2px;
}

.hero-buttons {
  display: flex;
  gap: 15px;
  justify-content: flex-start;
  margin-top: 40px;
}

.btn-primary, .btn-secondary {
  padding: 14px 32px;
  font-size: 12px;
  font-weight: 500;
  border-radius: var(--button-radius);
  border: none;
  cursor: pointer;
  transition: all 0.4s ease;
  font-family: var(--font-body);
  letter-spacing: 1px;
  text-transform: uppercase;
  text-decoration: none !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  line-height: 1;
  white-space: nowrap;
}

.btn-primary:focus, .btn-secondary:focus {
  outline: 3px solid var(--accent-emerald);
  outline-offset: 3px;
  box-shadow: 0 0 0 5px rgba(30, 58, 50, 0.2);
}

.btn-primary:focus-visible, .btn-secondary:focus-visible {
  outline: 3px solid var(--accent-emerald);
  outline-offset: 3px;
  box-shadow: 0 0 0 5px rgba(30, 58, 50, 0.2);
}

.btn-primary:hover, .btn-secondary:hover {
  text-decoration: none !important;
}

.btn-primary {
  background-color: var(--white);
  color: var(--primary-black);
}

.btn-primary:hover {
  background-color: var(--accent-emerald);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-secondary {
  background-color: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.6);
}

.btn-secondary:hover {
  background-color: rgba(255,255,255,0.1);
  border-color: var(--white);
}

/* Service section buttons need dark styling for light backgrounds */
.services .btn-secondary,
.product-item .btn-secondary {
  background-color: transparent;
  color: var(--primary-black);
  border: 2px solid var(--primary-black);
}

.services .btn-secondary:hover,
.product-item .btn-secondary:hover {
  background-color: var(--primary-black);
  color: var(--white);
  border-color: var(--primary-black);
}

/* Media Logos - Hidden for cleaner look */
.media-logos {
  display: none;
}

/* Premium Quality Banner */
.premium-banner {
  min-height: 300px;
  padding: 60px 20px;
  background-color: var(--accent-emerald);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white);
}

.premium-content {
  max-width: 800px;
  margin: 0 auto;
  width: 100%;
}

.premium-content h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  font-weight: 400;
  color: var(--white);
  margin-bottom: 20px;
  letter-spacing: -1px;
  line-height: 1.2;
}

.premium-content p {
  font-size: clamp(1rem, 2.5vw, 1.1rem);
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 0;
  font-weight: 300;
}

@media (max-width: 1024px) {
  .premium-banner {
    min-height: 280px;
    padding: 50px 30px;
  }
}

@media (max-width: 768px) {
  .premium-banner {
    min-height: 260px;
    padding: 40px 20px;
  }
  
  .premium-content h2 {
    margin-bottom: 18px;
  }
  
  .premium-content p {
    margin-bottom: 0;
  }
}

@media (max-width: 480px) {
  .premium-banner {
    min-height: 240px;
    padding: 30px 15px;
  }
  
  .premium-content h2 {
    margin-bottom: 15px;
  }
  
  .premium-content p {
    line-height: 1.5;
  }
}

/* Image Grid Section */
.image-grid-section {
  padding: 0;
  background-color: var(--warm-white);
}

.image-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  max-width: 100%;
  width: 100%;
}

.grid-item {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.grid-item:hover {
  transform: scale(1.02);
}

.grid-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: var(--border-radius);
}

.grid-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  background: linear-gradient(
    to top,
    rgba(26, 26, 26, 0.8) 0%,
    rgba(26, 26, 26, 0.4) 40%,
    transparent 100%
  );
  display: flex;
  align-items: flex-end;
  padding: 25px;
  transition: opacity 0.3s ease;
}

.grid-text {
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 400;
  letter-spacing: 0.5px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
  line-height: 1.2;
}

@media (max-width: 768px) {
  .image-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .grid-overlay {
    padding: 20px;
  }
  
  .grid-text {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .image-grid {
    grid-template-columns: 1fr;
  }
  
  .grid-overlay {
    padding: 25px;
  }
  
  .grid-text {
    font-size: 1.1rem;
  }
}

/* Business Hours Section */
.business-hours-section {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--primary-black) 0%, var(--soft-black) 100%);
  color: var(--white);
}

.hours-highlight h2 {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 50px;
  color: var(--white);
  font-weight: 400;
}

.hours-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 900px;
  margin: 0 auto;
}

.hours-item {
  background-color: rgba(255, 255, 255, 0.1);
  padding: 30px;
  border-radius: var(--border-radius);
  text-align: center;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.hours-item:hover {
  transform: translateY(-5px);
  background-color: rgba(255, 255, 255, 0.15);
  border-color: var(--accent-emerald);
}

.hours-item.special {
  background: linear-gradient(135deg, var(--accent-emerald), #2d5a4f);
  color: var(--white);
}

.hours-item.closed {
  background-color: rgba(255, 255, 255, 0.05);
  opacity: 0.7;
}

.hours-item .day {
  display: block;
  font-weight: 600;
  font-size: 18px;
  margin-bottom: 10px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.hours-item .time {
  display: block;
  font-size: 16px;
  opacity: 0.9;
}

/* Menu Section */
.menu {
  padding: var(--section-padding);
  background-color: var(--warm-white);
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 50px;
}

.menu-category {
  background-color: var(--white);
  padding: 40px;
  border-radius: var(--border-radius);
  transition: transform 0.3s ease;
}

.menu-category:hover {
  transform: translateY(-5px);
}

.menu-category.special {
  background: linear-gradient(135deg, var(--accent-emerald), #2d5a4f);
  color: var(--white);
}

.menu-category h3 {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  margin-bottom: 30px;
  color: var(--text-dark);
  font-weight: 400;
  text-align: center;
  padding-bottom: 15px;
  border-bottom: 2px solid var(--accent-emerald);
}

.menu-category.special h3 {
  color: var(--white);
  border-bottom-color: rgba(255, 255, 255, 0.3);
}

.menu-items {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.menu-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 15px;
  border-bottom: 1px solid var(--cream);
}

.menu-category.special .menu-item {
  border-bottom-color: rgba(255, 255, 255, 0.2);
}

.item-info h4 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--text-dark);
  margin-bottom: 5px;
  font-weight: 400;
}

.menu-category.special .item-info h4 {
  color: var(--white);
}

.item-info p {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.4;
  margin: 0;
}

.menu-category.special .item-info p {
  color: rgba(255, 255, 255, 0.8);
}

.price {
  font-weight: 600;
  font-size: 18px;
  color: var(--accent-emerald);
  white-space: nowrap;
  margin-left: 20px;
}

.menu-category.special .price {
  color: var(--white);
}

/* Products Section */
.products {
  padding: var(--section-padding);
  background-color: var(--warm-white);
}

.section-header {
  text-align: center;
  margin-bottom: 80px;
}

.section-label {
  color: var(--accent-emerald);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 20px;
  display: block;
}

.section-header h2 {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  color: var(--text-dark);
  font-weight: 400;
  letter-spacing: -1px;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px;
}

.product-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 100px;
}

.product-item.reverse {
  grid-template-columns: 1fr 1fr;
}

.product-item.reverse .product-content {
  order: 2;
}

.product-item.reverse .product-image {
  order: 1;
}

.product-content {
  text-align: left;
}

.product-content h3 {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--text-dark);
  margin-bottom: 25px;
  font-weight: 400;
  line-height: 1.3;
}

.product-badge {
  display: inline-block;
  background-color: var(--accent-emerald);
  color: var(--white);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.product-content p {
  color: var(--text-light);
  line-height: 1.7;
  font-size: 16px;
  margin-bottom: 30px;
}

.product-image {
  width: 100%;
  height: 400px;
  aspect-ratio: 1;
  border-radius: var(--border-radius);
  overflow: hidden;
  background-color: #f0f0f0;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: 1;
  transition: opacity 0.3s ease;
}

/* About Section */
.about {
  background-color: var(--warm-white);
}

.about-mission {
  display: none;
}

.about-label {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 30px;
  display: block;
}

.mission-statement {
  font-family: var(--font-heading);
  font-size: 3.2rem;
  color: var(--white);
  font-weight: 400;
  line-height: 1.3;
  max-width: 900px;
  margin: 0 auto;
  letter-spacing: -1px;
}

.about-details {
  padding: 100px 0;
  background-color: var(--accent-emerald);
}

.about-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 60px;
}

.about-text {
  width: 70%;
  max-width: 800px;
}

.about-text h3 {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  color: var(--white);
  margin-bottom: 25px;
  font-weight: 400;
  line-height: 1.2;
}

.about-text p {
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.7;
  font-size: 16px;
  margin-bottom: 25px;
}

.certifications {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
}

.cert-badge {
  display: inline-block;
  background-color: var(--accent-emerald);
  color: var(--white);
  padding: 8px 24px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
}

  @media (max-width: 768px) {
    .product-item {
      display: flex;
      flex-direction: column;
      gap: 20px;
      margin-bottom: 50px;
      padding: 0;
    }

    .product-item.reverse {
      flex-direction: column;
    }

    /* Reset all order properties on mobile to maintain content-image pairing */
    .product-item .product-content,
    .product-item.reverse .product-content {
      order: 1;
      text-align: center;
      padding: 0;
    }

    .product-item .product-image,
    .product-item.reverse .product-image {
      order: 2;
      height: 200px;
      width: 100%;
      margin: 0 auto;
      border-radius: 0px;
    }

    .product-content h3 {
      font-size: 1.4rem;
      line-height: 1.3;
      margin-bottom: 15px;
    }

    .product-content p {
      font-size: 15px;
      line-height: 1.6;
      margin-bottom: 20px;
    }

    .about-mission {
      padding: 80px 0;
    }

    .mission-statement {
      font-size: 2.4rem;
    }

    .about-content {
      align-items: center;
    }

    .about-text {
      width: 90%;
    }

    .certifications {
      flex-direction: column;
      align-items: center;
    }
  }

/* Testimonials */
.testimonials {
  padding: var(--section-padding);
  background-color: var(--warm-white);
}

.testimonials h2 {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  color: var(--text-dark);
  text-align: center;
  margin-bottom: 60px;
  font-weight: 400;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.testimonial {
  background-color: var(--white);
  padding: 25px;
  border-radius: var(--border-radius);
  text-align: center;
}

.testimonial .stars {
  color: var(--accent-emerald);
  font-size: 16px;
  margin-bottom: 15px;
  letter-spacing: 2px;
}

.testimonial p {
  font-style: italic;
  margin-bottom: 15px;
  line-height: 1.7;
  color: var(--text-light);
  font-size: 16px;
}

.testimonial cite {
  font-weight: 500;
  color: var(--text-dark);
  font-style: normal;
  font-size: 14px;
}

/* Atmospheric Quote Banner */
.quote-banner {
  height: 40vh;
  min-height: 280px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: linear-gradient(rgba(26, 26, 26, 0.65), rgba(26, 26, 26, 0.65)), 
              url('https://images.unsplash.com/photo-1511081692775-05d0f180a065?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80') center/cover;
  text-align: center;
  color: var(--white);
  margin: 0;
  padding: 0;
}

.quote-overlay {
  position: relative;
  z-index: 2;
  max-width: 700px;
  padding: 0 40px;
}

.banner-quote {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 400;
  line-height: 1.3;
  margin: 0 0 25px 0;
  letter-spacing: -1px;
  color: var(--white);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.quote-author {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 400;
  color: var(--accent-emerald);
  font-style: normal;
  letter-spacing: 1px;
  text-shadow: 0 1px 5px rgba(0, 0, 0, 0.5);
}

@media (max-width: 1024px) {
  .quote-banner {
    height: 35vh;
    min-height: 250px;
  }
  
  .banner-quote {
    font-size: 2rem;
  }
  
  .quote-author {
    font-size: 0.95rem;
  }
}

@media (max-width: 768px) {
  .quote-banner {
    height: 32vh;
    min-height: 220px;
    padding: 0 20px;
  }
  
  .quote-overlay {
    padding: 0 20px;
  }
  
  .banner-quote {
    font-size: 1.7rem;
    line-height: 1.2;
    margin-bottom: 20px;
  }
  
  .quote-author {
    font-size: 0.85rem;
  }
}

@media (max-width: 480px) {
  .quote-banner {
    height: 30vh;
    min-height: 200px;
  }
  
  .quote-overlay {
    padding: 0 15px;
  }
  
  .banner-quote {
    font-size: 1.5rem;
    margin-bottom: 15px;
  }
  
  .quote-author {
    font-size: 0.8rem;
  }
}

/* Contact Section */
.contact {
  padding: 60px 0;
  background-color: var(--primary-black);
  color: var(--white);
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  max-width: 1000px;
  margin: 0 auto;
}

.contact-info h2 {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  margin-bottom: 30px;
  font-weight: 400;
}

.contact-item {
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.contact-item strong {
  color: var(--accent-emerald);
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.contact-item p {
  margin: 0;
  font-size: 15px;
  line-height: 1.5;
}

.contact-item a {
  color: var(--white);
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-item a:hover {
  color: var(--accent-emerald);
}

.hours h3 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  margin-bottom: 20px;
  font-weight: 400;
}

.hours ul {
  list-style: none;
  padding: 0;
}

.hours li {
  padding: 8px 0;
  font-size: 14px;
  line-height: 1.4;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.hours li:last-child {
  border-bottom: none;
}

/* Footer */
.footer {
  background-color: var(--soft-black);
  color: var(--white);
  padding: 40px 0 20px;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 40px;
}

.footer-left h3 {
  font-family: var(--font-heading);
  font-size: 16px;
  color: var(--accent-emerald);
  font-weight: 400;
  margin-bottom: 5px;
}

.footer-left p {
  font-size: 12px;
  opacity: 0.8;
  margin: 0;
}

.footer-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.footer-right span {
  font-size: 12px;
  opacity: 0.7;
  white-space: nowrap;
}

.social-links {
  display: flex;
  gap: 15px;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  transition: all 0.3s ease;
  text-decoration: none;
}

.social-links a:hover {
  background-color: var(--accent-emerald);
  transform: translateY(-2px);
}

.social-links svg {
  width: 18px;
  height: 18px;
  fill: var(--white);
}

/* WhatsApp Widget */
.whatsapp-widget {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
}

.whatsapp-widget a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background-color: #25D366;
  border-radius: 50%;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-decoration: none;
}

.whatsapp-widget a:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
}

.whatsapp-widget svg {
  width: 30px;
  height: 30px;
  fill: white;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .container {
    padding: 0 30px;
  }

  .nav-container {
    padding: 0 30px;
  }

  .hero {
    padding-left: 50px;
    padding-bottom: 60px;
  }

  .hero-title {
    font-size: 2.4rem;
  }

  .product-item {
    gap: 40px;
    margin-bottom: 80px;
  }

  .contact {
    padding: 50px 0;
  }

  .contact-content {
    grid-template-columns: 1fr 1fr;
    gap: 60px;
  }

  .contact-info h2 {
    font-size: 1.6rem;
    margin-bottom: 25px;
  }

  .contact-item {
    margin-bottom: 25px;
  }

  .hours h3 {
    font-size: 1.3rem;
  }

  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .menu-toggle {
    display: flex;
  }

  /* Ensure logo doesn't shrink on mobile */
  .logo-text {
    font-size: 22px !important;
    flex-shrink: 0;
    min-width: max-content;
  }

  .logo {
    flex-shrink: 0;
  }

  .nav-right {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: var(--primary-black);
    flex-direction: column;
    padding: 20px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
    z-index: 1000;
  }

  .nav-right.active {
    display: flex;
    animation: slideDown 0.3s ease;
  }

  @keyframes slideDown {
    from {
      opacity: 0;
      transform: translateY(-10px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .nav-link {
    color: var(--white) !important;
    padding: 15px 0;
  }

  .hero {
    padding: 100px 40px 0 40px;
  }

  .hero-content {
    max-width: 90%;
  }

  .hero-title {
    font-size: 2.8rem;
  }

  .hero-subtitle {
    font-size: 14px;
  }

  .hero-features {
    margin: 25px 0;
  }

  .hero-feature {
    font-size: 14px;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 12px;
    margin-top: 30px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    text-align: center;
    width: 100%;
  }

  .nav-link:last-child {
    border-bottom: none;
  }

  .container {
    padding: 0 20px;
  }

  .nav-container {
    padding: 0 20px;
  }

  .hero {
    height: 70vh;
    padding-left: 20px;
    padding-bottom: 40px;
    padding-right: 20px;
  }

  .hero-content {
    max-width: 100%;
  }

  .hero-title {
    font-size: 2rem;
    line-height: 1.2;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }

  .btn-primary, .btn-secondary {
    width: 100%;
    max-width: 250px;
    text-align: center;
  }

  .section-header {
    margin-bottom: 50px;
  }

  .section-header h2 {
    font-size: 1.8rem;
  }

  .business-hours-section {
    padding: 60px 0;
  }

  .hours-highlight h2 {
    font-size: 2rem;
  }

  .hours-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .menu-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .menu-category {
    padding: 30px 25px;
  }

  .contact-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer-content {
    flex-direction: column;
    text-align: center;
    gap: 25px;
    padding: 0 20px;
  }

  .footer-right {
    flex-direction: column-reverse;
    gap: 15px;
  }

  .footer-left {
    order: 2;
  }

  .footer-right {
    order: 1;
  }

  .about-details {
    padding: 60px 0;
  }

  .about-text h3 {
    font-size: 1.8rem;
  }

  .whatsapp-widget {
    bottom: 15px;
    right: 15px;
  }

  .whatsapp-widget a {
    width: 50px;
    height: 50px;
  }

  .whatsapp-widget svg {
    width: 25px;
    height: 25px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }

  .nav-container {
    padding: 0 15px;
  }

  /* Maintain logo size on small mobile */
  .logo-text {
    font-size: 20px !important;
    flex-shrink: 0;
  }

  .logo {
    flex-shrink: 0;
    min-width: max-content;
  }

  .nav-right {
    gap: 10px;
    padding: 15px;
  }

  .nav-right .nav-link {
    font-size: 14px;
    padding: 12px 0;
  }

  .hero {
    height: 60vh;
    padding-left: 15px;
    padding-right: 15px;
    padding-bottom: 30px;
  }

  .hero-title {
    font-size: 1.7rem;
    line-height: 1.1;
  }

  .btn-primary, .btn-secondary {
    padding: 14px 20px;
    font-size: 13px;
  }

  .logo h1 {
    font-size: 18px;
  }

  .logo span {
    font-size: 7px;
    letter-spacing: 1.5px;
  }

  .section-header h2 {
    font-size: 1.6rem;
  }

  .product-item {
    padding: 0;
    margin-bottom: 30px;
  }

  .product-content {
    padding: 0;
  }

  .product-content h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
  }

  .product-content p {
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 15px;
  }

  .product-image {
    height: 180px;
  }

  .menu-category {
    padding: 25px 20px;
  }

  .menu-category h3 {
    font-size: 1.5rem;
  }

  .testimonial {
    padding: 20px;
  }

  .testimonial p {
    font-size: 15px;
  }

  .contact {
    padding: 40px 0;
  }

  .contact-content {
    gap: 30px;
  }

  .contact-info h2 {
    font-size: 1.4rem;
    margin-bottom: 20px;
  }

  .contact-item {
    margin-bottom: 20px;
  }

  .contact-item strong {
    font-size: 12px;
  }

  .contact-item p {
    font-size: 14px;
  }

  .hours h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
  }

  .hours li {
    padding: 6px 0;
    font-size: 13px;
  }

  .footer-content {
    gap: 20px;
    padding: 0 15px;
  }

  .footer-left h3 {
    font-size: 14px;
  }

  .footer-left p {
    font-size: 11px;
  }

  .about-text h3 {
    font-size: 1.6rem;
  }

  .about-text p {
    font-size: 15px;
  }

  .certifications {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }
}

/* Booking Section Styles */
.booking {
  padding: 100px 0;
  background: var(--warm-white);
}

.booking-form-container {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 60px;
  margin-top: 50px;
}

.booking-form {
  background: white;
  padding: 50px;
  border-radius: var(--border-radius);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 12px;
  font-weight: 500;
  color: var(--text-dark);
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-family: var(--font-body);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 18px 20px;
  border: 2px solid rgba(0,0,0,0.1);
  border-radius: var(--border-radius);
  font-size: 16px;
  transition: all 0.3s ease;
  font-family: var(--font-body);
  background: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent-emerald);
  background: var(--warm-white);
  box-shadow: 0 0 0 3px rgba(30, 58, 50, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.form-actions {
  display: flex;
  gap: 15px;
  margin-top: 30px;
}

.form-actions .btn-primary,
.form-actions .btn-secondary {
  padding: 14px 32px;
  text-decoration: none !important;
  border: none;
  cursor: pointer;
  font-weight: 500;
  transition: all 0.4s ease;
  border-radius: var(--button-radius);
  font-family: var(--font-body);
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  line-height: 1;
  white-space: nowrap;
}

.form-actions .btn-primary {
  background-color: var(--white);
  color: var(--primary-black);
}

.form-actions .btn-primary:hover {
  background-color: var(--accent-emerald);
  color: var(--white);
  transform: translateY(-2px);
}

.form-actions .btn-secondary {
  background-color: transparent;
  color: var(--primary-black);
  border: 2px solid var(--primary-black);
}

.form-actions .btn-secondary:hover {
  background-color: var(--primary-black);
  color: var(--white);
}

.booking-info {
  background: var(--light-cool-grey);
  padding: 40px;
  border-radius: var(--border-radius);
  height: fit-content;
}

.booking-info h3 {
  margin: 0 0 25px 0;
  color: var(--text-dark);
  font-size: 18px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-family: var(--font-body);
}

.info-features {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 30px;
}

.info-feature {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px;
  background: white;
  border-radius: var(--border-radius);
}

.info-feature .feature-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: var(--accent-emerald);
  border-radius: 50%;
  color: var(--white);
  flex-shrink: 0;
}

.info-feature span {
  font-size: 14px;
  color: var(--text-dark);
  font-weight: 500;
}

.pricing-section {
  background: white;
  padding: 25px;
  border-radius: var(--border-radius);
}

.pricing-section h4 {
  margin: 0 0 15px 0;
  color: var(--text-dark);
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-family: var(--font-body);
}

.pricing-section p {
  margin: 0;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-dark);
}

/* Contact Section Styles */
.contact {
  padding: 100px 0;
  background: var(--light-cool-grey);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 60px;
}

.contact-card {
  background: white;
  padding: 40px;
  border-radius: var(--border-radius);
  text-align: center;
  transition: all 0.3s ease;
}

.contact-card:hover {
  transform: translateY(-5px);
}

.contact-card.full-width {
  grid-column: 1 / -1;
}

.contact-icon {
  width: 50px;
  height: 50px;
  margin-bottom: 20px;
  background: var(--accent-emerald);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  position: relative;
}

.phone-icon::after {
  content: '';
  width: 20px;
  height: 20px;
  background: var(--white);
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2'%3E%3Cpath d='M22 16.92v3a2 2 0 0 1-2.18 2 19.79 19.79 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6 19.79 19.79 0 0 1-3.07-8.67A2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72 12.84 12.84 0 0 0 .7 2.81 2 2 0 0 1-.45 2.11L8.09 9.91a16 16 0 0 0 6 6l1.27-1.27a2 2 0 0 1 2.11-.45 12.84 12.84 0 0 0 2.81.7A2 2 0 0 1 22 16.92z'%3E%3C/path%3E%3C/svg%3E") no-repeat center;
}

.email-icon::after {
  content: '';
  width: 20px;
  height: 20px;
  background: var(--white);
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2'%3E%3Cpath d='M4 4h16c1.1 0 2 .9 2 2v12c0 1.1-.9 2-2 2H4c-1.1 0-2-.9-2-2V6c0-1.1.9-2 2-2z'%3E%3C/path%3E%3Cpolyline points='22,6 12,13 2,6'%3E%3C/polyline%3E%3C/svg%3E") no-repeat center;
}

.whatsapp-icon::after {
  content: '';
  width: 20px;
  height: 20px;
  background: var(--white);
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2'%3E%3Cpath d='M21 11.5a8.38 8.38 0 0 1-.9 3.8 8.5 8.5 0 0 1-7.6 4.7 8.38 8.38 0 0 1-3.8-.9L3 21l1.9-5.7a8.38 8.38 0 0 1-.9-3.8 8.5 8.5 0 0 1 4.7-7.6 8.38 8.38 0 0 1 3.8-.9h.5a8.48 8.48 0 0 1 8 8v.5z'%3E%3C/path%3E%3C/svg%3E") no-repeat center;
}

.contact-card h4 {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--text-dark);
}

.contact-card p {
  margin-bottom: 10px;
  font-size: 16px;
}

.contact-card a {
  color: var(--primary-black);
  text-decoration: none;
  font-weight: 500;
}

.contact-card a:hover {
  color: var(--accent-emerald);
}

.contact-desc {
  font-size: 14px;
  color: var(--text-light);
  font-style: italic;
}

.hours-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.hours-item {
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.hours-item strong {
  color: var(--text-dark);
  font-size: 14px;
}

.hours-item span {
  color: var(--text-light);
  font-size: 14px;
}

/* General Image Styles */
img {
  border-radius: var(--border-radius);
}

/* Footer Styles */
.footer {
  background: linear-gradient(135deg, var(--primary-black) 0%, #2d2d2d 100%);
  color: var(--white);
  padding: 80px 0 40px;
  position: relative;
}

.footer .container {
  max-width: none;
  padding: 0;
  width: 100%;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-emerald) 0%, #2d5a4f 100%);
}

.footer-content {
  display: flex;
  flex-direction: column;
  gap: 50px;
  padding: 0 20px;
  max-width: 1600px;
  margin: 0 auto;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.2fr 2.8fr;
  gap: 100px;
  align-items: start;
}

.footer-logo {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
}

.footer-logo-img {
  width: auto;
  height: 90px;
  object-fit: contain;
  filter: brightness(1.5) contrast(1.2);
  align-self: flex-start;
}

.footer-logo p {
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.7;
  font-size: 17px;
  max-width: 320px;
  margin: 0;
}

.footer-content-right {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}

.footer-contact h4,
.footer-services h4 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 500;
  margin-bottom: 25px;
  color: var(--white);
  position: relative;
}

.footer-contact h4::after,
.footer-services h4::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--accent-emerald);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  font-size: 15px;
  transition: all 0.3s ease;
  padding: 5px 0;
  position: relative;
}

.footer-links a:hover {
  color: var(--accent-emerald);
  padding-left: 10px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  font-size: 15px;
  color: rgba(255, 255, 255, 0.8);
}

/* Mobile responsive */
@media (max-width: 768px) {
  .booking-form-container {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .form-row {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .form-actions {
    flex-direction: column;
  }
  
  .booking-form {
    padding: 25px;
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
  }
  
  .contact-card {
    padding: 30px;
  }
  
  .footer-content {
    padding: 0 20px;
  }
  
  .footer-main {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .footer-content-right {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .footer-logo {
    align-items: center;
  }
  
  .footer-logo-img {
    height: 50px;
    align-self: center;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
  
  .hours-grid {
    grid-template-columns: 1fr;
  }
}

/* Header scroll state styles */
.header.scrolled {
  background-color: rgba(250, 249, 247, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0,0,0,0.1);
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

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

.header.scrolled .logo-white {
  display: none !important;
}

.header.scrolled .logo-black {
  display: block !important;
  color: var(--accent-emerald) !important;
}



.header.scrolled .menu-toggle span {
  background-color: var(--text-dark);
}

