:root {
  --ff-bg: #050505;
  --ff-surface: #111111;
  --ff-text: #ffffff;
  --ff-muted: #f1f1f1;
  --ff-primary: #ff7a00;
  --ff-primary-hover: #ff931e;
  --ff-yellow: #fff200;
  --ff-red: #ef2b1f;
  --ff-black: #000000;
  --ff-white: #ffffff;
  --ff-radius-sm: 12px;
  --ff-radius-md: 18px;
  --ff-radius-lg: 24px;
  --ff-radius-pill: 999px;
  --ff-container: 1320px;
  --ff-navbar-height: 96px;
  --ff-shadow-card: 0 22px 60px rgba(0, 0, 0, 0.35);
  --ff-transition: 0.2s ease;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--ff-bg);
  color: var(--ff-text);
}

main,
main.container {
  width: 100%;
  max-width: 100%;
  padding: 0;
  margin: 0 !important;
}

.fastfood-landing {
  background: radial-gradient(circle at 15% 10%, rgba(255, 122, 0, 0.14), transparent 28%), radial-gradient(circle at 90% 35%, rgba(239, 43, 31, 0.12), transparent 30%), var(--ff-bg);
  color: var(--ff-text);
  overflow: hidden;
}

.ff-section, .ff-trust,
.ff-promo-grid,
.ff-offers,
.ff-about,
.ff-staff,
.ff-location {
  max-width: var(--ff-container);
  margin: 0 auto;
  padding: 72px 24px;
}

.ff-navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  background: rgba(5, 5, 5, 0.88);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.ff-navbar-container {
  max-width: var(--ff-container);
  margin: 0 auto;
  padding: 14px 24px;
}

.ff-navbar-brand {
  color: var(--ff-white);
  font-weight: 950;
  font-size: 24px;
  letter-spacing: -0.5px;
  text-decoration: none;
}
.ff-navbar-brand:hover {
  color: var(--ff-primary);
}

.ff-navbar-links {
  align-items: center;
  gap: 10px;
}

.ff-navbar .nav-link {
  color: var(--ff-muted);
  font-weight: 700;
  padding: 10px 14px;
}
.ff-navbar .nav-link:hover {
  color: var(--ff-primary);
}

.ff-navbar-cta {
  background: var(--ff-primary);
  color: var(--ff-white) !important;
  border-radius: var(--ff-radius-pill);
  padding: 10px 22px !important;
}
.ff-navbar-cta:hover {
  background: var(--ff-primary-hover);
}

.ff-navbar-toggler {
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.ff-hero {
  max-width: 100%;
  min-height: 100vh;
  width: 100%;
  background-image: linear-gradient(rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.65)), url("/static/img/smash_burgher.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: calc(var(--ff-navbar-height) + 90px) 24px 90px;
}

.ff-hero-content {
  max-width: 980px;
  width: 100%;
  margin: 0 auto;
}

.ff-hero-title {
  font-size: clamp(42px, 6vw, 82px);
  font-weight: 950;
  line-height: 1.05;
  letter-spacing: -1.5px;
  margin-bottom: 0;
  text-align: center;
}

.ff-hero-subtitle {
  max-width: 760px;
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.6;
  color: var(--ff-muted);
  margin: 28px auto;
  font-weight: 600;
  text-align: center;
}

.ff-benefits {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
  margin: 32px 0;
}
.ff-benefits div {
  text-align: center;
}
.ff-benefits span {
  width: 78px;
  height: 78px;
  display: grid;
  place-items: center;
  background: var(--ff-white);
  color: var(--ff-black);
  border-radius: 50%;
  font-size: 34px;
  margin: 0 auto 8px;
  box-shadow: var(--ff-shadow-card);
}
.ff-benefits strong {
  font-size: 20px;
}

.ff-btn-primary,
.ff-promo-card a,
.ff-offer-card a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--ff-primary);
  color: var(--ff-white);
  text-decoration: none;
  border-radius: var(--ff-radius-sm);
  padding: 16px 42px;
  font-weight: 850;
  font-size: 20px;
  transition: var(--ff-transition);
  box-shadow: 0 14px 34px rgba(255, 122, 0, 0.26);
}
.ff-btn-primary:hover,
.ff-promo-card a:hover,
.ff-offer-card a:hover {
  background: var(--ff-primary-hover);
  color: var(--ff-white);
  transform: translateY(-2px);
}

