:root {
  /* Primary Colors */
  --color-primary: #d4451a;
  --color-primary-dark: #b33a15;
  --color-primary-light: #e85a30;
  --color-primary-buttons: #ff5e2e;

  /* Neutrals */
  --color-background: #ffffff;
  --color-surface: #f8f7f4;
  --color-surface-elevated: #ffffff;
  --color-border: #e5e2dc;
  --color-text: #1a1a1a;
  --color-text-secondary: #6b6b6b;
  --color-text-muted: #9a9a9a;

  /* Accent */
  --color-accent: #2d5a27;
  --color-accent-light: #3d7a35;

  /* Semantic */
  --color-success: #22c55e;
  --color-warning: #f59e0b;
  --color-error: #ef4444;

  /* Typography */
  --font-sans:
    "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-display: "Georgia", "Times New Roman", serif;

  /* Spacing */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;

  /* Border Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);

  /* Transitions */
  --transition-fast: 150ms ease;
  --transition-base: 250ms ease;
  --transition-slow: 350ms ease;
}
.navbar {
      background-color: black;
    }

    .nav-links a.active {
      color: var(--color-primary);
      position: relative;
    }

    .nav-links a.active::after {
      content: '';
      position: absolute;
      bottom: -6px;
      left: 0;
      width: 100%;
      height: 2px;
      background-color: var(--color-primary);
    }

    /* ==================== MOBILE MENU ==================== */
.nav-links {
  display: flex;
  align-items: center;
  gap: var(--space-xl);
}

.nav-links.active {
  position: fixed;
  top: 85px;           /* Adjust according to your navbar height */
  left: 0;
  width: 100%;
  height: calc(100vh - 85px);
  background-color: var(--color-background);
  flex-direction: column;
  align-items: center;
  justify-content: start;
  padding-top: 60px;
  gap: 30px;
  box-shadow: var(--shadow-md);
  z-index: 999;
}

/* Hamburger Animation */
.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, -6px);
}

/* Make sure mobile button is visible */
@media (max-width: 992px) {
  .nav-links {
    display: none;                    /* Hidden by default on mobile */
  }
  
  .nav-links.active {
    display: flex;                    /* Shown when active */
  }
  
  .mobile-menu-btn {
    display: flex;
  }
  
  .nav-cta {
    display: none;   /* Optional: hide on mobile or style differently */
  }
}
.about-container {
  max-width: 1280px;
  margin: 100px auto;
  padding: 0 20px;
}

/* Header */
.about-header {
  text-align: center;
  margin-bottom: 80px;
}

.about-header .section-badge {
  display: inline-block;
  font-size: 1rem;
  font-weight: 600;
  color: #ff5e2e;
  background: #fff4f0;
  padding: 6px 18px;
  border-radius: 30px;
  margin-bottom: 12px;
}

.about-header h2 {
  font-size: 2.8rem;
  color: #1a1a1a;
  margin: 15px 0 20px;
  font-weight: 700;
}

.about-header p {
  font-size: 1.25rem;
  color: #555;
  max-width: 720px;
  margin: 0 auto;
  line-height: 1.7;
}

/* Chef Grid */
.chefs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 32px;
  margin-bottom: 100px;
}

.chef-card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
}

.chef-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.chef-img-container {
  position: relative;
  overflow: hidden;
  height: 380px;
}

.chef-img-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.chef-card:hover img {
  transform: scale(1.08);
}

.team-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.1) 40%, rgba(0,0,0,0.85) 75%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 30px;
  color: white;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.chef-card:hover .team-overlay {
  opacity: 1;
}

.chef-bio {
  font-size: 1.05rem;
  line-height: 1.55;
  margin-bottom: 20px;
}

.social-icons {
  display: flex;
  gap: 12px;
}

.social-icons a {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  transition: all 0.3s ease;
}

.social-icons a:hover {
  background: #ff5e2e;
  transform: scale(1.12);
}

/* Chef Info */
.chef-info {
  padding: 24px;
  text-align: center;
}

.chef-info h3 {
  margin: 0 0 8px 0;
  font-size: 1.55rem;
  color: #222;
}

.chef-info span {
  color: #ff5e2e;
  font-weight: 600;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Culinary Philosophy */
.intro-onsite {
  max-width: 900px;
  margin: 0 auto;
  padding: 50px 40px;
  background: #fffaf5;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.intro-onsite h4 {
  font-size: 2.2rem;
  color: #1a1a1a;
  margin-bottom: 24px;
}

.intro-onsite p {
  font-size: 1.15rem;
  line-height: 1.8;
  color: #444;
}

/* Responsive */
@media (max-width: 768px) {
  .chef-img-container {
    height: 340px;
  }
  .about-header h2 {
    font-size: 2.4rem;
  }
}

