/* Reset & Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Roboto', sans-serif;
  color: #333;
  line-height: 1.6;
}

h1,
h2,
h3 {
  font-family: 'Roboto', sans-serif;
  color: #000000;
}

.container {
  width: 90%;
  max-width: 1100px;
  margin: auto;
  padding: 60px 0;
  text-align: center;
}


/* Navbar */
/* -------------------- Navbar -------------------- */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px;
  background: #fffefd;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
  overflow-x: hidden;
}

/* -------------------- Logo -------------------- */
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-img {
  width: 70px;
  height: 70px;
  border-radius: 12px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.logo-img:hover {
  transform: scale(1.1);
}



/* -------------------- Nav Links -------------------- */
.nav-links {
  display: flex;
  gap: 30px;
  list-style: none;
}

.nav-links li {
  position: relative;
}

.nav-links li a {
  color: #f16836;
  text-decoration: none;
  font-weight: 700;
  font-size: 16px;
  padding: 5px 0;
  transition: all 0.3s ease;
}

/* Animated underline effect */
.nav-links li a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 0%;
  height: 3px;
  background: #ff4500;
  border-radius: 2px;
  transition: 0.3s;
}

.nav-links li a:hover::after {
  width: 100%;
}

.nav-links li a:hover {
  transform: scale(1.05);
}

/* -------------------- Hamburger Menu -------------------- */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  z-index: 1100;
}

.hamburger span {
  width: 28px;
  height: 3px;
  background: #f16836;
  border-radius: 2px;
  transition: 0.3s;
}

/* Hamburger toggle animation to X */
.hamburger.toggle span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.toggle span:nth-child(2) {
  opacity: 0;
}

.hamburger.toggle span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* -------------------- Responsive -------------------- */
@media(max-width: 768px) {
  .hamburger {
    display: flex;
    /* Align hamburger properly next to logo */
    margin-right: 0;
  }

  .nav-links {
    position: fixed;
    top: 70px;
    /* below navbar */
    right: -100%;
    width: 90%;
    /* not full screen */
    max-width: 300px;
    /* mobile panel width */
    height: calc(100vh - 70px);
    /* full height minus navbar */
    background: #fffefd;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding-top: 30px;
    border-radius: 0 0 12px 12px;
    box-shadow: -2px 0 15px rgba(0, 0, 0, 0.1);
    transition: right 0.3s ease;
  }

  .nav-links.active {
    right: 0;
  }

  .nav-links li a {
    font-size: 20px;
    padding: 10px 0;
  }

  .heading {
    font-size: 26px;
  }
}

@media(max-width: 480px) {
  .navbar {
    padding: 10px 15px;
  }

  .logo-img {
    width: 50px;
    height: 50px;
  }

  .heading {
    font-size: 22px;
  }

  .nav-links li a {
    font-size: 18px;
  }
}

/* -------------------- Logo -------------------- */
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-img {
  width: 70px;
  height: 70px;
  border-radius: 12px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.logo-img:hover {
  transform: scale(1.1);
}

.heading {

  font-size: 32px;
  color: #f16836;
}

/* -------------------- Nav Links -------------------- */
.nav-links {
  display: flex;
  gap: 30px;
  list-style: none;
}

.nav-links li {
  position: relative;
}

.nav-links li a {
  color: #f16836;
  text-decoration: none;
  font-weight: 700;
  font-size: 16px;
  padding: 5px 0;
  transition: all 0.3s ease;
}

/* Animated underline effect */
.nav-links li a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 0%;
  height: 3px;
  background: #ff4500;
  border-radius: 2px;
  transition: 0.3s;
}

.nav-links li a:hover::after {
  width: 100%;
}

.nav-links li a:hover {
  transform: scale(1.05);
}

/* -------------------- Hamburger Menu -------------------- */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  z-index: 1100;
  position: absolute;
  right: 20px;
  /* fixed distance from right */
  top: 50%;
  transform: translateY(-50%);
}

.hamburger span {
  width: 28px;
  height: 3px;
  background: #f16836;
  border-radius: 2px;
  transition: 0.3s;
}

/* Hamburger toggle animation to X */
.hamburger.toggle span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.toggle span:nth-child(2) {
  opacity: 0;
}

.hamburger.toggle span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Show hamburger on mobile */
@media(max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 70px;
    /* below navbar */
    right: -100%;
    width: 90%;
    max-width: 300px;
    height: calc(100vh - 70px);
    background: #fffefd;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding-top: 30px;
    border-radius: 0 0 12px 12px;
    box-shadow: -2px 0 15px rgba(0, 0, 0, 0.1);
    transition: right 0.3s ease;
  }

  .nav-links.active {
    right: 0;
  }

  .nav-links li a {
    font-size: 20px;
    padding: 10px 0;
  }
}

/* -------------------- Responsive -------------------- */
@media(max-width: 768px) {
  .hamburger {
    display: flex;
    /* Align hamburger properly next to logo */
    margin-right: 0;
  }

  .nav-links {
    position: fixed;
    top: 70px;
    /* below navbar */
    right: -100%;
    width: 90%;
    /* not full screen */
    max-width: 300px;
    /* mobile panel width */
    height: calc(100vh - 70px);
    /* full height minus navbar */
    background: #fffefd;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding-top: 30px;
    border-radius: 0 0 12px 12px;
    box-shadow: -2px 0 15px rgba(0, 0, 0, 0.1);
    transition: right 0.3s ease;
  }

  .nav-links.active {
    right: 0;
  }

  .nav-links li a {
    font-size: 20px;
    padding: 10px 0;
  }

  .heading {
    font-size: 26px;
  }
}

