/* Global */
*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background-color: #05070b;
  color: #f5f5f5;
}

html {
  overflow-y: scroll;
}

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

.container {
  width: min(1120px, 100% - 2rem);
  margin-inline: auto;
}

/* Header */
.site-header {
  position: fixed;
  inset-inline: 0;
  top: 0;
  z-index: 20;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.9), transparent);
  padding-block: 0.75rem;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.logo-mark {
  height: 40px;
  width: auto;
}

.logo-text {
  display: flex;
  flex-direction: column;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.logo-main {
  font-size: 0.8rem;
  color: #ffdd66;
}

.logo-sub {
  font-size: 1rem;
}

.main-nav {
  display: flex;
  gap: 1.5rem;
  font-size: 1.25rem;
}

.main-nav a {
  opacity: 0.8;
}

.main-nav a.active,
.main-nav a:hover {
  opacity: 1;
}

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  padding-top: 5rem;
  padding-bottom: 4rem;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  background-image: linear-gradient(
      to top,
      rgba(0, 0, 0, 0.65),
      rgba(0, 0, 0, 0.2)
    ),
    url("../img/truck-hero.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, transparent, rgba(0, 0, 0, 0.25));
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 640px;
  padding-bottom: 1rem;
}

.hero-layout {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 2.5rem;
  min-height: calc(100vh - 6rem);
}

.hero-services {
  padding-bottom: 1.5rem;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.75rem;
  color: #ffdd66;
  margin-bottom: 0.4rem;
}

.hero h1 {
  margin: 0;
  font-size: clamp(1.8rem, 3vw + 1rem, 2.6rem);
  line-height: 1.2;
}

.hero h1 span {
  display: block;
  margin-top: 0.4rem;
  font-size: 0.95rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #ffdd66;
}

.hero-subtitle {
  margin-top: 0.75rem;
  margin-bottom: 1.25rem;
  font-size: 0.95rem;
  opacity: 0.9;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.hero-social {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.hero-social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  color: #ffffff;
  font-size: 0.95rem;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.55);
}

.hero-social-facebook {
  background: #1877f2;
}

.hero-social-instagram {
  background: radial-gradient(circle at 30% 30%, #fdf497 0, #fd5949 45%, #d6249f 70%, #285aeb 100%);
}

.hero-social-tiktok {
  background: linear-gradient(135deg, #25f4ee, #fe2c55);
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1.7rem;
  border-radius: 999px;
  background-color: #ffcc33;
  color: #121212;
  font-weight: 600;
  font-size: 0.95rem;
  box-shadow: 0 12px 22px rgba(0, 0, 0, 0.45);
}

.btn-primary:hover {
  background-color: #ffd955;
}

/* Features */
.features {
  background-color: #111318;
  padding-block: 2.5rem;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.feature-card {
  background-color: #181b22;
  border-radius: 0.75rem;
  padding: 1.4rem 1.2rem;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.5);
}

.feature-icon {
  font-size: 1.5rem;
  margin-bottom: 0.7rem;
}

.feature-card h3 {
  margin: 0 0 0.4rem;
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.feature-card p {
  margin: 0;
  font-size: 0.9rem;
  opacity: 0.9;
}

/* Why choose us */
.why-choose {
  background: radial-gradient(circle at top left, #171b24, #05070b);
  padding-block: 3rem 2.5rem;
}

.why-grid {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 3fr);
  gap: 2.5rem;
  align-items: flex-start;
}

.why-text h2 {
  margin-top: 0;
  font-size: 1.3rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.why-text ul {
  padding-left: 1.1rem;
  margin-top: 0.75rem;
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

.why-text li + li {
  margin-top: 0.25rem;
}

.testimonials h3 {
  margin: 0 0 0.9rem;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #ffdd66;
}

.testimonial-list {
  display: grid;
  gap: 0.7rem;
}

.testimonial {
  padding: 0.75rem 0.85rem;
  border-radius: 0.6rem;
  background-color: #111318;
  border-left: 3px solid #ffcc33;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.55);
  opacity: 0;
  transform: translateY(10px);
  animation: testimonialFadeUp 0.8s ease-out forwards;
}

.testimonial-quote {
  margin: 0 0 0.2rem;
  font-size: 0.9rem;
  opacity: 0.95;
}

.testimonial-name {
  margin: 0;
  font-size: 0.85rem;
  opacity: 0.8;
}

.why-media {
  display: grid;
  gap: 0.9rem;
}

.media-main,
.media-small,
.media-map {
  border-radius: 0.75rem;
  overflow: hidden;
}

.media-main {
  min-height: 180px;
  background-image: url("../img/truck-hero.jpg");
  background-size: cover;
  background-position: center;
}

.media-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
}

.media-small-1 {
  background-image: url("../img/about-food-1.jpg");
  background-size: cover;
  background-position: center;
}

.media-small-2 {
  background-image: url("../img/about-food-2.jpg");
  background-size: cover;
  background-position: center;
}

.media-small-3 {
  background-image: url("../img/about-food-3.jpg");
  background-size: cover;
  background-position: center;
}

.media-small-4 {
  background-image: url("../img/about-food-4.jpg");
  background-size: cover;
  background-position: center;
}

.media-wide {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
}

.media-wide-photo {
  border-radius: 0.75rem;
  overflow: hidden;
  min-height: 150px;
  background-size: cover;
  background-position: center;
}

.media-wide-photo-1 {
  background-image: url("../img/station-map-1.jpg");
}

.media-wide-photo-2 {
  background-image: url("../img/station-map-2.jpg");
}

.media-wide-photo-3 {
  background-image: url("../img/station-map-3.jpg");
}

.media-wide-photo-4 {
  background-image: url("../img/station-map-4.jpg");
}

.media-map {
  background: linear-gradient(135deg, #1d2534, #101522);
  padding: 0.9rem 1.1rem;
  font-size: 0.85rem;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

.map-embed {
  margin-top: 0.6rem;
  border-radius: 0.75rem;
  overflow: hidden;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.6);
}

.map-embed iframe {
  border: 0;
  width: 100%;
  height: 220px;
}

/* About page */
	.about-hero {
	  position: relative;
	  min-height: 100vh;
	  padding-top: 5.5rem;
	  padding-bottom: 4rem;
	  display: flex;
	  align-items: center;
	  background-image: linear-gradient(
	      to top,
	      rgba(0, 0, 0, 0.8),
	      rgba(0, 0, 0, 0.2)
	    ),
	    url("../img/truck-hero.jpg");
	  background-size: cover;
	  background-position: center;
	}

.about-hero-content {
  position: relative;
  z-index: 1;
  max-width: 720px;
  padding-block: 2.5rem 1.5rem;
}

.about-lead {
  margin-top: 0.75rem;
  margin-bottom: 1.75rem;
  font-size: 0.98rem;
  max-width: 40rem;
}

.about-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.about-stat {
  padding: 0.7rem 1rem;
  border-radius: 0.75rem;
  background-color: rgba(0, 0, 0, 0.45);
  min-width: 120px;
}

.about-stat-label {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  opacity: 0.75;
}

.about-stat-value {
  display: block;
  font-weight: 600;
  margin-top: 0.15rem;
}

.about-main {
  background-color: #05070b;
  padding-block: 3rem 4.5rem;
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 3fr);
  gap: 2.5rem;
  align-items: flex-start;
}

.about-copy h2 {
  margin-top: 0;
  font-size: 1.3rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.about-copy h3 {
  margin-top: 1.8rem;
  margin-bottom: 0.6rem;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.about-copy p {
  font-size: 0.95rem;
  line-height: 1.6;
  opacity: 0.95;
}

.about-copy p + p {
  margin-top: 0.7rem;
}

.about-list {
  padding-left: 1.1rem;
  font-size: 0.95rem;
}

.about-list li + li {
  margin-top: 0.25rem;
}

	.about-gallery {
	  display: grid;
	  gap: 0.9rem;
	}
	
	.about-gallery-main img,
	.about-gallery-row img,
	.about-gallery-wide img {
	  display: block;
	  width: 100%;
	  border-radius: 0.75rem;
	  object-fit: cover;
	}
	
	/* Keep consistent visual heights so the
	   gallery feels aligned and balanced */
	.about-gallery-main img {
	  height: 320px;
	}
	
	.about-gallery-row {
	  display: grid;
	  grid-template-columns: repeat(2, minmax(0, 1fr));
	  gap: 0.9rem;
	}
	
	.about-gallery-row img {
	  height: 160px;
	}
	
	.about-gallery-wide img {
	  height: 160px;
	}

.about-footer-strip {
  margin-top: 3rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.about-footer-item {
  display: flex;
  gap: 0.9rem;
  align-items: flex-start;
  padding: 1.1rem 1rem;
  border-radius: 0.85rem;
  background-color: #111318;
}

.about-footer-item i {
  font-size: 1.3rem;
  color: #ffdd66;
  margin-top: 0.2rem;
}

.about-footer-item h4 {
  margin: 0 0 0.25rem;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.about-footer-item p {
  margin: 0;
  font-size: 0.9rem;
  opacity: 0.9;
}

/* Services page */
	.services-hero {
	  position: relative;
	  min-height: 100vh;
	  padding-top: 5.5rem;
	  padding-bottom: 3.5rem;
	  display: flex;
	  align-items: center;
	  background-image: linear-gradient(
	      to top,
	      rgba(0, 0, 0, 0.85),
	      rgba(0, 0, 0, 0.25)
	    ),
	    url("../img/truck-hero.jpg");
	  background-size: cover;
	  background-position: center;
	}

.services-hero-content {
  position: relative;
  z-index: 1;
  max-width: 720px;
  padding-block: 2.5rem 1.5rem;
}

.services-tagline {
  margin-top: 0.75rem;
  margin-bottom: 1.25rem;
  font-size: 0.98rem;
  max-width: 40rem;
}

.service-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  color: #ffcc33;
}

.service-pill {
  padding: 0.25rem 0.65rem;
  border-radius: 999px;
  background-color: rgba(0, 0, 0, 0.45);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.services-main {
  background-color: #05070b;
  padding-block: 3rem 4.5rem;
}

.services-grid {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 3fr);
  gap: 2.5rem;
  align-items: flex-start;
}

.services-copy h2 {
  margin-top: 0;
  font-size: 1.3rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.services-copy h3 {
  margin-top: 1.5rem;
  margin-bottom: 0.6rem;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.services-copy p {
  font-size: 0.95rem;
  line-height: 1.6;
  opacity: 0.95;
}

.services-copy ul {
  padding-left: 1.1rem;
  font-size: 0.95rem;
}

.services-copy li + li {
  margin-top: 0.25rem;
}

.services-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.2rem;
}

.services-icons span {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.85rem;
  opacity: 0.9;
}

.services-icons i {
  color: #ffdd66;
}

	.services-gallery {
	  display: grid;
	  grid-template-columns: repeat(2, minmax(0, 1fr));
	  gap: 0.9rem;
	}
	
	.service-image {
	  display: block;
	  width: 100%;
	  height: 170px;
	  border-radius: 0.75rem;
	  object-fit: cover;
	}

/* Contact page */
	.contact-hero {
	  position: relative;
	  min-height: 100vh;
	  padding-top: 5.5rem;
	  padding-bottom: 3.5rem;
	  display: flex;
	  align-items: center;
	  background-image: linear-gradient(
	      to top,
	      rgba(0, 0, 0, 0.85),
	      rgba(0, 0, 0, 0.25)
	    ),
	    url("../img/truck-hero.jpg");
	  background-size: cover;
	  background-position: center;
	}

.contact-hero-content {
  position: relative;
  z-index: 1;
  max-width: 720px;
  padding-block: 2.5rem 1.5rem;
}

.contact-main {
  background-color: #05070b;
  padding-block: 3rem 4.5rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 3fr);
  gap: 2.5rem;
  align-items: flex-start;
}

.contact-card {
  background-color: #111318;
  border-radius: 0.9rem;
  padding: 1.3rem 1.2rem;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.5);
}

.contact-card h2 {
  margin-top: 0;
  margin-bottom: 0.6rem;
  font-size: 1.15rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.contact-card p {
  margin: 0;
  font-size: 0.9rem;
  opacity: 0.95;
}

.contact-card p + p {
  margin-top: 0.25rem;
}

.contact-details {
  margin-top: 0.8rem;
  display: grid;
  gap: 0.35rem;
}

.contact-details span {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.9rem;
}

.contact-details i {
  color: #ffdd66;
}

.contact-form {
  display: grid;
  gap: 0.75rem;
}

.contact-form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}

.contact-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  opacity: 0.8;
  margin-bottom: 0.15rem;
}

.contact-input,
.contact-textarea {
  width: 100%;
  border-radius: 0.5rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background-color: #05070b;
  color: #f5f5f5;
  padding: 0.55rem 0.65rem;
  font-size: 0.9rem;
}

.contact-textarea {
  min-height: 120px;
  resize: vertical;
}

.contact-input::placeholder,
.contact-textarea::placeholder {
  color: rgba(245, 245, 245, 0.55);
}

.contact-submit {
  margin-top: 0.4rem;
  border: none;
  cursor: pointer;
}

.contact-map {
  margin-top: 2rem;
}

.contact-map h3 {
  margin: 0 0 0.6rem;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.contact-map .map-embed iframe {
  height: 260px;
}

/* Site footer */
.site-footer {
  background-color: #05070b;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  margin-top: 1rem;
  padding-top: 2.5rem;
  color: #dcdcdc;
}

.footer-main {
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem;
  align-items: flex-start;
  padding-bottom: 2rem;
}

.footer-brand {
  flex: 1 1 220px;
}

.footer-logo {
  height: 52px;
  width: auto;
  margin-bottom: 0.6rem;
}

.footer-brand p {
  margin: 0;
  font-size: 0.9rem;
  opacity: 0.9;
  max-width: 260px;
}

.footer-columns {
  flex: 2 1 320px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.footer-column h4 {
  margin: 0 0 0.4rem;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  display: flex;
  align-items: center;
}

.footer-column p {
  margin: 0;
  font-size: 0.9rem;
  opacity: 0.9;
}

.footer-column p + p {
  margin-top: 0.25rem;
}

.footer-columns .footer-column h4::before {
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 0.95rem;
  color: #ffdd66;
  margin-right: 0.4rem;
}

.footer-columns .footer-column:nth-child(1) h4::before {
  /* Location icon */
  content: "\f3c5";
}

.footer-columns .footer-column:nth-child(2) h4::before {
  /* Hours icon */
  content: "\f017";
}

.footer-columns .footer-column:nth-child(3) h4::before {
  /* Contact icon (phone) */
  content: "\f095";
}

.footer-social {
  margin-top: 0.6rem;
  display: flex;
  gap: 0.7rem;
}

.footer-social a {
  font-size: 1.1rem;
  opacity: 0.9;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-block: 0.8rem;
  background-color: #05070b;
}

.footer-bottom-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.5rem;
  font-size: 0.8rem;
  opacity: 0.85;
}

/* Animations */
@keyframes testimonialFadeUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.testimonial:nth-child(2) {
  animation-delay: 0.12s;
}

.testimonial:nth-child(3) {
  animation-delay: 0.24s;
}

/* Responsive */
@media (max-width: 840px) {
  .hero {
    min-height: 60vh;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .why-grid {
    grid-template-columns: 1fr;
  }

  .about-grid {
    grid-template-columns: 1fr;
  }

  .about-footer-strip {
    grid-template-columns: 1fr;
  }

  .main-nav {
    gap: 1rem;
    font-size: 0.85rem;
  }
}

@media (max-width: 600px) {
  .site-header {
    padding-block: 0.5rem;
  }

  .header-inner {
    gap: 0.75rem;
  }

  .hero {
    padding-bottom: 3.5rem;
  }

  .hero-content {
    padding-bottom: 0;
  }

  .hero h1 {
    font-size: 1.7rem;
  }

  .hero h1 span {
    font-size: 0.85rem;
  }

  .about-hero {
    padding-top: 5rem;
  }

  /* So the food photos don’t feel oversized on phones */
  .about-gallery-main img {
    height: 240px;
  }

  .about-gallery-row img,
  .about-gallery-wide img {
    height: 140px;
  }

  .footer-columns {
    grid-template-columns: 1fr;
  }

  .footer-bottom-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .testimonial-list {
    display: flex;
    overflow-x: auto;
    gap: 0.85rem;
    padding-bottom: 0.2rem;
  }

  .testimonial {
    min-width: 260px;
  }
}
