/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Roboto', Arial, sans-serif;
}

html{
  scroll-behavior:smooth;
}

:root {
  --text: #2f2f2f;
  --muted: #5c6470;
  --accent: #e67e22;
  --accent-dark: #c86613;
  --red-main: #df2328;
  --red-dark: #b81c20;
  --teal: #1f6f78;
  --teal-light: #78c7ce;
  --sky-top: #dfeaf4;
  --sky-mid: #edf5fb;
  --card-shadow: 0 14px 30px rgba(0, 0, 0, 0.08);
}

/* Top black bar */
.top-bar {
  width: 100%;
  height: 18px; /* adjust thickness here */
  background: #000;
}
body {
  line-height: 1.6;
  color: var(--text);
  background: #fff;
}

img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  display: block;
}


.site-header {
  width: 100%;
  background: #f3f3f3;
}

/* Top section */
.header-top {
  height: 250px;
  border-bottom: 1px solid #cfcfcf;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

/* Black logo box */
.logo-block {
  width: 255px;
  height: 165px;
  background: #000;
  display: flex;
  justify-content: center;
  align-items: center;
}

.logo-link {
  text-decoration: none;
  color: #fff;
  text-align: center;
}

.logo-link h1 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 35px;
  font-weight: 400;
  line-height: 1.18;
  letter-spacing: 0.2px;
  margin: 0;
}

.logo-link p {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 15px;
  font-style: italic;
  margin-top: 8px;
  margin-bottom: 0;
}

/* Nav section */
.header-bottom {
  background: #f3f3f3;
  border-bottom: 1px solid #d2d2d2;
}

.nav-container {
  max-width: 1300px;
  margin: auto;
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 0 20px;
}

.logo {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.3px;
}

/* Center nav */
nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 72px;
}

nav a {
  text-decoration: none;
  color: #111;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 18px;
  font-weight: 400;
  position: relative;
  transition: color 0.2s ease;
}
nav a.active::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 1px;
  background: var(--accent);
}
nav a:hover,
nav a.active {
  color: var(--accent);
}

/* Hamburger */
.menu-toggle {
  display: none;
  position: absolute;
  right: 20px;
  font-size: 28px;
  cursor: pointer;
  color: #111;
}

