:root {
  --red: #B70000;
  --red-dark: #8C0000;
  --black: #121212;
  --gray: #6b6b6b;
  --white: #ffffff;
  --offwhite: #f7f7f7;
  --border: #ececec;
  --shadow: 0 18px 45px rgba(0, 0, 0, .12);
  --transition: .35s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Inter, sans-serif;
  background: var(--white);
  color: var(--black);
  overflow-x: hidden;
}

img {
  width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

/* ==========================
FONTS
========================== */

h1,
h2,
h3 {
  font-family: "Bebas Neue", sans-serif;
  letter-spacing: 1px;
}

h1 {
  font-size: clamp(4rem, 9vw, 7.5rem);
  line-height: .92;
}

h2 {
  font-size: clamp(2.8rem, 6vw, 4.8rem);
}

h3 {
  font-size: 2rem;
}

p {
  line-height: 1.8;
  color: var(--gray);
}

/* ==========================
NAVIGATION
========================== */

.navbar {
  position: sticky;
  top: 0;
  z-index: 999;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 7%;
  background: rgba(255, 255, 255, .97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}

.navbar.scrolled {
  height: 75px;
  box-shadow: 0 10px 35px rgba(0, 0, 0, .08);
}

.logo {
  font-family: "Bebas Neue", sans-serif;
  font-size: 2rem;
  letter-spacing: 2px;
}

nav {
  display: flex;
  gap: 38px;
}

nav a {
  font-size: .95rem;
  font-weight: 600;
  position: relative;
  transition: var(--transition);
}

nav a:hover {
  color: var(--red);
}

nav a::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--red);
  transition: .3s;
}

nav a:hover::after {
  width: 100%;
}

/* ==========================
BUTTONS
========================== */

.book-btn,
.primary-btn {
  background: var(--red);
  color: white;
  padding: 15px 30px;
  border-radius: 999px;
  font-weight: 700;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.book-btn:hover,
.primary-btn:hover {
  background: var(--red-dark);
  transform: translateY(-3px);
}

.secondary-btn {
  padding: 15px 30px;
  border: 2px solid #ce1212;
  color: #ce1212;
  border-radius: 999px;
  font-weight: 700;
  transition: var(--transition);
}

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

/* ==========================
HERO
========================== */

.hero {
  min-height: calc(100vh - 132px);
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  align-items: center;
  padding: 90px 7%;
  gap: 70px;
  background:
    linear-gradient(180deg,
      #ffffff 0%,
      #fafafa 100%);
}

.eyebrow {
  display: inline-block;
  background: #ffeaea;
  color: var(--red);
  padding: 8px 18px;
  border-radius: 999px;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 28px;
}

.hero h1 {
  margin-bottom: 25px;
}

.hero h1 span {
  display: block;
  color: var(--red);
}

.hero-description {
  font-size: 1.08rem;
  max-width: 560px;
  margin-bottom: 40px;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  margin-bottom: 45px;
  
}

.hero-logo {
  display: grid;
  place-items: center;

  img {
    max-width: clamp(225px, 58vw,400px);
    @media(min-width: 1101px) {
      max-width: none;
    }
  }
}

.hero-image {
  position: relative;
}

.hero-image img {
  border-radius: 30px;
  box-shadow: var(--shadow);
  transition: 1s ease;
}

.hero-image:hover img {
  transform: scale(1.02);
}

/* ==========================
UTILITY
========================== */

section {
  width: min(1500px, 100%);
  margin: auto;
}

/* ==========================
RESPONSIVE
========================== */

@media (min-width: 1101px) {
  .hero-content {
    order: 1;
  }

  .hero-logo {
    order: 2;
  }
}

@media(max-width:1100px) {
  .hero {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-description {
    margin: auto auto 40px;
  }

  .hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
  }
}

@media(max-width:900px) {
  nav {
    display: none;
  }

  .book-btn {
    display: none;
  }

  .announcement-bar {
    padding: 0 20px;
  }

  .announcement-text {
    gap: 12px;
    font-size: .7rem;
  }

  .navbar {
    padding: 0 20px;
  }

  .hero {
    padding: 60px 20px;
  }

  .hero-buttons {
    flex-direction: column;
  }
}

@media(max-width:600px) {
  h1 {
    font-size: 3.8rem;
  }
}

/*==========================================
WHAT'S COOKING
==========================================*/

.favorites-section {
  padding: 120px 7%;
  background: #fafafa;
}

.favorites-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
  margin-top: 70px;
}

.favorite-card {
  background: white;
  border-radius: 24px;
  padding: 40px 35px;
  box-shadow: var(--shadow);
  transition: .35s ease;
  border-top: 5px solid var(--red);
}

.favorite-card:hover {
  transform: translateY(-10px);
}

.favorite-icon {
  width: 78px;
  height: 78px;
  background: var(--red);
  color: white;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2rem;
  margin-bottom: 28px;
}

.favorite-card span {
  display: block;
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: .85rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.favorite-card h3 {
  font-size: 2rem;
  margin-bottom: 18px;
}

.favorite-card p {
  color: var(--gray);
  margin-bottom: 30px;
  line-height: 1.7;
}

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

.favorite-card li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid #ececec;
  font-weight: 500;
}

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

.favorite-card li i {
  color: var(--red);
  font-size: .9rem;
}

.favorites-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 70px;
  flex-wrap: wrap;
}

