:root {
  --smudge-red: #e42320;
  --smudge-red-dark: #c21918;
  --smudge-white: #ffffff;
  --smudge-white-worn: #f2f2f2;
  --muted: #777;
  --soft: #fff3ea;
  --dark: #101012;
  --card: #ffffff;
  --radius: 18px;
  --gradient: linear-gradient(90deg, var(--smudge-red), var(--smudge-red-dark));
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Bebas Neue";
  letter-spacing: 0.3px;
  color: var(--dark-text);
  background-color: var(--white);
}

section {
  overflow: hidden;
}

::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: #1a1a1a;
}

::-webkit-scrollbar-thumb {
  background: var(--smudge-red);
  border-radius: 10px;
  border: 2px solid #1a1a1a;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--smudge-red-dark);
}

* {
  scrollbar-width: thin;
  scrollbar-color: var(--smudge-red) #1a1a1a;
}

.navbar-section {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  background: #ed2126;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: background 0.35s ease, backdrop-filter 0.35s ease,
    padding 0.3s ease;
}

/* .navbar-section.scrolled {
  background: #000000;
  backdrop-filter: blur(0px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.12);
}

.navbar-section.scrolled .nav-link,
.navbar-section.scrolled .phone-number {
  color: var(--smudge-red);
}

.navbar-section.scrolled .btn-order-header {
  background: var(--smudge-red);
} */

.navbar .brand-logo img {
  height: 60px;
  width: auto;
  object-fit: contain;
  display: block;
  border-radius: 5px;
}

.navbar-brand {
  padding-top: 0;
  padding-bottom: 0;
  display: flex;
  align-items: center;
}

.nav-links {
  display: flex;
  gap: 2.3rem;
}

.nav-link {
  color: var(--card);
  font-weight: 600;
  font-size: 1.4rem;
  text-decoration: none;
  position: relative;
  transition: all 0.3s ease;
}

.nav-link:hover {
  color: var(--card);
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--dark);
  transition: width 0.3s ease;
}

.nav-link:hover::after {
  width: 100%;
}

.phone-number {
  color: var(--card);
  font-size: 1.4rem;
  font-weight: 600;
  white-space: nowrap;
}

.btn-order-header {
  background: black;
  color: var(--card);
  border: none;
  padding: 0.6rem 1rem;
  font-weight: 600;
  font-size: 1.4rem;
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: 4px;
}

.btn-order-header:hover {
  background: var(--smudge-red-dark);
  transform: translateY(-2px);
}

/* HERO */
.hero-section {
  overflow: hidden;
  background: #000000;
}

.hero-bg-video {
  min-width: 100%;
  max-height: 600px !important;
  object-fit: cover;
  filter: brightness(80%);
}

.hero-badge {
  background: var(--smudge-red);
  color: #ffffff;
  padding: 6px 16px;
  border-radius: 50px;
  display: inline-block;
  font-size: large;
  letter-spacing: 1px;
  font-weight: 600;
  margin-bottom: 18px;
  margin-top: 50px;
}

.hero-title {
  font-size: 3.2rem;
  font-weight: 800;
  line-height: 1.15;
  color: var(--card);
}

.hero-title span {
  color: var(--smudge-red);
}

.hero-desc {
  max-width: 480px;
  color: var(--muted);
  font-size: large;
}

.primary-btn {
  background: var(--smudge-red);
  color: #fff;
  padding: 12px 20px;
  border-radius: 12px;
  border: none;
  font-size: larger;
  font-weight: 600;
  transition: 0.3s;
}

.primary-btn:hover {
  background: var(--smudge-red-dark);
  transform: translateY(-2px);
}

.btn-order-hero {
  background: var(--smudge-red);
  color: var(--white);
  border: none;
  padding: 0.9rem 2.5rem;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: 4px;
  margin-top: 1rem;
}

.btn-order-hero:hover {
  background: var(--smudge-red);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(255, 165, 0, 0.3);
}

/* ---------------------- MENU SECTION ------------------------ */
.menu-section {
  padding: 80px 0;
  background: white;
}

.menu-title {
  font-size: 38px;
  font-weight: 700;
  margin-bottom: 50px;
  letter-spacing: 0.5px;
}

.menu-title span {
  color: var(--smudge-red);
}

.menu-item {
  position: relative;
  padding: 0px;
  transition: all 0.4s ease;
}

.menu-img {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
}

.menu-img img {
  width: 100%;
  display: block;
}