/* Hero */
.hero-section {
  min-height: 92vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  padding: 72px 20px 56px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(to bottom, var(--sky-top) 0%, var(--sky-mid) 42%, #ffffff 100%);
}

/* subtle skyline */
.hero-section::before {
  content: '';
  position: absolute;
  bottom: 128px;
  left: 0;
  width: 100%;
  height: 120px;
  background: repeating-linear-gradient(
    to right,
    rgba(170, 176, 184, 0.12) 0px,
    rgba(170, 176, 184, 0.12) 34px,
    transparent 34px,
    transparent 66px
  );
  opacity: 0.55;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
}

.hero-content h1 {
  font-size: clamp(2.4rem, 5vw, 4rem);
  line-height: 1.15;
  margin-bottom: 18px;
  letter-spacing: -1px;
}

.hero-content p {
  font-size: 1.15rem;
  color: var(--muted);
  max-width: 760px;
  margin: 0 auto;
}

.hero-right {
  margin: 46px auto 0;
  overflow: visible;
  position: relative;
  padding: 12px 0 88px;
  width: 100%;
  z-index: 2;
}

/* road center line */
.hero-right::before {
  content: '';
  position: absolute;
  bottom: 40px;
  left: 0;
  width: 100%;
  height: 4px;
  background: repeating-linear-gradient(
    to right,
    #fefefe 0px,
    #fefefe 20px,
    transparent 20px,
    transparent 38px
  );
  z-index: 2;
  border-radius: 999px;
}

/* full-width road */
.hero-right::after {
  content: '';
  position: absolute;
  bottom: 28px;
  left: 0;
  width: 100%;
  height: 18px;
  background: #464646;
  border-radius: 999px;
  box-shadow: inset 0 2px 0 rgba(255, 255, 255, 0.06);
}

/* Truck */
.truck {
  position: relative;
  width: 390px;
  height: 220px;
  margin: 0 auto;
  top: 38px;
  animation: truckEnter 2.2s ease-out forwards;
  transform: translateX(-700px);
}
/* Truck body */
.truck-box {
  position: absolute;
  left: 0;
  top: 45px;
  width: 232px;
  height: 110px;
  background: linear-gradient(
    to bottom,
    var(--red-main) 0%,
    var(--red-main) 74%,
    #215865 74%,
    #215865 100%
  );
  border: 3px solid #222;
  border-radius: 14px 14px 8px 8px;
  box-shadow: var(--card-shadow);
}

/* roof cap */
.truck-box::before {
  content: '';
  position: absolute;
  top: -7px;
  left: -3px;
  width: calc(100% + 6px);
  height: 12px;
  background: #30565d;
  border: 3px solid #222;
  border-bottom: none;
  border-radius: 14px 14px 0 0;
}

/* front marker light */
.truck-box::after {
  content: '';
  position: absolute;
  top: 16px;
  left: 12px;
  width: 14px;
  height: 8px;
  background: #efb31f;
  border: 2px solid #222;
  border-radius: 2px;
}

/* serving hatch */
.truck-lid {
  position: absolute;
  width: 126px;
  height: 12px;
  background: #f2be67;
  border: 3px solid #222;
  top: 17px;
  left: 30px;
  transform-origin: top;
  border-radius: 4px 4px 0 0;
  animation: lidOpen 1s ease forwards;
  animation-delay: 2.5s;
}

/* service window */
.food-tray {
  position: absolute;
  width: 112px;
  height: 36px;
  background: linear-gradient(to bottom, #f4fbfc, #dbe9ec);
  left: 36px;
  top: 34px;
  border: 3px solid #222;
  border-top: none;
  border-radius: 0 0 10px 10px;
  animation: traySlide 1s ease forwards;
  animation-delay: 2.8s;
  overflow: hidden;
}

/* awning */
.food-tray::before {
  content: '';
  position: absolute;
  top: -12px;
  left: -3px;
  width: calc(100% + 6px);
  height: 16px;
  background: repeating-linear-gradient(
    to right,
    #1d6070 0px,
    #1d6070 15px,
    #f1c64f 15px,
    #f1c64f 30px
  );
  border: 3px solid #222;
  border-bottom: none;
  border-radius: 8px 8px 0 0;
}

/* hidden until truck arrives and opens */
.truck-menu-btn {
  position: absolute;
  top: 46px;
  left: 36px;
  width: 112px;
  height: 36px;

  display: flex;
  align-items: center;
  justify-content: center;

  color: #ff9900;
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.3px;

  background: transparent;
  border: none;

  z-index: 4;

  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  animation: showMenuBtn 0.4s ease forwards;
  animation-delay: 2.95s;

  text-shadow: 0 2px 6px rgba(0,0,0,0.35);
}

.truck-menu-btn::after {
  content: '';
  position: absolute;
  top: 4px;
  left: 10%;
  width: 80%;
  height: 40%;
  background: rgba(255,255,255,0.15);
  border-radius: 6px;
  pointer-events: none;
}

.truck-menu-btn:hover {
  color: #ffffff;
}

/* steam */
.steam {
  position: absolute;
  width: 11px;
  height: 11px;
  background: rgba(235, 235, 235, 0.5);
  border-radius: 50%;
  opacity: 0;
  z-index: 2;
}

.steam1 {
  left: 86px;
  top: 18px;
  animation: steamRise 2s infinite 3s;
}

.steam2 {
  left: 106px;
  top: 12px;
  animation: steamRise 2s infinite 3.25s;
}

.steam3 {
  left: 126px;
  top: 18px;
  animation: steamRise 2s infinite 3.5s;
}

/* cab */
.truck-cab {
  position: absolute;
  right: -20px;
  top: 50px;
  width: 108px;
  height: 100px;
  background: linear-gradient(
    to bottom,
    #ef3a45 0%,
    #ef3a45 72%,
    var(--teal-light) 72%,
    var(--teal-light) 100%
  );
  border: 3px solid #222;
  border-left-width: 2px;
  border-radius: 16px 16px 10px 10px;
}

/* windshield */
.truck-cab::before {
  content: '';
  position: absolute;
  top: 18px;
  left: 16px;
  width: 60px;
  height: 42px;
  background: linear-gradient(135deg, rgba(255,255,255,0.85) 0 30%, #d6edf0 30% 100%);
  border: 3px solid #222;
  clip-path: polygon(22% 0%, 100% 0%, 100% 100%, 0% 100%);
  border-radius: 4px;
}

/* door seam */
.truck-cab::after {
  content: '';
  position: absolute;
  top: 50px;
  right: 22px;
  width: 2px;
  height: 16px;
  background: #222;
  opacity: 0.7;
}

/* marker lights */
.truck-lights {
  position: absolute;
  right: 15px;
  top: 40px;
  display: flex;
  gap: 6px;
}

.truck-lights span {
  width: 8px;
  height: 8px;
  background: #efb31f;
  border-radius: 50%;
  box-shadow: 0 0 8px rgba(239, 179, 31, 0.9);
  animation: blink 1s infinite alternate;
}

/* wheels */
.wheel {
  position: absolute;
  bottom: -6px;
  width: 46px;
  height: 46px;
  background: #121212;
  border: 3px solid #222;
  border-radius: 50%;
  animation: spinWheel 1s linear infinite;
  z-index: 3;
}

.wheel::before {
  content: '';
  position: absolute;
  inset: 8px;
  border: 3px solid #4d4d4d;
  border-radius: 50%;
}

.wheel::after {
  content: '';
  position: absolute;
  width: 12px;
  height: 12px;
  background: #d8d8d8;
  border-radius: 50%;
  top: 14px;
  left: 14px;
}

.wheel-front {
  right: 12px;
}

.wheel-back {
  left: 45px;
}

/* truck shadow */
.truck::after {
  content: '';
  position: absolute;
  bottom: 10px;
  left: 44px;
  width: 268px;
  height: 10px;
  background: rgba(0, 0, 0, 0.12);
  filter: blur(5px);
  border-radius: 50%;
}

/* Buttons */
.hero-buttons {
  margin-top: 12px;
  position: relative;
  z-index: 2;
}

.hero-btn {
  display: inline-block;
  padding: 14px 30px;
  background: var(--accent);
  color: white;
  text-decoration: none;
  border-radius: 10px;
  font-weight: 700;
  box-shadow: 0 10px 18px rgba(230, 126, 34, 0.2);
  transition: transform 0.2s ease, background 0.2s ease;
}

.hero-btn:hover {
  background: var(--accent-dark);
  transform: translateY(-1px);
}

/* Sections */
.intro-section {
  padding: 80px 20px;
  text-align: center;
  max-width: 900px;
  margin: auto;
}

.intro-section h2 {
  color: var(--accent);
  margin-bottom: 20px;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
}

.intro-section p {
  color: var(--muted);
  font-size: 1.05rem;
}

.feature-grid {
  display: flex;
  gap: 30px;
  justify-content: center;
  flex-wrap: wrap;
  padding: 20px 20px 70px;
}

.feature-card {
  width: 300px;
  background: white;
  border-radius: 18px;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  text-align: center;
  padding-bottom: 22px;
}

.feature-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 0;
  margin-bottom: 15px;
  background: #f1f1f1;
  
}

.feature-card:nth-child(3) img {
  object-position: center;
}

.feature-card h3 {
  padding: 0 18px;
  margin-bottom: 8px;
}

.feature-card p {
  padding: 0 18px;
  color: var(--muted);
}

.cta-banner {
  background: #f8f8f8;
  text-align: center;
  padding: 70px 20px;
}

.cta-banner h2 {
  margin-bottom: 10px;
}

footer {
  text-align: center;
  padding: 30px;
  color: #666;
}

/* ===== ABOUT PAGE ===== */

.about-page {
  background: #000;
}

/* Top intro section */
.about-hero {
  background: #f3f3f3;
  padding: 70px 20px 60px;
  position: relative;
  overflow: visible;
}

.about-hero-inner {
  max-width: 1300px;
  margin: 0 auto;
  min-height: 260px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  position: relative;
}

.about-hero-text {
  padding-top: 10px;
  z-index: 2;
}

.about-hero-text h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3rem, 5vw, 4.2rem);
  font-weight: 400;
  color: #000;
  line-height: 1.1;
}