.secondary-menu-btn {
  padding: 15px 32px;
  border: 2px solid var(--red);
  border-radius: 999px;
  color: var(--red);
  font-weight: 700;
  transition: .3s;
}

.secondary-menu-btn:hover {
  background: var(--red);
  color: white;
}

@media(max-width:1000px) {
  .favorites-grid {
    grid-template-columns: 1fr;
}
}

/* ==========================================
SCHEDULE
========================================== */

.schedule-section {
  padding: 120px 7%;
  background: #fafafa;
}

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

.event-card {
  background: white;
  border-radius: 24px;
  padding: 28px;
  display: flex;
  gap: 25px;
  align-items: flex-start;
  box-shadow: var(--shadow);
  transition: .35s;
  border: 1px solid #eee;
}

.event-card:hover {
  transform: translateY(-8px);
}

.featured-event {
  border: 3px solid var(--red);
}

.event-date {
  background: var(--red);
  color: white;
  border-radius: 20px;
  width: 85px;
  height: 95px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.event-date span {
  font-size: .75rem;
  letter-spacing: 2px;
  font-weight: 700;
}

.event-date h3 {
  font-size: 2.5rem;
  line-height: 1;
  margin-top: 5px;
}

.event-details {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.event-details h4 {
  font-size: 1.45rem;
  margin: 10px 0;
  font-family: "Bebas Neue", sans-serif;
  letter-spacing: 1px;
}

.event-details p {
  margin-bottom: 6px;
}

.event-details small {
  color: var(--gray);
}

.event-type {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: .75rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.brewery {
  background: #eef8ff;
  color: #0b63c7;
}

.private {
  background: #fff4e8;
  color: #a85b00;
}

.featured {
  background: #ffeaea;
  color: var(--red);
}

.festival {
  background: #edf9ef;
  color: #2b7d35;
}

.schedule-footer {
  margin-top: 70px;
  text-align: center;
}

.schedule-footer p {
  margin-bottom: 25px;
  font-size: 1.05rem;
}

/* ==========================================
MEET THE CHEF
========================================== */

.chef-section {
  padding: 120px 7%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.chef-image img {
  border-radius: 30px;
  box-shadow: var(--shadow);
}

.chef-content h2 {
  margin: 15px 0 25px;
}

.chef-content p {
  margin-bottom: 22px;
}

.chef-intro {
  font-size: 1.1rem;
}

.chef-stats {
  display: flex;
  gap: 30px;
  margin-top: 50px;
}

.stat {
  background: white;
  padding: 30px;
  border-radius: 20px;
  box-shadow: var(--shadow);
  flex: 1;
  text-align: center;
}

.stat h3 {
  font-size: 3rem;
  color: var(--red);
  margin-bottom: 10px;
}

.stat span {
  font-weight: 600;
  color: var(--gray);
}

/* ==========================================
OUR STORY / TIMELINE
========================================== */

.story-section {
  padding: 120px 7%;
  background: #fafafa;
}

.timeline {
  margin-top: 70px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 20px;
  flex-wrap: nowrap;
}

.timeline-item {
  background: white;
  padding: 35px 25px;
  border-radius: 24px;
  width: 240px;
  min-height: 285px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: .35s ease;
  position: relative;
}

.timeline-item:hover {
  transform: translateY(-8px);
}

.featured-story {
  border: 3px solid var(--red);
}

.timeline-icon {
  width: 80px;
  height: 80px;
  background: var(--red);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: auto auto 25px;
}

.timeline-item h3 {
  margin-bottom: 15px;
  font-size: 1.3rem;
}

.timeline-item p {
  color: var(--gray);
  line-height: 1.6;
}

.timeline-arrow {
  font-size: 2rem;
  color: var(--red);
  align-self: center;
  font-weight: bold;
  flex-shrink: 0;
}

/* ==========================================
TABLET
========================================== */

@media (max-width: 1100px) {
  .timeline {
    gap: 15px;
}
  .timeline-item {
    width: 210px;
    padding: 30px 20px;
}
  .timeline-arrow {
    font-size: 1.5rem;
}
}

/* ==========================================
MOBILE STORY TIMELINE
========================================== */

@media (max-width: 700px) {
  .story-section {
    padding: 80px 24px;
}
  .story-section .section-title {
    margin-bottom: 0;
}
  .timeline {
    margin-top: 45px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    position: relative;
    width: 100%;
}
  /* Vertical connecting line */
  .timeline::before {
    content: "";
    position: absolute;
    top: 35px;
    bottom: 35px;
    left: 50%;
    width: 2px;
    background: var(--red);
    transform: translateX(-50%);
    opacity: .25;
}
  .timeline-item {
    width: 100%;
    max-width: 340px;
    min-height: auto;
    padding: 30px 25px;
    z-index: 1;
}
  .timeline-icon {
    width: 68px;
    height: 68px;
    font-size: 1.7rem;
    margin-bottom: 20px;
}
  .timeline-item h3 {
    font-size: 1.25rem;
    margin-bottom: 10px;
}
  .timeline-item p {
    font-size: .95rem;
    margin: 0;
}
  /* Turn arrows into connecting dots */
  .timeline-arrow {
    font-size: 0;
    width: 14px;
    height: 14px;
    background: var(--red);
    border-radius: 50%;
    z-index: 2;
    margin: 12px 0;
}
  .featured-story {
    border-width: 3px;
}
}

/* ==========================================
CHEF QUOTE
========================================== */
.chef-quote {
  position: relative;
  padding: 180px 20px;
  /* Remove the line below */
  background: linear-gradient(rgba(0, 0, 0, 0.68), rgba(0, 0, 0, 0.68)) fixed, url("images/truck-night.jpg") center center / cover no-repeat;
  /* Add this line instead */
  background: rgba(26, 26, 26, 0.95); 
  text-align: center;
  color: white;
}

.quote-overlay {
  max-width: 850px;
  margin: auto;
}

.quote-eyebrow {
  color: #ffffffaa;
  letter-spacing: 4px;
  font-size: .8rem;
  font-weight: 700;
  margin-bottom: 30px;
}

blockquote {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(3rem, 7vw, 5.5rem);
  line-height: 1;
  margin-bottom: 35px;
}

.quote-text {
  color: #f1f1f1;
  font-size: 1.2rem;
  max-width: 700px;
  margin: auto;
  margin-bottom: 40px;
}

.chef-quote span {
  font-size: 1rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #ffffffcc;
}

/* ==========================================
GALLERY
========================================== */

.gallery-section {
  padding: 120px 7%;
  background: white;
}

/* ==========================================
DESKTOP GALLERY
========================================== */

.gallery-grid {
  margin-top: 70px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 280px;
  gap: 20px;
}

.gallery-item {
  overflow: hidden;
  border-radius: 24px;
  position: relative;
  cursor: pointer;
  box-shadow: var(--shadow);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: .6s ease;
}

.gallery-item:hover img {
  transform: scale(1.08);
}

/* Larger gallery images */

.large {
  grid-column: span 2;
  grid-row: span 2;
}

.wide {
  grid-column: span 2;
}

/* ==========================================
GALLERY CTA
========================================== */

.gallery-cta {
  margin-top: 80px;
  background: var(--red);
  padding: 70px;
  border-radius: 30px;
  text-align: center;
  color: white;
}

.gallery-cta h3 {
  font-size: 3rem;
  margin-bottom: 20px;
}

.gallery-cta p {
  color: #fff;
  max-width: 650px;
  margin: auto auto 35px;
}

/* ==========================================
MOBILE CAROUSEL
Hidden by default
========================================== */

.mobile-gallery {
  display: none;
}

.gallery-dots {
  display: none;
}

/* ==========================================
TABLET
========================================== */

@media (max-width: 1000px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
}
  .large,
  .wide {
    grid-column: span 2;
    grid-row: auto;
}
}

/* ==========================================
MOBILE
========================================== */

@media (max-width: 700px) {
  .gallery-section {
    padding: 80px 0;
    overflow: hidden;
}
  /*
    Keep the section heading aligned
    with the rest of the mobile site.
    */
  .gallery-section .section-title {
    padding: 0 24px;
}
  /* ------------------------------------------
    Hide desktop gallery on mobile
    ------------------------------------------ */
  .gallery-grid {
    display: none;
}
  /* ------------------------------------------
    Mobile carousel
    ------------------------------------------ */
  .mobile-gallery {
    display: block;
    position: relative;
    margin-top: 45px;
}
  .mobile-gallery-track {
    display: flex;
    gap: 14px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding-left: 24px;
    padding-right: 24px;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
}
  .mobile-gallery-track::-webkit-scrollbar {
    display: none;
}
  /* ------------------------------------------
    Individual mobile slide
    ------------------------------------------ */
  .mobile-gallery-slide {
    position: relative;
    flex: 0 0 88%;
    height: 390px;
    overflow: hidden;
    border-radius: 24px;
    background: #111;
    scroll-snap-align: center;
}
  .mobile-gallery-slide img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}
  /* ------------------------------------------
    Image caption
    ------------------------------------------ */
  .gallery-caption {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 55px 22px 20px;
    color: white;
    font-size: 1rem;
    font-weight: 700;
    background: linear-gradient(transparent,
        rgba(0, 0, 0, .8));
}
  /* ------------------------------------------
    Previous / Next buttons
    ------------------------------------------ */
  .gallery-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 42px;
    height: 42px;
    border: none;
    border-radius: 50%;
    background: white;
    color: #111;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, .25);
    cursor: pointer;
    z-index: 5;
}
  .gallery-prev {
    left: 34px;
}
  .gallery-next {
    right: 34px;
}
  /* ------------------------------------------
    Carousel dots
    ------------------------------------------ */
  .gallery-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 7px;
    margin-top: 22px;
}
  .gallery-dot {
    width: 7px;
    height: 7px;
    padding: 0;
    border: none;
    border-radius: 50%;
    background: #d4d4d4;
    transition: .3s;
}
  .gallery-dot.active {
    width: 22px;
    border-radius: 10px;
    background: var(--red);
}
  /* ------------------------------------------
    Mobile CTA
    ------------------------------------------ */
  .gallery-cta {
    margin: 55px 24px 0;
    padding: 50px 25px;
}
  .gallery-cta h3 {
    font-size: 2.3rem;
}
}