.menu-img-overlay {
  position: absolute;
  inset: 0;
  border-radius: 20px;
  background: linear-gradient(
    to top,
    rgba(220, 38, 38, 0.95) 0%,
    rgba(220, 38, 38, 0.65) 35%,
    rgba(0, 0, 0, 0.45) 65%,
    rgba(0, 0, 0, 0.65) 100%
  );

  opacity: 0;
  transition: opacity 0.35s ease;
}

.menu-overlay-content {
  position: absolute;
  bottom: 26px;
  width: 100%;
  text-align: center;

  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.35s ease, transform 0.35s ease;
  transition-delay: 0.15s; /* KEY: text comes AFTER overlay */
}

.menu-item:hover .menu-img-overlay {
  opacity: 1;
}

.menu-item:hover .menu-overlay-content {
  opacity: 1;
  transform: translateY(0);
}

.menu-overlay-content h4 {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: 1px;
  color: #fff;
  margin-bottom: 6px;
}

.menu-overlay-content p {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.9);
}

.ingredients-section {
  padding: 80px 0;
  background: #fff;
}

.ingredients-title {
  font-family: "Pacifico", cursive;
  font-size: 3.7rem;
  line-height: 1.15;
  text-align: center;
}

.ingredients-title span {
  display: block;
}

.ingredients-title .line-2 {
  transform: translateX(125px);
}

.ingredient-card {
  max-width: 260px;
  margin: auto;
}

.ingredient-card p {
  font-size: 14px;
  color: #333;
  line-height: 1.6;
  margin-top: 18px;
}

.badge-img {
  max-width: 260px;
  height: auto;
  display: block;
  margin: 0 auto;
}

.tilt-left {
  transform: rotate(-12deg) !important;
}

.tilt-right {
  transform: rotate(12deg) !important;
}

.story-btn {
  margin-top: 70px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--dark);
  color: #fff;
  padding: 12px 25px;
  font-size: 22px;
  font-weight: 600;
  border-radius: 5px;
  letter-spacing: 1px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.story-btn:hover {
  background: var(--smudge-red);
  color: var(--card);
  transform: translateY(-2px);
}

/* WHY CHOOSE SECTION */