.about-hero-image-wrap {
  width: 600px;
  position: absolute;
  right: 0;
  top: 150px; /* pushes image down so it sits mostly in black */
  z-index: 3;
}

.about-hero-image {
  width: 100%;
  height: 500px;
  object-fit: cover;
  object-position: center;
  border-radius: 0;
  box-shadow: 0 22px 40px rgba(0, 0, 0, 0.25);
}

/* Main black story section */
.about-story {
  background: #000;
  padding: 300px 20px 110px; /* enough room for image sitting into black */
}

.about-story-inner {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 500px;
  gap: 80px;
  align-items: start;
}
.about-story-inner.single-column {
  grid-template-columns: 1fr;
}

.about-story-inner.single-column .about-story-text {
  max-width: 620px;
}
.about-story-text {
  max-width: 540px;
  color: #fff;
  padding-top: 40px;
}

.about-story-text p {
  font-size: clamp(1.3rem, 2vw, 1.6rem);
  line-height: 1.8;
  margin-bottom: 38px;
  color: #fff;
}



/* Gallery section */
.about-gallery {
  background: #000;
  padding: 40px 20px 90px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.about-gallery-inner {
  max-width: 1500px;
  margin: 0 auto;
  position: relative;
  display: grid;
  grid-template-columns: 1fr 0.75fr 1.45fr;
  gap: 90px;
  align-items: start;
}

.about-gallery-item img {
  width: 100%;
  display: block;
  border-radius: 0;
  object-fit: cover;
}

.about-gallery-item:nth-child(2) img {
  height: 560px;
}

.about-gallery-item.middle img {
  height: 420px;
}

.about-gallery-item:last-child img {
  height: 420px;
}

/* Orange badge */
.quality-badge {
  position: absolute;
  top: -65px;
  left: 46%;
  transform: translateX(20%) translateY(-20%) rotate(-18deg);
  width: 165px;
  height: 165px;
  border-radius: 50%;
  background: #c9662a;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 28px rgba(201, 102, 42, 0.7);
  z-index: 5;
}

.quality-badge span {
  color: #fff;
  text-align: center;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1rem;
  line-height: 1.25;
}

/* ===== SERVICES PAGE ===== */

.services-page {
  width: 100%;
}

.services-hero {
  background: #f3f3f3;
  padding: 70px 20px 60px;
}

.services-hero-inner {
  max-width: 1300px;
  margin: 0 auto;
}

.services-hero h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3rem, 5vw, 4.2rem);
  font-weight: 400;
  line-height: 1.1;
  color: #000;
  margin: 0;
}