/* ==========================================
GALLERY LIGHTBOX
========================================== */

.gallery-lightbox {

  position: fixed;

  inset: 0;

  background: rgba(0, 0, 0, .94);

  z-index: 9999;

  display: flex;

  align-items: center;

  justify-content: center;

  padding: 40px;

  opacity: 0;

  visibility: hidden;

  pointer-events: none;

  transition: opacity .3s ease,
              visibility .3s ease;

}


.gallery-lightbox.active {

  opacity: 1;

  visibility: visible;

  pointer-events: auto;

}


.lightbox-content {

  position: relative;

  max-width: 1100px;

  max-height: 85vh;

  display: flex;

  flex-direction: column;

  align-items: center;

}


.lightbox-content img {

  max-width: 100%;

  max-height: 80vh;

  width: auto;

  height: auto;

  object-fit: contain;

  border-radius: 12px;

  box-shadow: 0 20px 60px rgba(0,0,0,.5);

}


.lightbox-close {

  position: absolute;

  top: 25px;

  right: 30px;

  width: 48px;

  height: 48px;

  border: none;

  border-radius: 50%;

  background: white;

  color: #111;

  font-size: 1.3rem;

  display: flex;

  align-items: center;

  justify-content: center;

  cursor: pointer;

  z-index: 10;

}


