body {
    font-family: 'DM Sans', Arial, sans-serif;
    background: #faf6f2;
    color: #222;
  }
  .logo-text {
    font-weight: 700;
    font-size: 2.4rem;
    color: #F25D2B;
    letter-spacing: 1px;
  }
  .header-main {
background: #faf6f2;
}
.menu-link {
color: #222 !important;
font-weight: 500;
font-size: 0.95rem;
margin: 0 10px;
transition: color 0.2s;
}
.menu-link:hover {
color: #F25D2B !important;
}
.social-icons a {
color: #222;
font-size: 1.3rem;
transition: color 0.2s;
}
.social-icons a:hover {
color: #F25D2B;
}
@media (max-width: 991px) {
.header-main .row {
  flex-direction: column;
  text-align: center;
}
.header-main .col-4, 
.header-main .col-12 {
  width: 100%;
  justify-content: center !important;
  margin-bottom: 8px;
}
.header-main nav ul {
  justify-content: center;
}
}
.header-main .logo-row {
margin-top: 40px;     /* space above logo */
margin-bottom: 28px;  /* space below logo */
}
.header-main .menu-row {
margin-bottom: 10px;  /* space below menu */
}


  .navbar, .footer-main {
    background: #faf6f2;
  }
  .menu-link {
    color: #222;
    margin: 0 0;
    font-weight: 500;
    text-decoration: none;
  }
  .menu-link:hover, .footer-link:hover {
    color: #F25D2B;
  }
  .hero {
    position: relative;
    overflow: hidden;
    height: 75vh;           /* 75% of screen height */
    min-height: 380px;      /* optional: never smaller than this */
    max-height: 800px;      /* optional: never larger than this */
    background: #222;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .hero iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    pointer-events: none; /* prevents click on video */
  }
  .hero video, .hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.8;
  }
  .hero-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    font-size: 1.7rem;
    font-weight: 600;
    text-align: center;
  }
  .story-section {
    background: #fff;
    border-radius: 12px;
    margin: 40px 0;
    box-shadow: 0 2px 12px #eee;
    padding: 40px 32px;
    display: flex;
    align-items: center;
    gap: 40px;
  }
  .story-title {
    color: #F25D2B;
    font-weight: 700;
    font-size: 2.2rem;
    margin-bottom: 12px;
  }
  .menu-section h2,
  .gallery-section h2 {
    color: #F25D2B;
    font-weight: 700;
    margin-bottom: 20px;
  }
  .menu-card {
    border: none;
  background: #faf6f2;
  border-radius: 16px;
  box-shadow: 0 2px 12px #eee;
  transition: box-shadow 0.2s;
  }
  .menu-card:hover {
    box-shadow: 0 6px 24px #e0e0e0;
  }

/* ===== CATEGORY BAR ===== */
.menu-categories {
  position: -webkit-sticky; /* for Safari */
  position: sticky;
  top: 0; /* sticks when hits top of viewport */
  display: flex;
  overflow-x: auto;
  gap: 1rem;
  padding: 0.8rem 1rem;
  background-color: #faf6f2;
  /* border-bottom: 1px solid #eee; */
  scroll-behavior: smooth;
  z-index: 999;
  scrollbar-width: none;
}

.menu-categories::-webkit-scrollbar {
  display: none;
}

.menu-categories a {
  flex: 0 0 auto;
  white-space: nowrap;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  color: #333;
  padding: 0.5rem 1rem;
  border-radius: 25px;
  background: #f9f2ec;
  transition: all 0.3s ease;
}

.menu-categories a:hover,
.menu-categories a.active {
  background-color: #ee6037;
  color: #fff;
}

/* Desktop */
@media (min-width: 769px) {
  .menu-categories {
    justify-content: center;
    flex-wrap: wrap;
    overflow: visible;
  }
}