.service-split {
  padding: 70px 20px;
}

.service-split-inner {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 90px;
  align-items: center;
}

.service-dark {
  background: #000;
}

.service-light {
  background: #f3f3f3;
}

.service-copy {
  max-width: 520px;
}

.service-copy h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 3vw, 3rem);
  font-weight: 400;
  margin-bottom: 30px;
}

.service-copy p {
  font-size: 1.15rem;
  line-height: 1.8;
  margin-bottom: 34px;
}

.service-dark .service-copy h3,
.service-dark .service-copy p {
  color: #fff;
}

.service-light .service-copy h3,
.service-light .service-copy p {
  color: #000;
}

.service-image img {
  width: 100%;
  max-width: 460px;
  height: 620px;
  object-fit: cover;
  display: block;
  margin: 0 auto;
  border-radius: 0;
}

.service-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 270px;
  padding: 16px 34px;
  border: 2px solid #d76621;
  border-radius: 999px;
  color: #d76621;
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  background: transparent;
  transition: all 0.2s ease;
}

.service-btn:hover {
  background: #d76621;
  color: #fff;
}

.reverse .service-split-inner {
  grid-template-columns: 1fr 1fr;
}

.reverse .service-copy {
  justify-self: start;
}

.reverse .service-image {
  order: 1;
}