@media(max-width: 480px) {
  .navbar {
    padding: 10px 15px;
  }

  .logo-img {
    width: 50px;
    height: 50px;
  }

  .heading {
    font-size: 22px;
  }

  .nav-links li a {
    font-size: 18px;
  }
}








/* Hero */
.about-hero {
  background: #fdf5e6;
  padding: 100px 20px;
}

.about-hero p {
  max-width: 700px;
  margin: 20px auto;
  font-size: 18px;
}

/* Story */
.story-flex {
  display: flex;
  gap: 40px;
  align-items: center;
  text-align: left;
  font-size: 18px;
}

.story-img img {
  width: 450px;
  border-radius: 15px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Chef */
.chef-flex {
  display: flex;
  gap: 40px;
  align-items: center;
  text-align: left;
  font-size: 18px;
}

.chef-img img {
  width: 450px;
  border-radius: 15px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Specialties */
.about-specialties {
  background: #fef8f1;
  padding: 70px 20px;
}

.specialties-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.specialty-card {
  background: #fff;
  padding: 20px;
  border-radius: 15px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
}

.specialty-card:hover {
  transform: translateY(-8px);
}

.specialty-card img {
  width: 100%;
  border-radius: 10px;
  margin-bottom: 15px;
}

/* CTA */
.about-cta {
  background: #c98b29;
  color: #fff;
  padding: 20px;
}

.about-cta .btn {
  display: inline-block;
  margin-top: 20px;
  background: #fff;
  color: #c98b29;
  padding: 12px 25px;
  border-radius: 25px;
  font-weight: bold;
  text-decoration: none;
  transition: 0.3s;
}

.about-cta .btn:hover {
  background: #333;
  color: #fff;
}

/* Responsive */
@media (max-width: 768px) {

  .story-flex,
  .chef-flex {
    flex-direction: column;
    text-align: center;
  }
}


/*video*/
/* About Hero Section with Video */
.about-hero {
  position: relative;
  width: 100%;
  height: 90vh;
  /* adjust for screen height */
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  text-align: center;
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* ensures full coverage */
  z-index: -1;
  filter: brightness(0.4);
  /* darken video for text readability */
}


.hero-overlay {
  position: relative;
  z-index: 2;
  color: #fff;
  /* dark overlay for readability */
  padding: 30px;
  border-radius: 12px;
}

.hero-overlay h1 {
  font-family: 'Roboto', sans-serif;
  font-size: 3rem;
  margin-bottom: 15px;
  color: #ffe9b3;
}

.hero-overlay p {
  font-size: 1.2rem;
  max-width: 700px;
  line-height: 1.6;
}


/* Footer */
footer {
  background: #000;
  color: #fff;
  padding: 60px 10%;
  font-family: 'Roboto', sans-serif;
  position: relative;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
}

.footer-content>div {
  flex: 1 1 200px;
  min-width: 200px;
}

.footer-content h4 {
  margin-bottom: 15px;
  font-size: 20px;
  color: #ff4500;
  position: relative;
  display: inline-block;
  /* ensures line aligns with text width */
}

.footer-content h4::after {
  content: '';
  display: block;
  width: 60%;
  /* responsive width relative to h4 */
  max-width: 100px;
  /* optional: max limit */
  height: 2px;
  background: #ff4500;
  margin-top: 5px;
  border-radius: 2px;
}


.footer-content ul {
  list-style: none;
  padding: 0;
}

@media(max-width: 480px) {
  .footer-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-content>div {
    min-width: 100%;
  }

  .footer-content ul {
    list-style: none;
    padding: 0;
    text-align: center;
  }
}

.footer-content ul li {
  margin-bottom: 10px;
}

.footer-content ul li a {
  color: #fff;
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-content ul li a:hover {
  color: #ff4500;
  transform: translateX(5px);
}

/* Locations */

.locations {
  max-height: 100px;
  /* limit height */
}

.footer-content .locations p {
  line-height: 1.6;
  color: #ccc;
}

/* Social Media */
/* Social Media Section */
.footer-content .social-media {
  text-align: center;
  /* center heading and icons */
  display: flex;
  flex-direction: column;
}

.footer-content .social-media h4 {
  font-size: 20px;
  color: #ff4500;
  margin-bottom: 15px;
  display: inline-block;
  position: relative;
}

.footer-content .social-media h4::after {
  content: '';
  display: block;
  width: 50%;
  max-width: 100px;
  height: 2px;
  background: #ff4500;
  margin: 5px auto 0;
  border-radius: 2px;
}

.footer-content .social-media a {
  display: inline-block;
  margin: 5px 10px;
  width: 40px;
  height: 40px;
  background: #1a1a1a;
  border-radius: 50%;
  text-align: center;
  line-height: 40px;
  color: #fff;
  font-size: 18px;
  transition: all 0.3s ease;
}

.footer-content .social-media a:hover {
  background: #ff4500;
  color: #fff;
  transform: scale(1.2);
}

/* Footer Bottom */
.footer-bottom {
  text-align: center;
  margin-top: 40px;
  font-size: 14px;
  color: #ccc;
  border-top: 1px solid #333;
  padding-top: 20px;
}

.footer-bottom a {
  color: #ff4500;
  text-decoration: none;
}

/* Responsive */
@media(max-width: 768px) {
  .footer-content .social-media a {
    width: 35px;
    height: 35px;
    line-height: 35px;
    font-size: 16px;
    margin: 5px 5px;
  }

  .footer-content .social-media h4 {
    font-size: 18px;
  }
}

@media(max-width: 480px) {
  .footer-content .social-media a {
    width: 30px;
    height: 30px;
    line-height: 30px;
    font-size: 14px;
    margin: 5px 3px;
  }

  .footer-content .social-media h4 {
    font-size: 16px;
  }
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  overflow-x: hidden;
  /* Prevent horizontal scroll */
}