.why-try-hero {
  position: relative;
  padding: 80px 20px 0px;
  background: radial-gradient(circle at center, #1a1a1a, #000);
  text-align: center;
  overflow: hidden;
}

/* Title */
.title-wrap h2 {
  color: #fff;
  font-size: 60px;
  font-weight: 800;
}

.title-wrap span {
  color: var(--smudge-red);
}

.title-wrap p {
  color: var(--smudge-red);
  font-size: 22px;
  letter-spacing: 2px;
}

.mega-burger {
  width: 100%;
  filter: drop-shadow(0 40px 80px rgba(0, 0, 0, 0.9));
}

.reason-tags {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 50px;
}

.reason-tags span {
  color: var(--smudge-red);
  font-size: 25px;
  font-weight: 600;
  background: rgba(255, 107, 0, 0.12);
  padding: 10px 18px;
  border-radius: 30px;
  white-space: nowrap;
}

/* TESTIMONIALS SECTION */
.testimonial-section {
  padding: 80px 0;
  text-align: center;
  overflow: hidden;
}

.testimonial-title {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 70px;
}

.testimonial-title span {
  color: var(--smudge-red);
}

.testimonial-slider {
  display: flex;
  gap: 40px;
  will-change: transform;
}

.testimonial-card {
  background: #fceed1;
  border-radius: 24px;
  padding: 30px 25px 25px;
  width: 320px;
  position: relative;
  flex-shrink: 0;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  text-align: left;
}

.testimonial-card img {
  position: absolute;
  top: -25px;
  left: -25px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 4px solid #fff;
  object-fit: cover;
}

.testimonial-card p {
  font-size: 17px;
  color: #555;
  line-height: 1.5;
  margin-bottom: 15px;
}

.testimonial-card h6 {
  font-size: 16px;
  font-weight: 600;
  color: #444;
  text-align: right;
}

.slider-wrapper {
  display: flex;
  width: 100%;
}

/* CTA SECTION */
.cta-section {
  background: linear-gradient(135deg, #ff6b00, #ff3d00);
  color: #fff;
  padding: 60px 20px;
  border-radius: 20px;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  top: -50px;
  right: -50px;
  z-index: 0;
  animation: float 6s ease-in-out infinite;
}

.cta-content {
  position: relative;
  z-index: 1;
}

.cta-content h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 15px;
}

.cta-content p {
  font-size: 1rem;
  margin-bottom: 25px;
  opacity: 0.9;
}

.cta-form .form-control {
  border-radius: 50px 0 0 50px;
  padding: 15px 20px;
  border: none;
  outline: none;
}

.cta-form .btn {
  border-radius: 0 50px 50px 0;
  padding: 15px 25px;
  border: none;
  background-color: #fff;
  color: #ff3d00;
  font-weight: bold;
  transition: 0.3s;
}

.cta-form .btn:hover {
  background-color: #ffe6e0;
  color: #ff6b00;
}

.contact-info {
  margin-top: 30px;
  font-size: 0.9rem;
}

.contact-info i {
  margin-right: 8px;
  color: #fff;
}

.offer-grid-section {
  background: #fceed1;
  padding: 80px 40px;
}

.offer-card {
  position: relative;
  height: 450px;
  border-radius: 14px;
  padding: 35px;
  overflow: hidden;
  display: flex;
}

.card-orange {
  background: url("../images/offer-png.png") center/cover no-repeat,
    var(--smudge-red);
  color: #fff;
}

.card-yellow {
  background: url("../images/offer-3-img.jpg") center/cover no-repeat;
  color: var(--dark);
}

.card-dark {
  background: url("../images/offer-4-png.png") center/cover no-repeat, #1b1b1b;
  color: #fff;
}

.card-blue {
  background: url("../images/offer-2-png.png") center/cover no-repeat;
  color: var(--card);
}

.offer-title-one {
  font-size: 90px;
  font-weight: 800;
  line-height: 1.1;
}

.offer-title-two {
  text-align: end;
  font-size: 40px;
  font-weight: 800;
  line-height: 1.1;
}

.offer-title-white {
  font-size: 36px;
  font-weight: 800;
  line-height: 1.1;
}

.offer-title-orange {
  color: var(--smudge-red);
  font-size: 60px;
  font-weight: 900;
}

.offer-white-sub {
  font-size: 48px;
  font-weight: 700;
}

.offer-desc {
  font-size: 40px;
  font-weight: 600;
}

.badge-small {
  font-size: 20px;
  font-weight: 700;
  color: var(--smudge-red);
}

.offer-img {
  position: absolute;
  bottom: 0;
  right: 0;
  height: 220px;
}

.offer-content,
.offer-content-white {
  z-index: 2;
  max-width: 55%;
}

/* FOOTER SECTION */
.footer-section {
  padding: 80px 0px 30px;
  background: #000000;
  overflow: hidden;
  color: #b9bccf;
}

.footer-section .brand-logo img {
  height: 80px;
  width: auto;
  object-fit: contain;
  display: block;
  border-radius: 5px;
  margin-bottom: 20px;
}

.footer-title {
  font-size: 3000px;
  font-weight: 700;
  letter-spacing: 2px;
  background: linear-gradient(to bottom, #fff, #888, #222);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.footer-text {
  font-size: 20px;
  line-height: 1.2;
  color: #b9bccf;
  text-align: justify;
  max-width: 310px;
}

.footer-heading {
  font-size: 20px;
  font-weight: 600;
  color: #ffffff;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: #c3c4d4;
  text-decoration: none;
  transition: 0.3s;
  font-size: 18px;
}

.footer-links a:hover {
  color: var(--smudge-red);
}

.foot-back {
  background: url("../images/foot-svg.svg") center/cover no-repeat, #000000;
}

.newsletter-box {
  background: white;
  border-radius: 50px;
  overflow: hidden;
  padding-left: 8px;
}

.newsletter-input {
  border: none;
  border-radius: 0;
  padding: 12px 15px;
  box-shadow: none !important;
}

.subscribe-btn {
  border: none;
  background: var(--smudge-red);
  color: rgb(0, 0, 0);
  padding: 12px 22px;
  font-weight: 600;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: 0.3s;
}

.subscribe-btn:hover {
  background: var(--smudge-red-dark);
}

.footer-divider {
  border-color: rgba(255, 255, 255, 0.323);
}

.footer-copy {
  color: #80829c;
  font-size: 18px;
}

.foot-url {
  text-decoration: none;
  color: white;
}

.foot-url:hover {
  color: var(--smudge-red);
}

.footer-social a {
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid #2b2b3d;
  border-radius: 50%;
  color: #c7c8d9;
  transition: 0.3s;
}

.footer-social a:hover {
  background: var(--smudge-red);
  color: var(--dark);
  border-color: var(--smudge-red-dark);
}

.footer-animated-images {
  position: relative;
  width: 100%;
  overflow: visible;
}

.scooter-wrapper {
  position: absolute;
  left: -350px;
  bottom: -20px;
  opacity: 0;
  transition: transform 3s ease-out, opacity 2s ease-out;
}

.footer-boy {
  width: 150px;
  z-index: 5;
}

.scooter-light {
  position: absolute;
  width: 110px;
  left: 118px;
  top: 37px;
  opacity: 0.7;
  z-index: 10;
}

.scooter-wrapper.show {
  opacity: 1;
  transform: translateX(900px);
}

/* --------------------ABOUT PAGE---------------------- */

/* ABOUT HERO SECTION */
.about-hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 450px;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.about-hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.about-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.45);
  z-index: 2;
}