.reverse .service-copy {
  order: 2;
}

/* ===== MENU PAGE ===== */
.menu-page {
  background: #f3f3f3;
}

.menu-hero {
  padding: 70px 20px 40px;
}

.menu-hero-inner {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.menu-hero h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.8rem, 5vw, 4rem);
  font-weight: 400;
  margin-bottom: 16px;
}

.menu-hero p {
  color: #555;
  font-size: 1.05rem;
  line-height: 1.7;
}

/* Grid */
.menu-grid-section {
  padding: 30px 20px 80px;
}

.menu-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

/* Cards */
.menu-card {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
  transition: transform 0.25s ease;
}

.menu-card:hover {
  transform: translateY(-6px);
}

.menu-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.menu-card-body {
  padding: 20px;
  text-align: center;
}

.menu-card-body h3 {
  font-size: 1.1rem;
  margin-bottom: 12px;
}

.menu-details {
  list-style: none;
  padding: 0;
  margin: 0;
}

.menu-details li {
  padding: 8px 0;
  border-bottom: 1px solid #ececec;
  font-size: 0.98rem;
  color: #333;
}

.menu-details li:last-child {
  border-bottom: none;
}

.menu-details span {
  display: block;
  margin-top: 4px;
  color: #d76621;
  font-size: 0.92rem;
  font-weight: 600;
}

.menu-note {
  color: #666;
  line-height: 1.7;
  font-size: 0.98rem;
}

/* Wedding section */
.wedding-menu-section {
  background: #000;
  padding: 80px 20px;
}

.wedding-menu-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.wedding-menu-copy {
  max-width: 820px;
  margin: 0 auto 40px;
  text-align: center;
}

.wedding-menu-copy h3 {
  color: #fff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  margin-bottom: 18px;
}

.wedding-menu-copy p {
  color: #ddd;
  line-height: 1.8;
  font-size: 1.05rem;
}

.wedding-menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.wedding-menu-box {
  background: #111;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 18px;
  padding: 28px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
}

.wedding-menu-box h4 {
  color: #fff;
  font-size: 1.2rem;
  margin-bottom: 16px;
}

.wedding-menu-box ul {
  margin: 0;
  padding-left: 18px;
}

.wedding-menu-box li {
  color: #ddd;
  margin-bottom: 10px;
  line-height: 1.6;
}

.wedding-menu-footer {
  text-align: center;
  color: #d76621;
  font-size: 1.05rem;
  margin-top: 28px;
  font-weight: 600;
}