.ff-promo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 34px;
  padding-top: 30px;
}

.ff-promo-card {
  min-height: 220px;
  border-radius: var(--ff-radius-md);
  padding: 28px;
  position: relative;
  overflow: hidden;
  color: var(--ff-black);
  box-shadow: var(--ff-shadow-card);
}
.ff-promo-card h3 {
  font-size: clamp(28px, 3vw, 34px);
  font-weight: 950;
  margin-bottom: 8px;
}
.ff-promo-card p {
  font-size: 22px;
  font-weight: 850;
}
.ff-promo-card img {
  position: absolute;
  right: -30px;
  bottom: -35px;
  max-width: 210px;
  pointer-events: none;
}
.ff-promo-card a {
  background: var(--ff-black);
  color: var(--ff-white);
  padding: 12px 34px;
  font-size: 16px;
  border-radius: var(--ff-radius-pill);
  margin-top: 20px;
  box-shadow: none;
}

.yellow {
  background: var(--ff-yellow);
  color: var(--ff-black);
}

.orange {
  background: var(--ff-primary);
  color: var(--ff-black);
}

.red {
  background: var(--ff-red);
  color: var(--ff-white);
}

.ff-offers {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.ff-offer-card {
  min-height: 360px;
  border-radius: var(--ff-radius-lg);
  padding: 42px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--ff-shadow-card);
}
.ff-offer-card span {
  display: block;
  font-size: 28px;
  font-weight: 950;
  margin-bottom: 18px;
}
.ff-offer-card h2 {
  font-size: clamp(34px, 4vw, 54px);
  font-weight: 950;
  margin-bottom: 28px;
}
.ff-offer-card p {
  font-size: clamp(19px, 2vw, 24px);
  line-height: 1.5;
  font-weight: 700;
  max-width: 560px;
}
.ff-offer-card img {
  position: absolute;
  right: 24px;
  bottom: 10px;
  max-width: 280px;
  pointer-events: none;
}

.ff-section-label {
  display: inline-block;
  color: var(--ff-yellow);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 14px;
}

.ff-about h2,
.ff-staff h2,
.ff-location h2 {
  font-size: clamp(34px, 4vw, 58px);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 22px;
}

.ff-about p,
.ff-staff p,
.ff-location p {
  color: #e8e8e8;
  font-size: 18px;
  line-height: 1.7;
}

.ff-about-img {
  width: 100%;
  border-radius: 32px;
  -o-object-fit: cover;
     object-fit: cover;
  min-height: 420px;
  box-shadow: var(--ff-shadow-card);
}

.ff-about-highlights {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 32px;
}
.ff-about-highlights div {
  background: var(--ff-surface);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  padding: 22px;
}
.ff-about-highlights strong,
.ff-about-highlights span {
  display: block;
}
.ff-about-highlights strong {
  color: var(--ff-white);
  font-size: 20px;
  margin-bottom: 8px;
}
.ff-about-highlights span {
  color: #cfcfcf;
}

.ff-section-heading {
  max-width: 760px;
  margin: 0 auto 48px;
  text-align: center;
}

.ff-staff-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.ff-staff-card {
  background: var(--ff-surface);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 32px;
  padding: 18px;
  text-align: center;
  box-shadow: var(--ff-shadow-card);
}
.ff-staff-card img {
  width: 100%;
  height: 340px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 24px;
  margin-bottom: 22px;
}
.ff-staff-card h3 {
  font-size: 24px;
  font-weight: 900;
  margin-bottom: 6px;
}
.ff-staff-card p {
  color: var(--ff-yellow);
  font-weight: 700;
  margin: 0;
}

