   * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: 'Inter', sans-serif;
      line-height: 1.6;
      color: #2c1810;
      overflow-x: hidden;
      padding-top: 80px; /* To prevent header overlap */
      background-color: #fefaf5;
    }

    h1, h2, h3 {
      font-family: 'Playfair Display', serif;
    }

    .header {
      background: linear-gradient(135deg, #3d2817 0%, #5a4032 100%);
      color: white;
      padding: 1rem 2rem;
      position: fixed;
      width: 100%;
      top: 0;
      z-index: 1000;
      box-shadow: 0 2px 10px rgba(0,0,0,0.3);
    }

    .nav-container {
      max-width: 1200px;
      margin: 0 auto;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .logo {
      font-size: 1.5rem;
      font-weight: bold;
      color: #f4e4d7;
    }

    nav a {
      color: #f4e4d7;
      text-decoration: none;
      margin-left: 2rem;
      transition: color 0.3s;
    }

    nav a:hover {
      color: #d4a574;
    }

    .hero {
      background: linear-gradient(rgba(61, 40, 23, 0.6), rgba(61, 40, 23, 0.6)), url('hero.jpg') center/cover no-repeat;
      height: 100vh;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      color: white;
    }

    .hero-content h1 {
      font-size: 3.5rem;
      margin-bottom: 1rem;
      color: #ffffff;
      text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    }

    .hero-content p {
      font-size: 1.5rem;
      margin-bottom: 2rem;
      color: #f9f9f9;
    }

    .cta-button {
      display: inline-block;
      background: #d4a574;
      color: #2c1810;
      padding: 1rem 2.5rem;
      text-decoration: none;
      border-radius: 30px;
      font-weight: bold;
      transition: all 0.3s;
      box-shadow: 0 4px 15px rgba(212, 165, 116, 0.4);
    }

    .cta-button:hover {
      background: #c49564;
      transform: translateY(-2px);
      box-shadow: 0 6px 20px rgba(212, 165, 116, 0.6);
    }

    section {
      padding: 5rem 2rem;
      width: 100%;
      margin: 0 auto;
    }

    section > * {
      max-width: 1200px;
      margin: 0 auto;
    }

    .about {
      background: #fefaf5;
    }

    h2 {
      font-size: 2.5rem;
      margin-bottom: 2rem;
      color: #3d2817;
      text-align: center;
    }

    .about-content {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 3rem;
      align-items: center;
    }

    .about-image {
      display: flex;
      justify-content: center;
      align-items: center;
      height: 100%;
      padding: 1rem;
    }

    .about-image img {
      max-width: 100%;
      height: auto;
      border-radius: 10px;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    }

    .menu-preview {
      background: white;
    }

    .menu-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 2rem;
      margin-top: 3rem;
    }

    .menu-item {
      background: #fefaf5;
      padding: 2rem;
      border-radius: 10px;
      text-align: center;
      transition: transform 0.3s, box-shadow 0.3s;
    }

    .menu-item:hover {
      transform: translateY(-5px);
      box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    }

    .menu-icon {
      font-size: 3rem;
      margin-bottom: 1rem;
    }

    .location {
      background: #3d2817;
      color: #f4e4d7;
    }

    .location-details {
      text-align: center;
      font-size: 1.2rem;
      margin: 2rem 0;
    }

.location .location-details {
  max-width: 800px;
  margin: 0 auto;
  padding: 3rem 1rem;
  text-align: center;
}

.location {
  background: #3d2817;
  color: #f4e4d7;
  padding: 5rem 2rem;
}

.location h2 {
      color: #f4e4d7;
    }
    .hiring {
      background: #fefaf5;
    }

    .jobs-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 2rem;
      margin-top: 3rem;
    }

    .job-card {
      background: white;
      padding: 2rem;
      border-radius: 10px;
      box-shadow: 0 5px 15px rgba(0,0,0,0.1);
      transition: transform 0.3s;
    }

    .job-card:hover {
      transform: translateY(-5px);
    }

    .apply-button {
      background: #3d2817;
      color: #f4e4d7;
      padding: 0.8rem 2rem;
      text-decoration: none;
      border-radius: 25px;
      margin-top: 1rem;
      transition: background 0.3s;
    }

    .apply-button:hover {
      background: #5a4032;
    }

    .social {
      background: white;
      text-align: center;
    }

    .social-links {
      display: flex;
      justify-content: center;
      gap: 2rem;
      margin-top: 2rem;
    }

    .social-link {
      width: 60px;
      height: 60px;
      background: #3d2817;
      color: white;
      border-radius: 50%;
      font-size: 1.5rem;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      text-decoration: none;
      transition: all 0.3s;
    }

    .social-link:hover {
      background: #d4a574;
      color: #2c1810;
      transform: scale(1.1);
    }

    footer {
      background: #2c1810;
      color: #f4e4d7;
      text-align: center;
      padding: 2rem;
    }

    /* Timeline Enhancements */
    .timeline-section {
      background: #fefaf5;
    }

    .timeline {
      position: relative;
      max-width: 900px;
      margin: 0 auto;
      padding-left: 1rem;
    }

    .timeline::before {
      content: '';
      position: absolute;
      left: 25px;
      top: 0;
      bottom: 0;
      width: 4px;
      background: #d4a574;
    }

    .timeline-item {
      position: relative;
      margin-bottom: 4rem;
      padding-left: 3.5rem;
    }

    .timeline-item::before {
      content: '';
      position: absolute;
      left: 17px;
      top: 0;
      width: 16px;
      height: 16px;
      background: #d4a574;
      border-radius: 50%;
      border: 2px solid #3d2817;
    }

    .timeline-date {
      font-weight: bold;
      color: #5a4032;
      margin-bottom: 0.5rem;
    }

    .timeline-content h3 {
      font-family: 'Playfair Display', serif;
      margin: 0 0 0.5rem;
      color: #3d2817;
    }

    .timeline-content p {
      color: #2c1810;
    }

    @media (max-width: 768px) {
      .hero-content h1 {
        font-size: 2rem;
      }

      .about-content {
        grid-template-columns: 1fr;
      }

      .timeline::before {
        left: 12px;
      }

      .timeline-item {
        padding-left: 2.5rem;
        margin-bottom: 5rem;
      }

      .timeline-item::before {
        left: 4px;
      }
    }

    /* Animation Base */
    .animate-left, .animate-right {
      opacity: 0;
      transition: all 0.9s ease-out;
    }

    .animate-left { transform: translateX(-60px); }
    .animate-right { transform: translateX(60px); }

    .visible {
      opacity: 1;
      transform: translateX(0);
    }

    .animate-left.visible { transition-delay: 0.1s; }
    .animate-right.visible { transition-delay: 0.3s; }
	
	/* Hide hamburger on desktop */