/* Delivery section */
.delivery-section {
  background: #000;
  padding: 60px 20px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.delivery-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.delivery-inner h3 {
  color: #fff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
  margin-bottom: 30px;
}

.delivery-pricing {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.delivery-box {
  background: #111;
  padding: 25px 35px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.1);
}

.delivery-box span {
  display: block;
  color: #aaa;
  margin-bottom: 6px;
}

.delivery-box strong {
  color: #fff;
  font-size: 1.2rem;
}

/* Responsive */
@media (max-width: 1100px) {
  .menu-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .wedding-menu-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .menu-grid {
    grid-template-columns: 1fr;
  }

  .menu-card img {
    height: 200px;
  }

  .menu-hero {
    padding: 50px 20px 30px;
  }

  .wedding-menu-section {
    padding: 60px 20px;
  }
}
.menu-page {
  background: #f3f3f3;
}

.mini-btn {
  display: inline-block;
  margin-top: 14px;
  font-size: 0.85rem;
  color: #d76621;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: 0.2s;
}

.mini-btn:hover {
  border-bottom: 1px solid #d76621;
}
/* Hero */
.menu-hero {
  padding: 70px 20px 40px;
}

.menu-hero-inner {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.menu-hero h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.8rem, 5vw, 4rem);
  font-weight: 400;
  margin-bottom: 16px;
}

.menu-hero p {
  color: #555;
  font-size: 1.05rem;
  line-height: 1.7;
}

/* Grid */
.menu-grid-section {
  padding: 30px 20px 80px;
}

.menu-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

/* Cards */
.menu-card {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
  transition: transform 0.25s ease;
}

.menu-card:hover {
  transform: translateY(-6px);
}

.menu-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.menu-card-body {
  padding: 18px;
  text-align: center;
}

.menu-card-body h3 {
  font-size: 1.05rem;
  margin-bottom: 8px;
}

.price {
  font-size: 1.2rem;
  font-weight: 600;
  color: #d76621;
}

/* Delivery section */
.delivery-section {
  background: #000;
  padding: 60px 20px;
}

.delivery-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.delivery-inner h3 {
  color: #fff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
  margin-bottom: 30px;
}

.delivery-pricing {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.delivery-box {
  background: #111;
  padding: 25px 35px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.1);
}

.delivery-box span {
  display: block;
  color: #aaa;
  margin-bottom: 6px;
}

.delivery-box strong {
  color: #fff;
  font-size: 1.2rem;
}

/* Responsive */
@media (max-width: 1000px) {
  .menu-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .menu-grid {
    grid-template-columns: 1fr;
  }

  .menu-card img {
    height: 200px;
  }
}
/* ===== CLIENT REVIEWS PAGE ===== */

.reviews-page {
  background: #f5f5f5;
}

.reviews-hero {
  background: #f5f5f5;
  padding: 65px 20px 30px;
}

.reviews-hero-inner {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.rainbow-stars {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 22px;
  font-size: 1.45rem;
  line-height: 1;
}

.rainbow-stars span:nth-child(1) {
  color: #ff7a00;
}

.rainbow-stars span:nth-child(2) {
  color: #ffb000;
}

.rainbow-stars span:nth-child(3) {
  color: #ffd84d;
}

.rainbow-stars span:nth-child(4) {
  color: #77c35c;
}

.rainbow-stars span:nth-child(5) {
  color: #4a90e2;
}

.reviews-hero h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: #2e2e2e;
  margin-bottom: 10px;
}

.review-subtitle {
  max-width: 760px;
  margin: 0 auto;
  color: #6b6b6b;
  font-size: 1rem;
  line-height: 1.7;
}

.reviews-gallery {
  padding: 20px 20px 80px;
}

.reviews-gallery-inner {
  max-width: 1200px;
  margin: 0 auto;
  column-count: 3;
  column-gap: 22px;
}

.review-shot {
  break-inside: avoid;
  margin-bottom: 22px;
  background: #ffffff;
  border-radius: 10px;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.08);
  overflow: hidden;
}

.review-shot img {
  width: 100%;
  display: block;
  border-radius: 0;
}

.reviews-link {
  text-align: center;
  margin-top: 26px;
}

.reviews-link a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 270px;
  padding: 16px 32px;
  border: 2px solid #d76621;
  border-radius: 999px;
  color: #d76621;
  background: transparent;
  text-decoration: none;
  font-size: 1rem;
  letter-spacing: 0.04em;
  transition: all 0.2s ease;
}