.lightbox-arrow {

  position: absolute;

  top: 50%;

  transform: translateY(-50%);

  width: 50px;

  height: 50px;

  border: none;

  border-radius: 50%;

  background: white;

  color: #111;

  font-size: 1.1rem;

  display: flex;

  align-items: center;

  justify-content: center;

  cursor: pointer;

  z-index: 10;

  transition: .2s ease;

}


.lightbox-arrow:hover {

  transform: translateY(-50%) scale(1.08);

}


.lightbox-prev {

  left: 30px;

}


.lightbox-next {

  right: 30px;

}


.lightbox-counter {

  color: white;

  margin-top: 15px;

  font-size: .9rem;

  letter-spacing: .08em;

}


/* Prevent page scrolling while lightbox is open */

body.lightbox-open {

  overflow: hidden;

}


/* ==========================================
MOBILE LIGHTBOX
========================================== */

@media (max-width: 700px) {

  .gallery-lightbox {

      padding: 20px;

  }


  .lightbox-content {

      width: 100%;

      max-height: 80vh;

  }


  .lightbox-content img {

      max-width: 100%;

      max-height: 75vh;

      border-radius: 10px;

  }


  .lightbox-close {

      top: 18px;

      right: 18px;

      width: 42px;

      height: 42px;

  }


  .lightbox-arrow {

      width: 40px;

      height: 40px;

  }


  .lightbox-prev {

      left: 12px;

  }


  .lightbox-next {

      right: 12px;

  }

}