.about-hero-content {
  position: relative;
  z-index: 3;
  color: #fff;
  padding: 0 20px;
}

.about-title {
  font-size: 8rem;
  font-weight: 700;
  letter-spacing: 1px;
  color: white;
}

.breadcrumb {
  background: transparent;
  margin-top: 10px;
}

.breadcrumb-item {
  font-size: 30px;
}

.breadcrumb-item a {
  color: #ffffffcc;
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumb-item a:hover {
  color: #fff;
}

.breadcrumb-item.active {
  color: var(--smudge-red);
}

.about-story-section {
  padding: 130px 0px 80px;
  background: #fceed1;
}

.story-image-wrapper {
  position: relative;
  width: 100%;
  max-width: 550px;
  margin: auto;
}

.bg-layer {
  position: absolute;
  border-radius: 15px;
  z-index: 1;
}

.layer-1 {
  width: 100%;
  height: 92%;
  background: #363636;
  top: -60px;
  left: -50px;
  z-index: 1;
}

.story-img {
  position: relative;
  border-radius: 15px;
  z-index: 3;
  width: 100%;
  object-fit: cover;
}

.story-subtitle {
  color: var(--smudge-red);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 30px;
}

.story-title {
  font-size: 3.5rem;
  font-weight: 800;
  color: #222;
  line-height: 1.2;
}

.story-description p {
  color: #666;
  font-size: 21px;
  max-width: 500px;
  text-align: justify;
}

/* ---------------------------------------------WHY CHOOSE SMUDGE------------------------------------------ */

.why-section {
  /* padding: 100px 0; */
  background: #000;
}

.why-title {
  font-size: 48px;
  font-weight: 800;
  letter-spacing: 2px;
  color: var(--smudge-red);
  margin-bottom: 40px;
}

.why-text {
  text-align: justify;
  font-size: 20px;
  line-height: 1.3;
  letter-spacing: 1px;
  color: var(--card);
}

/* -------------------------------------------MENU PAGE--------------------------------- */

.menu-hero {
  position: relative;
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.menu-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 2;
}

.filter-btn {
  padding: 8px 20px;
  background: #fff;
  border-radius: 30px;
  border: 2px solid #e8e8e8;
  cursor: pointer;
  font-weight: 600;
  font-size: 1.2rem;
  letter-spacing: 1px;
  transition: 0.3s;
}

.filter-btn.active,
.filter-btn:hover {
  background: var(--smudge-red);
  color: #fff;
  border-color: var(--smudge-red);
}

.menu-page-card.show {
  opacity: 1;
  transform: translateY(0);
}

.menu-page-card {
  background: #fff;
  border-radius: 18px;
  padding: 0px 40px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.menu-page-card:hover {
  transform: translateY(-6px);
  background: var(--gradient);
}

.menu-page-card:hover .menu-item-title {
  color: #fff;
  letter-spacing: 1px;
  transform: translateX(6px);
}

.menu-item-title {
  transition: all 0.3s ease;
}

.menu-content {
  max-width: 55%;
}

.menu-item-title {
  font-size: 50px;
  font-weight: 800;
  margin-bottom: 12px;
  color: var(--smudge-red);
}

.menu-item-desc {
  font-size: 18px;
  line-height: 1.7;
  color: #555;
}

.menu-image {
  width: 50%;
  text-align: right;
}

.menu-image img {
  max-width: 340px;
  width: 100%;
  filter: drop-shadow(0 20px 25px rgba(0, 0, 0, 0.25));
  transition: transform 0.4s ease;
}

.menu-page-card:hover .menu-image img {
  transform: scale(1.08) rotate(-2deg);
}

.menu-page-card.reverse {
  flex-direction: row-reverse;
}

.menu-page-card.reverse .menu-image {
  text-align: left;
}

.menu-page-card.reverse .menu-content {
  text-align: right;
}

/* ------------------------------------CONTACT SECTION------------------------------------ */

/* HERO SECTION */
.contact-hero-section {
  position: relative;
  height: 100vh;
  background: url("../images/contact-img.jpg") center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

.contact-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom right,
    rgba(0, 0, 0, 0.6),
    rgba(0, 0, 0, 0.4)
  );
  z-index: 1;
}

.hero-btn {
  background: #f08a22;
  padding: 12px 28px;
  font-size: 1.1rem;
  border-radius: 6px;
  font-weight: 600;
  color: #fff;
  transition: 0.3s;
}

.hero-btn:hover {
  background: #d97706;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(25px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.contact-section {
  padding: 60px 0;
  background: linear-gradient(to right, #fff8ed, #fffdf9);
}

.contact-form-box {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.contact-title {
  font-weight: 700;
  color: var(--smudge-red);
  font-size: 3rem;
  letter-spacing: 1px;
}

.section-subtext {
  color: #555;
  font-size: 14px;
}

.custom-input {
  border-radius: 6px;
  height: 45px;
  border: 1px solid #ddd;
  transition: all 0.3s ease;
}

.custom-input:focus {
  border-color: var(--smudge-red);
  box-shadow: 0 0 0 0.2rem rgba(240, 138, 34, 0.25);
}

textarea.custom-input {
  height: auto;
}

.send-btn {
  background: var(--smudge-red);
  color: #fff;
  font-size: 20px;
  letter-spacing: 1px;
  font-weight: 600;
  border-radius: 6px;
  padding: 10px;
  transition: 0.3s ease;
}

.send-btn:hover {
  background: var(--smudge-red-dark);
}

.info-card {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.info-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.icon {
  font-size: 30px;
  color: var(--smudge-red);
}

.info-title {
  font-weight: 700;
  font-size: 25px;
}

.form-label {
  font-size: 18px;
}

.info-text {
  font-size: 16px;
  color: #555;
}

.map-section {
  padding: 20px 0px 60px;
  background: linear-gradient(to right, #fff8ed, #fffdf9);
}

.modern-map-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  animation: slideIn 1s ease;
}

.map-header {
  position: absolute;
  top: 15px;
  left: 990px;
  background: var(--smudge-red);
  color: #ffffff;
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 600;
  z-index: 5;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.modern-map-card iframe {
  width: 100%;
  height: 420px;
  border: 0;
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ------------------------- RESPONSIVE CSS ------------------------ */

@media (max-width: 1199px) {
  .offer-grid-section {
    padding: 70px 30px;
  }

  .offer-card {
    height: 420px;
    padding: 30px;
  }

  .offer-title-one {
    font-size: 72px;
  }

  .offer-title-two {
    font-size: 34px;
  }

  .offer-title-white {
    font-size: 32px;
  }

  .offer-title-orange {
    font-size: 52px;
  }

  .offer-white-sub {
    font-size: 40px;
  }

  .offer-desc {
    font-size: 32px;
  }

  .badge-small {
    font-size: 18px;
  }

  .offer-img {
    height: 190px;
  }

  .offer-content,
  .offer-content-white {
    max-width: 60%;
  }

  .mega-burger {
    width: 900px;
  }

  .title-wrap h2 {
    font-size: 48px;
  }

  .title-wrap p {
    font-size: 20px;
  }

  /* ABOUT PAGE */

  .about-hero {
    height: 85vh;
  }

  .about-title {
    font-size: 6rem;
  }

  .breadcrumb-item {
    font-size: 24px;
  }

  .about-story-section {
    padding: 110px 0 70px;
  }

  .story-title {
    font-size: 3rem;
  }

  .story-subtitle {
    font-size: 26px;
  }

  .story-description p {
    font-size: 20px;
    max-width: 100%;
  }

  .layer-1 {
    top: -45px;
    left: -40px;
  }

  .why-title {
    font-size: 42px;
  }

  .why-text {
    font-size: 18px;
    line-height: 1.4;
  }

  .why-section .image img {
    height: 650px;
  }

  .menu-item-title {
    font-size: 40px;
  }
  .menu-item-desc {
    font-size: 16px;
  }
  .menu-content {
    max-width: 60%;
  }
  .menu-image img {
    max-width: 300px;
  }

  .contact-hero-section {
    height: 85vh;
  }

  .contact-title {
    font-size: 2.5rem;
  }

  .info-title {
    font-size: 22px;
  }

  .form-label {
    font-size: 16px;
  }

  .map-header {
    left: auto;
    right: 20px;
    font-size: 14px;
    padding: 6px 14px;
  }

  .modern-map-card iframe {
    height: 380px;
  }
}

@media (max-width: 991px) {
  .navbar {
    padding: 0.8rem 0;
  }

  .navbar-collapse {
    background: #ed2126;
    margin-top: 1rem;
    padding: 1.5rem 1rem;
    border-radius: 12px;
  }

  .navbar-content {
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    text-align: center;
  }

  .nav-links {
    flex-direction: column;
    gap: 1.2rem;
  }

  .nav-link {
    font-size: 1.3rem;
  }

  .nav-link::after {
    display: none;
  }

  .phone-number {
    font-size: 1.2rem;
  }

  .hero-section {
    padding-top: 90px;
  }

  .hero-title {
    font-size: 2.6rem;
  }

  .hero-desc {
    max-width: 100%;
    font-size: 1.05rem;
  }

  .hero-bg-video {
    width: 100%;
  }

  .hero-badge {
    margin-top: 20px;
    font-size: 0.9rem;
  }

  .menu-section {
    padding: 60px 0;
  }

  .menu-title {
    font-size: 32px;
  }

  .menu-section .d-flex.justify-content-between > .btn.primary-btn {
    display: none;
  }

  .offer-grid-section {
    padding: 60px 24px;
  }

  .offer-card {
    height: 360px;
    padding: 28px;
  }

  .offer-content,
  .offer-content-white {
    max-width: 70%;
  }

  .offer-title-one {
    font-size: 64px;
  }

  .offer-title-white {
    font-size: 30px;
  }

  .offer-title-orange {
    font-size: 48px;
  }

  .offer-white-sub {
    font-size: 34px;
  }

  .offer-desc {
    font-size: 26px;
  }

  .badge-small {
    font-size: 16px;
  }

  .offer-card img {
    max-width: 220px;
    height: auto;
  }

  .ingredients-section {
    padding: 60px 0;
  }

  .ingredients-title {
    font-size: 3rem;
  }

  .ingredients-title .line-2 {
    transform: translateX(60px);
  }

  .ingredient-card {
    display: flex;
    justify-content: center;
  }

  .badge-img {
    max-width: 500px;
  }

  .tilt-left,
  .tilt-right {
    transform: none !important;
  }

  .story-btn {
    font-size: 20px;
    margin-top: 50px;
  }

  .why-try-hero {
    padding: 70px 20px 10px;
  }

  .title-wrap h2 {
    font-size: 48px;
  }

  .title-wrap p {
    font-size: 22px;
    letter-spacing: 1.5px;
  }

  .mega-burger {
    max-width: 95%;
    width: 100%;
    filter: drop-shadow(0 35px 70px rgba(0, 0, 0, 0.88));
  }

  .reason-tags {
    gap: 14px;
  }

  .reason-tags span {
    font-size: 16px;
    padding: 10px 18px;
  }

  .testimonial-section {
    padding: 60px 0;
  }

  .testimonial-title {
    font-size: 34px;
    margin-bottom: 50px;
  }

  .testimonial-slider {
    gap: 28px;
  }

  .testimonial-card {
    width: 280px;
    padding: 26px 22px 22px;
  }

  .testimonial-card p {
    font-size: 16px;
  }

  .testimonial-card h6 {
    font-size: 15px;
  }

  .footer-section {
    padding: 60px 0 25px;
    text-align: center;
  }

  .footer-section .brand-logo img {
    margin: 0 auto 20px;
  }

  .footer-text {
    max-width: 100%;
    font-size: 18px;
    text-align: center;
  }

  .footer-heading {
    font-size: 18px;
    margin-top: 20px;
  }

  .footer-links {
    text-align: center;
  }

  .footer-links li {
    margin-bottom: 12px;
  }

  .footer-links a {
    font-size: 17px;
  }

  .newsletter-box {
    max-width: 360px;
    margin: 0 auto;
  }

  .subscribe-btn {
    margin: 0 auto;
  }

  .footer-copy {
    font-size: 16px;
    text-align: center;
  }

  .footer-social {
    justify-content: center;
  }

  .footer-animated-images {
    display: none;
  }

  /* ABOUT PAGE */

  .about-hero {
    height: 75vh;
  }

  .about-title {
    font-size: 5rem;
  }

  .breadcrumb-item {
    font-size: 22px;
  }

  .about-story-section {
    padding: 90px 0 60px;
  }

  .story-image-wrapper {
    max-width: 480px;
  }

  .layer-1 {
    top: -35px;
    left: -30px;
    height: 95%;
  }

  .story-subtitle {
    font-size: 24px;
    text-align: center;
    display: block;
  }

  .story-title {
    font-size: 2.6rem;
    text-align: center;
  }

  .story-description p {
    font-size: 19px;
    text-align: center;
    margin: 0 auto;
  }

  .why-section .row {
    flex-direction: column-reverse;
    text-align: center;
  }

  .why-title {
    font-size: 38px;
    margin-bottom: 25px;
  }

  .why-text {
    font-size: 17px;
    line-height: 1.5;
    max-width: 90%;
    margin: 0 auto 30px;
  }

  .why-section .image img {
    height: 500px;
    width: auto;
  }

  .menu-hero {
    height: 75vh;
  }

  .menu-page-card {
    flex-direction: column;
    text-align: center;
    padding: 30px 20px;
  }
  .menu-page-card.reverse {
    flex-direction: column;
  }
  .menu-content,
  .menu-page-card.reverse .menu-content {
    max-width: 100%;
    text-align: center;
    margin-bottom: 20px;
  }
  .menu-image {
    width: 100%;
    text-align: center;
  }
  .menu-image img {
    max-width: 250px;
  }
  .filter-btn {
    font-size: 1rem;
    padding: 6px 16px;
  }
  .contact-hero-section {
    height: 75vh;
  }

  .contact-section {
    padding: 50px 0;
  }

  .contact-title {
    font-size: 2.2rem;
    text-align: center;
  }

  .contact-form-box {
    margin-bottom: 20px;
  }

  .info-card {
    text-align: center;
  }

  .icon {
    font-size: 26px;
  }

  .info-title {
    font-size: 20px;
  }

  .info-text {
    font-size: 15px;
  }

  .map-header {
    top: 10px;
    right: 15px;
  }

  .modern-map-card iframe {
    height: 340px;
  }
}

@media (max-width: 576px) {
  .navbar .brand-logo img {
    height: 48px;
  }

  .navbar-toggler img {
    width: 32px;
  }

  .nav-link {
    font-size: 1.2rem;
  }

  .phone-number {
    font-size: 1.1rem;
  }

  .hero-section {
    padding-top: 80px;
  }

  .hero-title {
    font-size: 2.1rem;
    line-height: 1.25;
  }

  .hero-desc {
    font-size: 1rem;
    margin: 0 auto;
  }

  .hero-badge {
    font-size: 0.8rem;
    padding: 5px 14px;
  }

  .menu-section {
    padding: 50px 0;
  }

  .menu-title {
    font-size: 28px;
    text-align: center;
    margin-bottom: 24px;
  }

  .menu-section .d-flex.justify-content-between.align-items-center {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }

  .menu-img {
    border-radius: 18px;
  }

  .menu-section .d-flex.justify-content-between > .btn.primary-btn {
    display: none;
  }

  .offer-grid-section {
    padding: 40px 16px;
  }

  .offer-card {
    height: auto;
    min-height: 280px;
    padding: 22px;
    border-radius: 16px;
  }

  .offer-content,
  .offer-content-white {
    max-width: 100%;
  }

  .offer-title-one {
    font-size: 44px;
  }

  .offer-title-white {
    font-size: 24px;
  }

  .offer-title-orange {
    font-size: 36px;
  }

  .offer-white-sub {
    font-size: 24px;
  }

  .offer-desc {
    line-height: 1.3;
  }

  .badge-small {
    font-size: 14px;
  }

  .offer-card img {
    max-width: 180px;
    height: auto;
  }

  .ingredients-section {
    padding: 50px 0;
  }

  .ingredients-title {
    font-size: 2.4rem;
    line-height: 1.2;
  }

  .ingredients-title .line-2 {
    transform: none;
  }

  .ingredient-card {
    /* max-width: 200px; */
    display: flex;
    justify-content: center;
  }

  .badge-img {
    max-width: 400px;
  }

  .tilt-left,
  .tilt-right {
    transform: none !important;
  }

  .story-btn {
    font-size: 18px;
    padding: 10px 22px;
    margin-top: 40px;
  }

  .why-try-hero {
    padding: 60px 0 40px;
    text-align: center;
  }

  .title-wrap h2 {
    font-size: 34px;
  }

  .title-wrap p {
    font-size: 16px;
    letter-spacing: 1px;
  }

  .mega-burger {
    width: 100%;
    max-width: 400px;
    margin: auto;
    display: block;
  }

  .reason-tags {
    gap: 10px;
    margin-top: 30px;
  }

  .reason-tags span {
    font-size: 14px;
    padding: 8px 14px;
  }

  .why-try-hero {
    align-items: center;
  }

  .testimonial-section {
    padding: 50px 0;
  }

  .testimonial-title {
    font-size: 28px;
    margin-bottom: 40px;
  }

  .testimonial-slider {
    gap: 20px;
  }

  .testimonial-card {
    width: 260px;
    scroll-snap-align: start;
  }

  .testimonial-card img {
    top: -22px;
    left: -22px;
    width: 54px;
    height: 54px;
  }

  .testimonial-card p {
    font-size: 15px;
    line-height: 1.45;
  }

  .testimonial-card h6 {
    font-size: 14px;
  }

  .footer-section {
    padding: 50px 15px 20px;
  }

  .footer-text {
    font-size: 16px;
    line-height: 1.4;
    text-align: center;
  }

  .footer-heading {
    font-size: 17px;
  }

  .footer-links a {
    font-size: 16px;
  }

  .newsletter-box {
    padding-left: 0;
  }

  .newsletter-input {
    padding: 10px 14px;
  }

  .subscribe-btn {
    justify-content: center;
  }

  .footer-copy {
    margin-bottom: 12px;
  }

  .footer-social a {
    width: 36px;
    height: 36px;
    font-size: 15px;
  }

  /* ABOUT PAGE */

  .about-hero {
    height: 55vh;
    min-height: 320px;
  }

  .about-title {
    font-size: 2.8rem;
    letter-spacing: 0.5px;
  }

  .breadcrumb-item {
    font-size: 16px;
  }

  .about-story-section {
    padding: 60px 15px 40px;
  }

  .story-image-wrapper {
    max-width: 100%;
  }

  .layer-1 {
    display: none;
  }

  .story-subtitle {
    font-size: 18px;
    margin-bottom: 10px;
  }

  .story-title {
    font-size: 1.9rem;
    line-height: 1.3;
  }

  .story-description p {
    font-size: 16px;
    text-align: justify;
  }

  .why-title {
    font-size: 26px;
    margin-top: 20px;
  }

  .why-text {
    font-size: 15px;
    line-height: 1.5;
    text-align: justify;
  }

  .why-section .image img {
    height: auto;
    max-width: 100%;
  }

  .menu-hero {
    height: 55vh;
    min-height: 320px;
  }

  .menu-page-card,
  .menu-page-card.reverse {
    flex-direction: column;
    text-align: center;
    padding: 20px 10px;
    margin: 0 15px 0px;
  }

  .menu-page-card .menu-image,
  .menu-page-card.reverse .menu-image {
    order: -1;
    width: 100%;
    text-align: center;
    margin-bottom: 15px;
  }

  .menu-page-card .menu-content,
  .menu-page-card.reverse .menu-content {
    width: 100%;
    max-width: 100%;
    text-align: center;
  }

  .menu-image img {
    max-width: 200px;
    width: 80%;
    height: auto;
    transform: none;
    filter: drop-shadow(0 10px 15px rgba(0, 0, 0, 0.15));
  }

  .menu-item-title {
    font-size: 24px;
    margin-bottom: 10px;
  }

  .menu-item-desc {
    font-size: 14px;
    line-height: 1.5;
  }

  .contact-hero-section {
    height: 60vh;
    padding: 0 15px;
  }

  .contact-section {
    padding: 40px 15px;
  }

  .contact-title {
    font-size: 1.8rem;
  }

  .form-label {
    font-size: 15px;
  }

  .custom-input {
    height: 42px;
  }

  .send-btn {
    font-size: 16px;
    padding: 10px;
  }

  .info-card {
    padding: 20px;
  }

  .info-title {
    font-size: 18px;
  }

  .info-text {
    font-size: 14px;
  }

  .map-section {
    padding: 20px 15px 40px;
  }

  .map-header {
    font-size: 13px;
    padding: 6px 12px;
  }

  .modern-map-card iframe {
    height: 280px;
  }
}

@media (hover: hover) and (pointer: fine) {
  .menu-img-overlay {
    opacity: 0;
  }

  .menu-overlay-content {
    opacity: 0;
    transform: translateY(14px);
  }

  .menu-item:hover .menu-img-overlay {
    opacity: 1;
  }

  .menu-item:hover .menu-overlay-content {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (hover: none) {
  .menu-img-overlay,
  .menu-overlay-content {
    display: none !important;
  }
}