.ff-location-info {
  display: grid;
  gap: 16px;
  margin: 32px 0;
}
.ff-location-info div {
  background: var(--ff-surface);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 18px;
}
.ff-location-info strong,
.ff-location-info span {
  display: block;
}
.ff-location-info strong {
  color: var(--ff-white);
  margin-bottom: 4px;
}
.ff-location-info span {
  color: #d8d8d8;
}

.ff-map-wrapper {
  overflow: hidden;
  border-radius: 32px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: var(--ff-shadow-card);
}

.ff-trust {
  padding-top: 40px;
}
.ff-trust h2 {
  font-size: clamp(40px, 5vw, 72px);
  font-weight: 950;
  line-height: 1.12;
}
.ff-trust p {
  font-size: clamp(19px, 2vw, 24px);
  line-height: 1.5;
  font-weight: 600;
}

.ff-trust-img {
  width: 100%;
  border-radius: var(--ff-radius-lg);
  box-shadow: var(--ff-shadow-card);
}

.ff-line {
  width: 260px;
  height: 5px;
  background: var(--ff-yellow);
  margin: 28px 0;
}

.ff-check-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px 50px;
  margin: 34px 0;
  font-size: 28px;
  font-weight: 850;
}

.ff-footer {
  background: var(--ff-bg);
  color: var(--ff-white);
  padding: 56px 24px 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.ff-footer-inner {
  max-width: var(--ff-container);
  margin: 0 auto;
  text-align: center;
}

.ff-footer-brand {
  font-size: 30px;
  font-weight: 950;
  margin-bottom: 12px;
}

.ff-footer-text {
  color: #d8d8d8;
  font-size: 17px;
  margin-bottom: 26px;
}

.ff-footer-links,
.ff-footer-social {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 18px;
  margin-bottom: 26px;
}

.ff-footer-links a {
  color: var(--ff-muted);
  text-decoration: none;
  font-weight: 700;
}
.ff-footer-links a:hover {
  color: var(--ff-primary);
}

.ff-footer-social a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--ff-surface);
  color: var(--ff-white);
  text-decoration: none;
  font-size: 20px;
}
.ff-footer-social a:hover {
  background: var(--ff-primary);
}

.ff-footer-copy {
  color: #aaa;
  font-size: 14px;
  margin-bottom: 8px;
}

.ff-footer-made-by {
  color: #aaa;
  font-size: 14px;
}
.ff-footer-made-by a {
  color: var(--ff-primary);
  font-weight: 800;
  text-decoration: none;
}

@media (max-width: 991px) {
  :root {
    --ff-navbar-height: 104px;
  }
  .ff-navbar-container {
    padding: 12px 18px;
  }
  .ff-navbar-brand {
    font-size: 24px;
  }
  .ff-navbar-links {
    align-items: flex-start;
    padding-top: 18px;
  }
  .ff-navbar-cta {
    margin-top: 8px;
  }
  .ff-hero {
    min-height: 100vh;
    padding: calc(var(--ff-navbar-height) + 48px) 18px 56px;
  }
  .ff-promo-grid,
  .ff-offers,
  .ff-check-grid,
  .ff-staff-grid,
  .ff-about-highlights {
    grid-template-columns: 1fr;
  }
  .ff-trust,
  .ff-promo-grid,
  .ff-offers,
  .ff-about,
  .ff-staff,
  .ff-location {
    padding: 48px 18px;
  }
  .ff-benefits {
    gap: 16px;
  }
  .ff-benefits span {
    width: 72px;
    height: 72px;
    font-size: 32px;
  }
  .ff-benefits strong {
    font-size: 18px;
  }
  .ff-check-grid {
    font-size: 22px;
  }
  .ff-offer-card img,
  .ff-promo-card img {
    opacity: 0.28;
  }
  .ff-staff-card img {
    height: 280px;
  }
}
@media (max-width: 576px) {
  .ff-hero-title {
    font-size: clamp(38px, 12vw, 58px);
  }
  .ff-hero-subtitle {
    font-size: 18px;
  }
  .ff-btn-primary {
    width: 100%;
    max-width: 420px;
  }
  .ff-benefits {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
}/*# sourceMappingURL=main.css.map */