/* ==========================================
CATERING
========================================== */

.catering-section {
  padding: 120px 7%;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 70px;
  align-items: start;
  background: #fafafa;
}

.catering-intro {
  margin: 25px 0 40px;
  max-width: 650px;
  font-size: 1.08rem;
}

.event-types {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.event-type-card {
  background: white;
  padding: 30px;
  border-radius: 22px;
  box-shadow: var(--shadow);
  text-align: center;
  transition: .3s;
}

.event-type-card:hover {
  transform: translateY(-6px);
}

.event-type-card span {
  font-size: 2rem;
  display: block;
  margin-bottom: 15px;
}

.event-type-card h4 {
  font-size: 1.1rem;
}

/* Booking Form */

.booking-card {
  background: white;
  padding: 45px;
  border-radius: 30px;
  box-shadow: var(--shadow);
}

.booking-card h3 {
  margin-bottom: 10px;
}

.booking-card p {
  margin-bottom: 30px;
}

.booking-card form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.booking-card input,
.booking-card select,
.booking-card textarea {
  padding: 16px 18px;
  border: 1px solid #ddd;
  border-radius: 14px;
  font-size: 1rem;
  font-family: inherit;
  transition: .3s;
}

.booking-card input:focus,
.booking-card select:focus,
.booking-card textarea:focus {
  outline: none;
  border-color: var(--red);
  box-shadow: 0 0 0 4px rgba(183, 0, 0, .08);
}

.booking-card button {
  margin-top: 10px;
  border: none;
  cursor: pointer;
  font-size: 1rem;
}

@media(max-width:1000px) {
  .catering-section {
    grid-template-columns: 1fr;
}
  .event-types {
    grid-template-columns: 1fr;
}
}

.event-btn {
  display: inline-block;
  margin-top: 12px;
  color: var(--red);
  font-weight: 700;
  font-size: .9rem;
}

.event-btn:hover {
  text-decoration: underline;
}

/* ==========================================
FOOTER
========================================== */

.site-footer {
  background: #111;
  color: white;
  padding: 100px 7% 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 60px;
  margin-bottom: 70px;
}

.footer-logo {
  font-family: "Bebas Neue", sans-serif;
  font-size: 2.6rem;
  margin-bottom: 20px;
  letter-spacing: 1px;
}

.footer-column h4 {
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.7rem;
  margin-bottom: 22px;
  letter-spacing: 1px;
}

.footer-column p {
  color: #cfcfcf;
  margin-bottom: 18px;
  line-height: 1.8;
}

.footer-column ul {
  list-style: none;
}

.footer-column li {
  margin-bottom: 16px;
  color: #d5d5d5;
}

.footer-column li i {
  color: var(--red);
  width: 24px;
}

.footer-column a {
  color: #d5d5d5;
  transition: .3s;
}

.footer-column a:hover {
  color: white;
}

.footer-social {
  display: flex;
  gap: 15px;
  margin-top: 30px;
}

.footer-social a {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .15);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: .3s;
}