.hamburger {
  display: none;
  font-size: 2rem;
  cursor: pointer;
  color: #f4e4d7;
}

/* Default nav styles */
.nav-links {
  display: flex;
}

/* Responsive styles */
@media (max-width: 768px) {
  .hamburger {
    display: block;
  }

  .nav-links {
    display: none;
	display: flex;
opacity: 0;
pointer-events: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #3d2817;
    flex-direction: column;
    align-items: flex-start;
    padding: 1rem 2rem;
  }

  .nav-links a {
    margin: 1rem 0;
    font-size: 1.1rem;
  }

  .nav-links.active {
    display: flex;
  }
  .nav-links a {
  transition: color 0.3s ease, opacity 0.3s ease;
}
}

html, body {
  width: 100%;
  overflow-x: hidden;
}

/* Hamburger */
.hamburger {
  display: none;
  font-size: 2rem;
  cursor: pointer;
  color: #f4e4d7;
  z-index: 1001;
}

/* Nav container fix */
.nav-container {
  position: relative;
}

/* Nav links base */
.nav-links {
  display: flex;
  transition: all 0.3s ease-in-out;
}

/* Mobile styles */
@media (max-width: 768px) {
  .hamburger {
    display: block;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    width: 100vw;
    background: #3d2817;
    padding: 1rem 2rem;
    z-index: 1000;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
  }

  .nav-links a {
    margin: 1rem 0;
    font-size: 1.2rem;
    color: #f4e4d7;
  }

  .nav-links.active {
    display: flex;
  }
  
  .nav-links {
  opacity: 0;
  transform: translateY(-20px);
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.nav-links.active {
  display: flex; /* Already in your CSS */
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

}