.reviews-link a:hover {
  background: #d76621;
  color: #fff;
}

/* ===== CONTACT PAGE ===== */

.contact-page {
  background: #000;
}

.contact-hero {
  background: #f3f3f3;
  padding: 70px 20px 50px;
}

.contact-hero-inner {
  max-width: 1300px;
  margin: 0 auto;
}

.contact-hero h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3rem, 5vw, 4.2rem);
  font-weight: 400;
  line-height: 1.1;
  color: #000;
  margin: 0;
}

.contact-info-section {
  background: #000;
  padding: 80px 20px 110px;
}

.contact-info-inner {
  max-width: 1300px;
  margin: 0 auto;
}

.contact-main-copy {
  max-width: 620px;
}

.contact-main-copy h3 {
  color: #fff;
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 400;
  line-height: 1.25;
  margin-bottom: 46px;
}

.contact-details-block {
  margin-bottom: 38px;
}

.contact-details-block p {
  color: #fff;
  font-size: 1.2rem;
  line-height: 1.9;
  margin: 0 0 6px;
}

.contact-details-block a {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 4px;
  transition: color 0.2s ease;
}

.contact-details-block a:hover {
  color: #d76621;
}

/* Mobile */
@media (max-width: 768px) {
  .contact-hero {
    padding: 50px 20px 35px;
  }

  .contact-info-section {
    padding: 60px 20px 80px;
  }

  .contact-main-copy h3 {
    font-size: 2.4rem;
    margin-bottom: 30px;
  }

  .contact-details-block {
    margin-bottom: 26px;
  }

  .contact-details-block p {
    font-size: 1.05rem;
    line-height: 1.8;
  }
}

/* Animations */
@keyframes truckEnter {
  0% {
    transform: translateX(-700px) translateY(0);
  }
  60% {
    transform: translateX(24px) translateY(0);
  }
  72% {
    transform: translateX(10px) translateY(-4px);
  }
  82% {
    transform: translateX(-6px) translateY(0);
  }
  90% {
    transform: translateX(2px) translateY(-2px);
  }
  100% {
    transform: translateX(0) translateY(0);
  }
}

@keyframes lidOpen {
  to {
    transform: rotateX(78deg);
  }
}

@keyframes traySlide {
  to {
    transform: translateY(8px);
  }
}

@keyframes steamRise {
  0% {
    opacity: 0.45;
    transform: translateY(0) scale(1);
  }
  100% {
    opacity: 0;
    transform: translateY(-34px) scale(1.45);
  }
}