.footer-social a:hover {
  background: var(--red);
  border-color: var(--red);
  transform: translateY(-4px);
}

.footer-button {
  display: inline-block;
  width: 100%;
  text-align: center;
  margin-top: 18px;
  padding: 14px 24px;
  border-radius: 999px;
  background: var(--red);
  color: white !important;
  font-weight: 700;
  transition: .3s;
}

.footer-button:hover {
  background: var(--red-dark);
  transform: translateY(-3px);
}

.secondary-footer-btn {
  background: transparent;
  border: 2px solid white;
}

.secondary-footer-btn:hover {
  background: white;
  color: #111 !important;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .08);
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}

.footer-bottom p {
  color: #9a9a9a;
  font-size: .9rem;
}

@media(max-width:1000px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
}
}

@media(max-width:700px) {
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
}
  .footer-social {
    justify-content: center;
}
  .footer-bottom {
    flex-direction: column;
    text-align: center;
}
}

/* ==========================================
   NAVBAR BASE STYLES
   ========================================== */
.navbar {
  background-color: #000000 !important;
  color: #ffffff !important;
}

.navbar a,
.navbar button {
  color: #ffffff !important;
  text-decoration: none;
}

/* Hamburger menu color */
.navbar .hamburger span {
  background-color: #ffffff !important;
}

/* ==========================================
   NAV ICONS & ACTIONS
   ========================================== */
   /* Navbar Container */
header.navbar {
  height: 90px;
  padding: 0 4%;
  background-color: #000;
  position: sticky; /* Or 'fixed' if preferred */
  top: 0;
  z-index: 999;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-sizing: border-box;
}