/* Desktop view */
@media (min-width: 769px) {
  .menu-categories {
    justify-content: center;
    flex-wrap: wrap;
    overflow: visible;
  }

  .menu-categories a {
    font-size: 1.1rem;
    padding: 0.6rem 1.4rem;
  }
}

  .price {
    color: #F25D2B;
    font-weight: 600;
    font-size: 1.05rem;
    margin-left: 10px;
  }
  .menu-card .card-title {
    font-weight: 700;
    font-size: 1rem;
    margin-top: 10px;
  }
  .menu-card .price {
    color: #F25D2B;
    font-weight: 600;
    margin-left: 10px;
  }
  .menu-card .ingredients {
    font-size: 0.97rem;
    color: #444;
    margin-top: 4px;
  }
  .gallery-section img {
    width: 100%;
    height: 325px;
    object-fit: cover;
    /* border-radius: 10px; */
  }
  .footer-main {
    background: #184c38;
    color: #fff;
    padding: 40px 0 10px 0;
  }
  .footer-logo {
    font-size: 1.4rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.5px;
  }
  .footer-link {
    color: #fff;
    text-decoration: none;
    display: block;
    margin-bottom: 6px;
    font-weight: 500;
  }
  .footer-link:hover {
    color: #F25D2B;
  }
  .social-icons a {
    color: #fff;
    font-size: 1.3rem;
    margin-right: 10px;
    display: inline-block;
  }
  .social-icons a:hover {
    color: #F25D2B;
  }
  @media (max-width: 992px) {
    .story-section { flex-direction: column; }
  }
  /* DM Sans font import (local, not Google Fonts) */
  @font-face {
    font-family: 'DM Sans';
    src: url('DMSans-Regular.ttf') format('truetype');
    font-weight: 400;
  }
  @font-face {
    font-family: 'DM Sans';
    src: url('DMSans-Bold.ttf') format('truetype');
    font-weight: 700;
  }
  @media (min-width: 1400px) {
    .container {
      max-width: 1500px !important;
    }
  }
  .ingredients {
    margin-top: 6px;
    font-size: 0.97rem;
    color: #555;
    line-height: 1.6;
    word-break: break-word;
  }
  .card-img-top {
    border-radius: 16px 16px 0 0;
  }
  @media (max-width: 767px) {
    .menu-card {
      margin-bottom: 16px;
    }
  }
  /* spacing above the Gallery section */
.gallery-section {
    margin-top: 64px;          /* space from the section above */
  }
  
  /* gallery heading styling (optional) */
  .gallery-section .section-title {
    color: #F25D2B;
    font-weight: 700;
    margin-bottom: 16px;
  }
  
  /* bigger slideshow images */
  .gallery-slide {
    height: 320px;             /* bigger visual */
    object-fit: cover;         /* fills without distortion */
    /* border-radius: 10px; */
  }
  
  /* if you also keep a grid below the slider, make those thumbs bigger */
  .gallery-thumb {
    width: 100%;
    height: 320px;
    object-fit: cover;
    border-radius: 10px;
  }
  
  @media (max-width: 767px) {
    .gallery-slide { height: 200px; }
    .gallery-thumb { height: 200px; }
  }
  /* headings */
.section-title { color:#000000; font-weight:700; }

/* pills */
.menu-cats .nav-link {
  background:#fff;
  border:1px solid #e6e2dd;
  color:#222;
  font-weight:600;
}
.menu-cats .nav-link.active {
  background:#F25D2B;
  border-color:#F25D2B;
  color:#fff;
}

/* item layout */
/* Remove card-style background */
.menu-category-title {
    color: #000000;
    font-weight: 700;
    margin-left: 76px; /* adjust to match menu-item text */
    margin-bottom: 24px;
  }
  
  .menu-item {
    background: transparent;
    border: none;
    padding: 0;
    width: 100%;
    max-width: 320px;
    text-align: left;
    /* margin-left: 40px; same offset as category title */
  }
  
  .menu-item-img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    border-radius: 16px;
    display: block;
    margin: 0 auto; /* centers image */
  }
  
  .menu-item-name {
    font-weight: 500;
    font-size: 1.1rem;
    margin: 0;
    color: #222;
  }
  
  .menu-item-price {
    color: #F25D2B;
    font-weight: 500;
    font-size: 1.1rem;
    white-space: nowrap;
  }
  
  .menu-item-ingredients {
    color: #555;
    font-size: 0.9rem;
    line-height: 1.6;
    margin-top: 4px;
  }
  
  
  /* container max width override */
  @media (min-width: 1400px) {
    .container,
    .container-lg,
    .container-xl,
    .container-xxl {
      max-width: 1500px !important;
    }
  }
  
  .menu-category-block {
    margin-top: 70px; /* Adjust the value to increase/decrease spacing */
  }
  
  /* Optional: add some bottom margin as well */
  .menu-category-block:not(:last-child) {
    margin-bottom: 70px;
  }
  .social-icons a,
.social-icons-footer a {
  color: #222;
  font-size: 1.3rem;
  transition: color 0.2s;
}

.social-icons a:hover,
.social-icons-footer a:hover {
  color: #F25D2B;
}