@keyframes spinWheel {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes blink {
  from {
    opacity: 0.55;
  }
  to {
    opacity: 1;
  }
}

@keyframes showMenuBtn {
  0% {
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
  }
  1% {
    visibility: visible;
  }
  100% {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
}

  .hero-section {
    min-height: auto;
    padding: 56px 18px 48px;
  }

  .hero-content h1 {
    font-size: 2.2rem;
  }

  .hero-content p {
    font-size: 1rem;
  }

  .hero-right {
    margin-top: 34px;
    padding-bottom: 78px;
    width: 100%;
  }

  .truck {
    width: 320px;
    height: 175px;
    transform: translateX(-700px) scale(0.82);
    transform-origin: center;
  }

  .hero-right::before {
    bottom: 31px;
    left: 0;
    width: 100%;
  }

  .hero-right::after {
    bottom: 22px;
    left: 0;
    width: 100%;
    height: 18px;
  }

  
/* Tablet */
@media (max-width: 1100px) {
  .service-split-inner {
    gap: 50px;
  }

  .service-image img {
    height: 520px;
  }

  .service-copy p {
    font-size: 1.05rem;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .services-hero {
    padding: 50px 20px 40px;
  }

  .service-split {
    padding: 50px 20px;
  }

  .service-split-inner,
  .reverse .service-split-inner {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .service-image,
  .service-copy {
    order: unset !important;
  }

  .service-copy {
    max-width: 100%;
  }

  .service-copy h3 {
    margin-bottom: 18px;
  }

  .service-copy p {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 24px;
  }

  .service-image img {
    max-width: 100%;
    height: 360px;
  }

  .service-btn {
    min-width: 220px;
    font-size: 1rem;
    padding: 14px 26px;
  }
}
/* Tablet */
@media (max-width: 1000px) {
  .reviews-gallery-inner {
    column-count: 2;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .reviews-hero {
    padding: 50px 20px 20px;
  }

  .rainbow-stars {
    font-size: 1.25rem;
    gap: 6px;
    margin-bottom: 18px;
  }

  .reviews-gallery {
    padding: 20px 14px 60px;
  }

  .reviews-gallery-inner {
    column-count: 1;
    column-gap: 0;
  }

  .review-shot {
    margin-bottom: 18px;
  }

  .reviews-link a {
    min-width: 220px;
    padding: 14px 24px;
    font-size: 0.95rem;
  }
}

/* Mobile Nav + Layout */
/* Mobile */
/* Mobile */
@media (max-width: 900px) {
  nav {
    gap: 40px;
  }

  nav a {
    font-size: 16px;
  }
}
/* Tablet */
@media (max-width: 1100px) {
  .about-hero-inner {
    flex-direction: column;
    gap: 30px;
  }

  .about-hero-image-wrap {
    width: 100%;
    max-width: 540px;
    margin-left: auto;
    margin-bottom: -180px;
  }

  .about-story {
    padding-top: 150px;
  }

  .about-story-inner {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .about-story-text {
    max-width: 100%;
    padding-top: 0;
  }

  .about-story-image {
    height: 600px;
  }

.about-gallery-inner {
  position: relative;
}

.quality-badge {
  position: absolute;
  top: 50px;        /* slightly above image */
  right: 60px;      /* push it to the right side */
  transform: rotate(-15deg);
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: #c9662a;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 20px rgba(201, 102, 42, 0.6);
  z-index: 5;
}

  .about-gallery-item:nth-child(2) img,
  .about-gallery-item.middle img,
  .about-gallery-item:last-child img {
    height: auto;
  }
}
@media (max-width: 768px) {
  .header-top {
    height: 180px;
  }

  .logo-block {
    width: 210px;
    height: 130px;
  }

  .logo-link h1 {
    font-size: 26px;
  }

  .logo-link p {
    font-size: 13px;
  }

  .menu-toggle {
    display: block;
  }

  .nav-container {
    justify-content: flex-end;
    min-height: 64px;
  }

  nav {
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    position: absolute;
    top: 64px;
    right: 20px;
    background: #fff;
    width: 220px;
    padding: 20px;
    border: 1px solid #ddd;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
    z-index: 1000;
  }

  nav.active {
    display: flex;
  }

  nav a.active::after {
    display: none;
  }
   .about-hero {
    padding: 50px 20px 110px;
  }

  .about-hero-text h2 {
    font-size: 2.6rem;
  }

  .about-hero-image-wrap {
    max-width: 100%;
    margin-bottom: -120px;
  }

  .about-hero-image {
    height: 280px;
  }

  .about-story {
    padding: 110px 20px 70px;
  }

  .about-story-text p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 24px;
  }

  .about-story-image {
    height: 380px;
  }

  .about-gallery {
    padding: 20px 20px 70px;
  }

  .quality-badge {
    width: 130px;
    height: 130px;
  }

  .quality-badge span {
    font-size: 0.85rem;
  }
}
/* Back to top button */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 46px;
  height: 46px;
  background: #d76621;
  color: #fff;
  border: none;
  border-radius: 50%;
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;

  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.25s ease;
  z-index: 999;
}

.back-to-top:hover {
  background: #b9551c;
  transform: translateY(0);
}

/* visible state */
.back-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
/* DOPA415*./