/* Brand Logo */
header.navbar .logo {
  font-size: 28px;
  font-weight: 700;
  white-space: nowrap;
  margin-right: 40px;
  color: #fff;
  text-decoration: none;
}

/* Desktop Navigation Links */
.desktop-nav {
  display: flex;
  gap: 25px;
  flex-grow: 1;
  justify-content: center;
}

.desktop-nav a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
}

/* Action Area (Icons + Button) */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-left: 20px;
}

/* Social/Contact Icons */
.nav-icon {
  background-color: #333;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
  transition: background-color 0.3s;
}

/* CTA "Book The Truck" Button */
.book-btn {
  background-color: #c00;
  padding: 10px 25px;
  border-radius: 30px;
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  margin-left: 8px;
  text-decoration: none;
  line-height: 1.2;
  display: inline-flex;
  align-items: center;
}
.nav-actions {
  display: flex;
  align-items: center;
  gap: 15px;
}

.nav-icon {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  /* Start with the dark charcoal look */
  background-color: #333333 !important;
  border: 1px solid #444444 !important;
  transition: 0.3s;
}

.nav-icon i {
  color: #ffffff !important;
}

/* ==========================================
   HOVER EFFECTS
   ========================================== */

.navbar a:hover:not(.nav-icon),
.navbar button:hover {
  color: var(--red) !important;
}

.navbar .nav-icon:hover {
  background-color: var(--red) !important;
  border-color: var(--red) !important;
  transform: translateY(-4px);
}

.navbar .nav-icon:hover i {
  color: #ffffff !important;
}

/* ==========================================
    HAMBURGER
    ========================================== */

.hamburger {
  display: none;
  width: 46px;
  height: 46px;
  border: none;
  background: none;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
}

.hamburger span {
  height: 3px;
  background: #111;
  border-radius: 10px;
  transition: .3s;
}

/* ==========================================
    MOBILE MENU
    ========================================== */
    /* Navbar Base Styles */
header.navbar {
  height: 90px;
  padding: 0 4%;
  background-color: #000;
  position: sticky;
  top: 0;
  z-index: 999;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-sizing: border-box;
}

/* Brand Logo */
header.navbar .logo {
  font-size: 28px;
  font-weight: 700;
  white-space: nowrap; /* Prevents wrapping */
  color: #fff;
  text-decoration: none;
}

/* Desktop Navigation (Centered) */
.desktop-nav {
  display: flex;
  gap: 25px;
  flex-grow: 1;
  justify-content: center;
}

/* Desktop Action Icons (Phone, Email, FB) */
.nav-actions .nav-icon {
  background-color: #333;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}
    @media (max-width: 768px) {
      /* Navbar Scaling */
      header.navbar {
          height: 70px;
          padding: 0 15px;
      }
  
      header.navbar .logo {
          font-size: 26px; /* Bigger logo since icons are gone */
      }
  
      /* Hide desktop elements in header */
      header.navbar .desktop-nav,
      header.navbar .nav-actions .nav-icon,
      header.navbar .book-btn {
          display: none !important;
      }
  
      /* Hamburger Menu Cleanup */
      .mobile-menu a {
          border-bottom: 1px solid #eee; /* Light lines between links */
      }
  
      /* Remove the line under the last link (Contact) */
      .mobile-menu a:last-of-type {
          border-bottom: none !important;
      }
  
      /* Social Icons Row at bottom of menu */
      .mobile-menu .mobile-socials {
          display: flex;
          flex-direction: row;
          justify-content: center;
          gap: 20px;
          margin-top: 25px;
          padding-top: 0;
          border-top: none !important; /* Removed the black line */
      }
  
      .mobile-menu .mobile-socials .nav-icon {
          width: 50px;
          height: 50px;
          background-color: #333;
          border-radius: 50%;
          display: flex;
          align-items: center;
          justify-content: center;
          color: #fff;
          font-size: 24px;
          text-decoration: none;
      }
  }

.mobile-menu {
  position: fixed;
  top: 0;
  right: -350px;
  width: 320px;
  height: 100vh;
  background: white;
  z-index: 9999;
  padding: 50px 35px;
  display: flex;
  flex-direction: column;
  transition: .4s;
  box-shadow: -10px 0 40px rgba(0, 0, 0, .15);
}

.mobile-menu.active {
  right: 0;
}

.mobile-menu a {
  padding: 18px 0;
  font-weight: 600;
  border-bottom: 1px solid #eee;
}

.mobile-menu hr {
  margin: 25px 0;
  border: none;
  border-top: 1px solid #eee;
}

.close-menu {
  background: none;
  border: none;
  font-size: 3rem;
  margin-bottom: 25px;
  cursor: pointer;
  align-self: flex-end;
}

.mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .45);
  opacity: 0;
  visibility: hidden;
  transition: .3s;
  z-index: 9998;
}

.mobile-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* ==========================================
    BACK TO TOP
    ========================================== */

#backToTop {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 55px;
  height: 55px;
  border: none;
  border-radius: 50%;
  background: var(--red);
  color: white;
  font-size: 18px;
  cursor: pointer;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: .35s;
  z-index: 900;
}

#backToTop.show {
  opacity: 1;
  visibility: visible;
}

#backToTop:hover {
  transform: translateY(-5px);
  background: var(--red-dark);
}

@media(max-width:1000px) {
  .desktop-nav {
    display: none;
}
  .book-btn {
    display: none;
}
  .hamburger {
    display: flex;
}
  .event-types {
    display: none;
}
  .catering-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
  .booking-card form {
    max-width: 600px;
    width: 100%;
    margin: 0px auto;
}
}

.hidden-field {
  display: none;
}

.form-success {
  display: none;
  text-align: center;
  padding: 40px 20px;
}

.form-success.show {
  display: block;
}

.success-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: var(--red);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
}

@media (max-width: 700px) {
  .logo {
    font-size: 1.15rem;
    white-space: nowrap;
    flex-shrink: 0;
    letter-spacing: -0.5px;
}
  .chef-section {
    grid-template-columns: 1fr;
}
  .chef-image {
    order: -1;
}
}

/* ==========================================
CATERING HIGHLIGHT
========================================== */

.catering-highlight {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-top: 40px;
  padding: 25px;
  background: #fafafa;
  border-radius: 20px;
  padding-left: 0;
}

.highlight-icon {
  width: 65px;
  height: 65px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--red);
  color: white;
  border-radius: 50%;
  font-size: 1.5rem;
}

.catering-highlight h3 {
  margin-bottom: 7px;
  font-size: 1.35rem;
}

.catering-highlight p {
  margin: 0;
  line-height: 1.6;
}

/* ==========================================
EVENT TYPES
========================================== */

.catering-events {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 30px;
}

.catering-events span {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .9rem;
  font-weight: 600;
}

.catering-events i {
  color: var(--red);
  width: 20px;
  text-align: center;
}

/* ==========================================
CATERING TAGLINE
========================================== */

.catering-tagline {
  margin-top: 35px;
}

.catering-tagline strong {
  font-size: 1.15rem;
}

.catering-tagline p {
  margin-top: 5px;
}

/* Apply these changes only on mobile (up to 768px) */
@media (max-width: 768px) {
  .catering-highlight {
    flex-direction: column !important;
    align-items: center !important;
    gap: 20px;
    padding: 25px 0;
  }

  .catering-highlight div {
    text-align: center !important;
  }
}
/* ==========================================
CHEF PHOTO CREDIT
========================================== */

.photo-credit {

  margin-top: 10px;

  font-size: .75rem;

  line-height: 1.4;

  color: #777;

  text-align: center;

}


.photo-credit a {

  color: #555;

  text-decoration: underline;

  text-underline-offset: 2px;

}


.photo-credit a:hover {

  color: var(--red);

}