
 * {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

@font-face {
  font-family: "Fontspring light";
  src: url("../fonts/Fontspring-DEMO-magazinegrotesque-regular.woff2")
    format("woff2");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Fontspring bold";
  src: url("../fonts/Fontspring-DEMO-magazinegrotesque-heavy.woff2") format("woff2");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Fontspring semibold";
  src: url("../fonts/Fontspring-DEMO-magazinegrotesque-bold.woff2") format("woff2");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Fontspring Grotesque";
  src: url("../fonts/Fontspring-DEMO-magazinegrotesque-semibold.woff2")
      format("woff2"),
    url("/assets/fonts/Fontspring-DEMO-magazinegrotesque-semibold.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Growly Grin";
  src: url("../fonts/Growly-grin.woff2") format("woff2");
  font-weight: normal;
  font-style: normal;
    font-display: swap;
}

html {
  display: block;
  scroll-behavior: smooth;
}

body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: white;
  font-family: "Fontspring light";
  background-color: var(--primary-white);

  --primary-white: #f0f0f0;
  --primary-blue: #194c57;
  --secondary-blue: #86d1d1;
  --primary-aqua: #2abca5;
  --primary-red: #ed2a47;
  --primary-yellow: #eae956;
  --light-gray: #aeaeae;
  --dark-grey: #1f1f1f;

  --text-shadow-blue: 0px 4px 0px #194c57;
  --text-shadow-secondary-blue: 0px 4px 0px #86d1d1;
  --text-shadow-red: 0px 4px 0px #ed2a47;
  --text-shadow-white: 0px 4px 0px white;
  --text-shadow-aqua: 0px 4px 0px #2abca5;
  --text-shadow-yellow: 0px 4px 0px #eae956;
}


.hero-slider {
  position: relative;
  overflow: hidden;
  width: 100%;
}

.hero-slider-track {
  display: flex;
  transition: transform 0.6s ease-in-out;
  height: 100%;
  align-items: center;
}

.hero-slide {
  flex: 0 0 100%;
  height: 100%;
  position: relative;
}

.slide-full {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Arrows */
.arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 2.5rem;
  color: white;
  background: rgba(0,0,0,0.3);
  border: none;
  padding: 0.5rem 1rem;
  cursor: pointer;
  z-index: 10;
  border-radius: 5px;
}

.arrow:hover {
  background: rgba(0,0,0,0.3);
}

.left-arrow { left: 1rem; }
.right-arrow { right: 1rem; }


/* Modal background */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7); /* Dark overlay */
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
  z-index: 9999;
}

/* Show modal */
.modal.show {
  opacity: 1;
  pointer-events: auto;
}

/* Image content */
.modal-content img {
  height: 70vh;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

@media screen and (max-width: 420px) {
  .modal-content img {
    height: 50vh;
  }
}

/* Optional: slight zoom on hover */
.modal-content img:hover {
  transform: scale(1.02);
}


#navbar-main-container {
  background-color: var(--primary-blue);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 60px;
}

#navbar-main-container.home-nav {
  position: relative;
  top: -200px; /* Initially off-screen */
  animation: slideDown 1s forwards ease-out;
  animation-delay: 0.3s;
}

@keyframes slideDown {
  from {
    top: -100px;
  }
  to {
    top: 0;
  }
}

#logo img {
  height: 80px;
  width: auto;
}

a {
  text-decoration: none;
  cursor: pointer;
  color: inherit;
}

p {
  margin: 20px 0;
  font-size: 18px;
}


label {
  color: var(--primary-blue);
  font-size: 20px;
}

input {
  border: none;
  background-color: transparent;
  font-family: "Inter";
  border-bottom: 1px solid var(--primary-blue);
  width: 100%;
  color: var(--primary-blue);
  font-size: 16px;
  padding: 10px;
}

input:focus {
  outline: none;
}

input::placeholder {
  font-family: "Inter";
  color: var(--primary-blue);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.form-header {
  color: var(--primary-blue);
  text-transform: uppercase;
  margin-top: 50px;
}

.button-row {
  display: flex;
  gap: 10px;
}

.form-row {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  margin: 20px 0;
}

#radio-container {
  width: 75%;
}

.form-row.radio {
  gap: 80px;
  margin-top: 0;
  width: 100%;
}

.page-intro {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin: 40px 150px;
}

.page-intro p {
	font-size: 18px;
}

.subcategory-header {
  width: 100%;
  font-size: 40px;
  font-family: "Fontspring bold";
  text-transform: uppercase;
  text-align: left;
  flex-basis: 100%; /* Ensure it behaves as a block-level element */
}

.form-row .form-header {
  margin-top: 0;
}

input[type="checkbox"],
input[type="radio"] {
  width: 20px;
  height: auto;
  justify-content: center;
  accent-color: var(--primary-blue);
  cursor: pointer;
}

.radio-column .form-row {
  margin: 15px 0;
  justify-content: flex-start;
}

.radio-row {
  justify-content: flex-start;
  gap: 60px;
}

button {
  font-family: "Growly Grin";
  text-transform: uppercase;
  font-size: 22px;
  border: none;
  color: var(--primary-blue);
  cursor: pointer;
  padding: 5px 10px;
  transition: color 0.2s, background-color 0.2s;
  background-color: white;
}

button:hover {
  color: var(--primary-white);
  background-color: var(--primary-blue);
}

button.red-text:hover {
  background-color: var(--primary-red);
}

button.aqua-text:hover {
  background-color: var(--primary-aqua);
}

button.secondary-blue-text:hover {
  background-color: var(--secondary-blue);
}

button.yellow-text:hover {
  background-color: var(--primary-yellow);
}

.navbar-links {
  display: flex;
  gap: 40px;
  justify-content: space-between;
  align-items: center;
}

.navbar-links a {
  font-family: "Fontspring bold";
  text-transform: uppercase;
  font-weight: 500;
  transition: text-shadow 0.2s;
}

.navbar-links a:not(.red-text):hover {
  text-shadow: var(--text-shadow-red);
}

.primary-header {
  font-size: 110px;
  text-transform: uppercase;
  font-family: "Fontspring bold";
}

.secondary-blue-background {
  background-color: var(--secondary-blue);
}

.blue-background {
  background-color: var(--primary-blue);
}

.red-background {
  background-color: var(--primary-red);
}

.aqua-background {
  background-color: var(--primary-aqua);
}

.yellow-background {
  background-color: var(--primary-yellow);
}

.blue-text {
  color: var(--primary-blue);
}

.secondary-blue-text {
  color: var(--secondary-blue);
}

.red-text {
  color: var(--primary-red);
}

.aqua-text {
  color: var(--primary-aqua);
}

.yellow-text {
  color: var(--primary-yellow);
}
.black-text {
  color: var(--dark-grey);
}

.blue-shadow {
  text-shadow: var(--text-shadow-blue);
}

.secondary-blue-shadow {
  text-shadow: var(--text-shadow-secondary-blue);
}

.aqua-shadow {
  text-shadow: var(--text-shadow-aqua);
}

.white-shadow {
  text-shadow: var(--text-shadow-white);
}

.red-shadow {
  text-shadow: var(--text-shadow-red);
}

.yellow-shadow {
  text-shadow: var(--text-shadow-yellow);
}

.secondary-header {
  font-size: 56px;
  line-height: 74.63px;
  margin: 20px 0;
  letter-spacing: -1px;
  font-family: "Fontspring bold";
  text-transform: uppercase;
}

.primary-hero {
  display: flex;
  flex-direction: column;
  line-height: 133px;
  justify-content: center;
  align-items: center;
  background-image: url("../images/hero-left.png");
  background-position-x: left;
  background-repeat: no-repeat;
  background-color: var(--primary-blue);
  letter-spacing: -5px;
  padding: 50px 0;
  padding-top: 70px;
}

.primary-hero img {
  height: 350px;
  margin: -4% 0;
  opacity: 0;
  transform: scale(0.8);
  animation: fadeInScale 1s forwards ease-out;
  animation-delay: 0.5s;
  z-index: 3;
}

.primary-hero .pepper {
  position: relative;
  max-height: 10vh;
  width: auto;
  z-index: 1;
  user-select: none;
}

.primary-hero .primary-header {
  opacity: 0;
  transform: translateY(20px);
  animation: slideUpFadeIn 1s forwards ease-out;
  font-size: 90px;
  line-height: 80px;
  text-align: center;
  z-index: 2;
}
.sub-text {
  font-family: 'Fontspring semibold';
  color: #aeaeae;
  font-weight: 400;
  font-size: 16px;
}

.primary-header.red-shadow {
  animation-delay: 1.5s;
}

.primary-header.aqua-shadow {
  animation-delay: 2s;
}

.primary-header.yellow-shadow {
  animation-delay: 2.5s;
}

/* Keyframes */
@keyframes fadeInScale {
  0% {
    opacity: 0;
    transform: scale(0.8);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes slideUpFadeIn {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.slider-bar {
  padding: 15px 0;
  overflow: hidden;
  white-space: nowrap;
  font-family: "Fontspring Grotesque";
}

.slider-bar p {
  display: inline-block;
  margin: 0 20px;
  font-size: 18px;
}

.slider-bar .content {
  display: inline-block;
  animation: scrollText 35s linear infinite; /* Smooth scrolling effect */
}

@keyframes scrollText {
  from {
    transform: translateX(0%); /* Start off-screen to the right */
  }
  to {
    transform: translateX(-100%); /* Move off-screen to the left */
  }
}

.secondary-hero {
  display: flex;
}
.secondary-hero h2 {
	font-size: 18px;
}

.slider {
	width: 80%;
	min-height: 350px;
	overflow: hidden;
	position: relative;
	background-size: cover;
	display: flex;
	align-items: center;
	justify-content: center;
	background-position: center;
	background-repeat: no-repeat;
	position: relative;
	transition: opacity .5s ease-in;
}
slider::after {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(0, 0, 0, 0);
      opacity: 0;
      transition: opacity 0.8s ease-in-out;
    }

 .slider.fade-out {
      opacity: 0;
    }

    .slider.fade-in {
      opacity: 1;
    }

    .slider-content {
      z-index: 1;
      text-align: center;
    }

    .slider-content h2 {
      font-size: 2.5rem;
    }

    .slider-content p {
      font-size: 1rem;
    }

#order-image {
	width: 50%;
}


.secondary-hero .hero-content {
  background-image: url("../images/hero-left.png");
  background-position-x: left;
  background-repeat: no-repeat;
  justify-content: center;
}

.secondary-hero img {
  width: 30%;
  max-height: 60vh;
  object-fit: cover;
}

.secondary-hero .oshawa {
  height: 500px;
}

.hero-content {
  display: flex;
  flex-direction: column;
  padding: 30px 50px;
  gap: 20px;
}


#franchising-img {
	width: 40%;
}

.hero-content * {
	margin: 0;
}

.hero-content button,
.contact-form button {
  align-self: flex-start;
  padding: 5px 40px;
  margin-top: 10px;
}

.wave-container {
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden; /* Hide overflow of the scrolling wave */
  margin-bottom: -10%;
}

.wave-wrapper {
  display: flex; /* Stack the waves horizontally */
  width: 100%;
  animation: scroll-wave 10s linear infinite;
}

@keyframes scroll-wave {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%); /* Move one wave's width to the left */
  }
}

.wave-wrapper img {
  margin-bottom: -3px;
  flex-shrink: 0; /* Prevent the SVGs from shrinking */
  width: 200%; /* Each SVG takes up 100% of its container */
  height: 100%;
  user-select: none;
}

.wave-container-content {
  display: flex;
  justify-content: space-between;
  padding: 20px 60px;
  padding-bottom: 10%;
  position: relative;
}


/* Initial state */
.wave-container-content > :nth-child(1),
.wave-container-content > :nth-child(2) {
  opacity: 0;
  transform: translateX(50px); /* Offset to the right */
  transition: transform 1s ease-out, opacity 1s ease-out;
}

.wave-container-content > :nth-child(1) {
  transform: translateX(-50px); /* Offset to the left */
}

/* Animated state */
.wave-container-content > :nth-child(1).animate-left,
.wave-container-content > :nth-child(2).animate-right {
  opacity: 1;
  transform: translateX(0); /* Move to final position */
}

.wave-container-content img {
  height: 100%;
  width: auto;
  align-self: center;
  display: none;
}

#menu-overview {
  display: flex;
}

#menu-overview .primary-header {
  font-size: 81px;
  line-height: 90px; 
}


#menu-overview .hero-content {
  align-items: flex-start;
  width: 60%;
  background-repeat: no-repeat;
  background-size: cover;
  transition: background-image 0.5s ease;
}

#menu-overview-categories {
  display: flex;
  width: 40%;
  flex-direction: column;
  align-items: center;
}

#menu-overview-categories .secondary-header {
  border-bottom: 3px solid var(--primary-blue);
  padding: 20px 0;
  width: 100%;
  min-height: 20%;
  margin: 0;
  font-size: 40px;
  text-align: center;
  color: var(--primary-blue);
  text-transform: uppercase;
  transition: color 0.2s, background-color 0.2s;
}

#menu-overview-categories .secondary-header:hover {
  background-color: var(--primary-blue);
  color: white;
}

.featured-in {
  background-color: var(--secondary-blue);
}

.featured-in div {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  justify-content: center;
}

.featured-in,
.customer-testimonials {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 50px 0;
  gap: 20px;
  align-items: center;
  text-align: center;
}

#testimonial-container {
  transition: opacity 0.3s ease; /* Smooth transition for content change */
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  flex: 1; /* Makes the container take up the remaining space between arrows */
  max-width: 800px; /* Adjust as needed to control the width of the text */
}

.fade-out {
  opacity: 0;
}

.fade-in {
  opacity: 1;
}

.customer-testimonials div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 20px;
  gap: 40px;
}

.customer-testimonials img {
  width: 71px;
  height: auto;
  cursor: pointer;
}
.customer-testimonials p {
  font-family: "Fontspring Grotesque";
}

#footer-container {
  background-color: var(--primary-blue);
  width: 100%;
  font-family: "Fontspring bold";
  color: white;
  text-transform: uppercase;
  padding: 50px 0 8px;
  padding-top: 0;
  box-sizing: border-box;
  background-image: url(../images/footer-bottom.png);
  background-repeat: no-repeat;
  background-position: bottom;
}

#footer-container .primary-header {
  /* top: -50px; */
  text-align: center;
}

#footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

#footer-description {
  font-size: 0.9em;
  line-height: 1.6;
  margin-bottom: 30px;
}

#footer-bottom {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  flex-wrap: wrap;
  font-size: 0.8em;
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 100px;
  gap: 10%;
}

#footer-copyright {
  text-transform: capitalize;
  font-family: "Fontspring semibold";
  display: flex;
  align-items: flex-end; /* Align items on the same level */
  font-size: 16px; /* Set the desired font size */
}

#footer-links,
#footer-services {
  max-width: 250px;
  margin-bottom: 30px;
}
#footer-services {
  margin-top: 58.4px;
}

#footer-links *,
#footer-services * {
  text-align: left;
}

.footer-section-title {
  margin-bottom: 20px;
  color: var(--secondary-blue);
  text-align: center;
}

.footer-subtext {
  display: block;
  color: #fafafa;
  text-align: center;
  font-weight: 200;
  text-decoration: none;
  margin-bottom: 10px;
  font-size: 0.9em;
  cursor: pointer;
}

.footer-subtext:hover {
  color: var(--primary-yellow);
}

.card-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(calc(33.33% - 25px), 1fr));
  gap: 25px;
  box-sizing: border-box; /* Include padding and borders in width calculations */
  align-items: stretch; /* Ensure cards align at the start */
  margin: 40px;
}

.card-container.locations {
  margin: 0;
  grid-template-columns: repeat(auto-fill, minmax(calc(50% - 25px), 1fr));
}

.menu .card-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  margin: 40px 0;
  margin-top: 0;
  gap: 80px;
}

.benefit-card,
.location-card,
.menu-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex-grow: 0;
  border: 1px solid var(--primary-blue);
  border-radius: 5px;
  color: var(--primary-blue);
  padding: 24px;
  gap: 20px;
  box-sizing: border-box;
  max-height: 700px;
}


.subcategory-wrapper {
  all: inherit;
  border-radius: 35px;
  padding: 30px;
}

.classics-bg {
  background-color: var(--primary-aqua);
}

.premium-bg {
  background-color: var(--primary-red)
}

.veggie-bg {
  background-color: var(--primary-yellow);
}

.premium-bg .menu-card *, .classics-bg .menu-card * {
  color: var(--primary-white);
}

.veggie-bg .menu-card * {
  color: var(--primary-blue);
}

.subcategory-header {
  margin-bottom: 15px;
  font-size: 32px;
  font-weight: bold;
}


.benefit-card {
  border: 2px solid var(--primary-blue);
}

.benefit-card h2 {
	font-weight: 700;
	font-size: 24px;
	font-family: "Fontspring semibold";
}

.benefit-card p {
	margin-top: 0;
}

.menu-card {
  border: none;
  gap: 10px;
  width: 240px;
  padding: 0;
}

.menu-card h3 {
  font-family: "Inter";
  color: var(--primary-white);
  text-transform: uppercase;
}

.menu-card p {
  margin: 0;
  color: var(--light-gray);
  font-family: "Arial";
}

.menu-card img {
  width: 100%;
  height: 190px;
  object-fit: cover;
  border-radius: 5px;
  box-shadow: 0 8px 8px rgba(0, 0, 0, 0.2);
}

.location-card h2 {
  text-transform: uppercase;
}

.location-card button {
  box-shadow: none;
  margin-top: 40px;
}

.location-card .location-info {
  display: flex;
  gap: 10px;
  color: var(--light-gray);
  font-family: "Fontspring semibold";
}

.location-info p, .location-info a {
  font-family: 'Arial';
  font-size: 16px;
  margin: 0;
}

.location-info img {
  align-self: flex-start;
  width: 28px;
  height: auto;
}

#vip-registration-form {
  display: flex;
  justify-content: space-between;
  margin: 100px 0;
}

#vip-registration-form img {
  margin-top: 50px;
  width: 50%;
}

#vip-registration-form .contact-form {
  padding: 50px;
  margin-top: 50px;
  background-color: white;
  width: 60%;
}

.category-container {
  display: flex;
  margin: 50px;
  gap: 10%;
}

.category-list {
  border: 1px solid var(--primary-blue);
  display: flex;
  flex-direction: column;
  padding: 40px 0;
  gap: 10px;
  border-radius: 5px;
  min-width: 25%;
  max-width: 25%;
  max-height: 70vh;
  overflow-y: auto;
  align-self: flex-start;
  scrollbar-width: thin;
  scrollbar-color: var(--primary-blue) transparent;
}

.category-list p {
  color: var(--primary-blue);
  text-transform: uppercase;
  font-size: 16px;
  font-family: "Fontspring semibold";
  font-weight: 600;
  cursor: pointer;
  padding: 10px 20px;
  margin: 0;
  transition: color 0.2s, background-color 0.2s;
}

.category-list p:not(.active):hover {
	color: white;
	background-color: #256979;
}
.category-list .active {
  color: white;
  background-color: var(--primary-blue);
}

#catering-form-container {
  margin: 50px 100px;
}

#expandable-text-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 50px 150px;
  margin-top: 0;
  width: 100%;
}

.expandable-text {
  border: 1px solid var(--primary-blue);
  color: var(--primary-blue);
  width: 100%;
  border-radius: 5px;
  padding: 15px;
  transition: box-shadow 0.3s ease, border-color 0.3s ease;
}

.expandable-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.page-intro-row {
  display: flex;
  text-align: left;
  justify-content: space-between;
  gap: 100px;
  width: 100%;
  margin: 60px 0;
}

.expandable-header img {
  transition: transform 0.3s ease;
}

.expandable-content {
  font-family: "Inter";
  color: var(--light-gray);
  font-size: 16px;
  max-height: 0;
  overflow: hidden;
  margin: 0;
  opacity: 0;
  transition: max-height 0.3s ease, opacity 0.3s ease;
}

.expandable-text.expanded {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  border-color: transparent;
}

.expandable-text.expanded .expandable-content {
  opacity: 1;
}

.expandable-text.expanded img {
  transform: rotate(180deg); /* Flip chevron */
}

.expandable-text div {
  display: flex;
  cursor: pointer;
  justify-content: space-between;
  align-items: center;
}

.franchising-page-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 40px 0;
  gap: 40px;
  padding: 0 120px;
}

@media screen and (min-width: 1401px) {
  .secondary-hero .oshawa {
    width: 40%;
    height: 500px;
  }
}

@media screen and (max-width: 1400px) {
  .primary-hero img {
    height: 300px;
  }

  .primary-hero {
    padding: 50px 0;
    margin-top: 20px;
  }

  .primary-hero .primary-header {
    font-size: 80px;
    line-height: 70px;
  }
  .secondary-header {
	  font-size: 48px;
  }
  
  .hero-content {
	  padding: 40px;
  }

  #footer-container .primary-header {
    font-size: 81px;
  }

  #navbar-main-container {
    padding: 0px 20px;
  }
  .navbar-links {
    gap: 20px;
  }
  .navbar-links a {
    font-size: 12px;
    color: white;
  }
  .page-intro-row {
    flex-direction: column;
    text-align: center;
    align-items: center;
    gap: 40px;
  }

  .featured-in div {
    gap: 15px;
  }
  .featured-in div img {
    width: 140px;
    height: 128px;
  }
  .form-row {
	  margin: 10px 0;
  }
  #menu-overview .primary-header {
	font-size: 56px;
	line-height: 80px;
  }
  #menu-overview-categories .secondary-header {
	  font-size: 40px;
	  padding: 15px 0;
  }
}

@media screen and (max-width: 1024px) {
  .primary-hero {
    line-height: 90px;
	padding: 30px 0;
  }

  .primary-hero .primary-header {
    font-size: 100px;
  }

  #footer-container .primary-header {
    font-size: 64px;
  }

  .button-row {
    align-self: center;
  }
  .secondary-header {
    font-size: 50px;
  }

  .secondary-hero {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .secondary-hero h2 {
	  align-self: center;
  }
  .secondary-hero img, #franchising-img {
    width: 100%;
    max-height: 50vh;
  }

  #imageSlider {
	  width: 100%;
	  min-height: 300px;
  }

  .secondary-hero .hero-content {
    padding: 80px 20px;
  }

  #order-image {
	  width: 90%;
  }

  .wave-container-content {
    flex-direction: column;
    align-items: center;
  }
  .wave-container-content img {
    order: -1;
    max-width: 100%;
    display: none;
  }

  #menu-overview .hero-content .primary-header {
    font-size: 48px;
    text-align: center;
    line-height: 60px;
  }
  #menu-overview-categories .secondary-header {
    font-size: 32px;
    line-height: 30px;
  }

  #vip-registration-form img {
    display: none;
  }
  #vip-registration-form .contact-form {
    width: 100%;
  }
  #logo img {
    max-width: 75px;
    max-height: 75px;
  }

  .card-container.locations {
    display: flex;
    flex-direction: column;
  }
}

@media screen and (max-width: 900px) {
 .navbar-links {
    display: none; /* Hide by default */
    flex-direction: column; /* For proper alignment */
    opacity: 0;
    visibility: hidden; /* Initially hidden */
    transform: translateY(20px); /* Positioned off-screen */
    transition: opacity 0.3s ease, transform 0.3s ease;
  }

  .navbar-links.show {
    display: flex; /* Show when active */
    flex-direction: column; /* Ensure proper alignment for mobile */
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    z-index: 100; /* Ensure active links are above */
  }

  .franchising-page-container {
    padding: 0 60px;
  }

  #navbar-main-container {
    padding: 10px 40px;
  }

  #footer-container .primary-header {
    font-size: 48px;
  }

  .primary-hero .primary-header {
    font-size: 80px;
    line-height: 70px;
  }

  .navbar-link {
    margin: 10px 0;
    padding: 10px 0;
    font-size: 1.2rem;
    text-align: center;
    width: 100%;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.3s ease, transform 0.3s ease;
  }

  .navbar-links.show .navbar-link {
    opacity: 1;
    transform: translateY(0);
  }

.burger-menu {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    order: 1;
    height: 25px;
    cursor: pointer;
    z-index: 1003;
  }

  .burger-menu div {
    width: 100%;
    height: 3px;
    background-color: white;
    transition: all 0.3s;
  }
  .burger-menu.open div:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .burger-menu.open div:nth-child(2) {
    opacity: 0;
  }

.burger-menu.open div:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
  }

  .navbar-links {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--primary-blue);
    z-index: 1002;
    overflow-y: auto;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
  }

}

@media (max-width: 769px) {
 
  .primary-hero .pepper {
    display: none;
  }

    .category-container.locations, .menu {
    flex-direction: column;
    gap: 40px;
    margin: 50px 10px;
    align-items: center;
  }
  .category-list {
    align-items: center;
    align-self: center;
    min-width: 80%;
  }
  .category-list p {
    width: 100%;
    text-align: center;
  }

  .page-intro {
    margin: 80px 60px;
  }

  .page-intro-row .secondary-header {
    line-height: 60px;
    font-size: 40px;
  }

  .page-intro .secondary-header {
    font-size: 56px;
    line-height: 60px;
  }

    #menu-overview .hero-content .primary-header {
    font-size: 32px;
    text-align: left;
    line-height: 40px;
  }
  #menu-overview-categories .secondary-header {
    font-size: 22px;
    padding: 20px 0;
    line-height: 30px;
  }

  .card-container {
    display: flex;
    flex-direction: column;
  }
  .menu .card-container {
    flex-wrap: nowrap;
    flex-direction: column;
    margin: 0;
    align-items: center;
    width: 90%;
  }
  .menu {
    margin: 50px 10px;
    justify-content: space-around;
  }

  .form-row:not(.radio-column .form-row) {
    flex-direction: column;
  }
  .radio-row {
    gap: 30px; 
  }
}

@media screen and (max-width: 500px) {
  #menu-overview .hero-content {
    padding: 20px;
  }
  .hero-content button,
  .contact-form button {
    padding: 5px 20px;
  }
  #menu-overview-categories .secondary-header {
    font-size: 16px;
  }

  .secondary-header {
    font-size: 48px;
    line-height: 65px;
  }
  p {
    margin: 10px 0;
    font-size: 18px;
  }

  .primary-hero .primary-header {
    font-size: 60px;
  }
  .primary-hero img {
    height: 350px;
    width: auto;
  }
  #catering-form-container {
    margin: 50px;
  }

  .page-intro-row .secondary-header {
    font-size: 24px;
    line-height: 50px;
  }
  .page-intro-row p {
    font-size: 16px;
  }
  .arrow {
    font-size: 1rem;
    transform: translateY(200%);
  }
}

@media screen and (max-width: 420px) {
  .primary-hero img {
    height: 300px;
    width: auto;
  }

  .primary-hero {
	  margin: 0 10px;
	  padding: 30px;
  }

  .secondary-header,
  .page-intro .secondary-header {
    font-size: 40px;
    line-height: 55px;
  }
  #vip-registration-form .contact-form {
    padding: 50px 30px;
  }
  .wave-container-content .hero-content {
    padding: 60px 0;
  }
  button {
    font-size: 18px;
  }
  .customer-testimonials img {
    width: 50px;
  }
  .customer-testimonials div {
    justify-content: center;
    gap: 30px;
  }
  .category-list {
    width: 40%;
  }
  .category-container.locations .category-list {
    width: 100%;
    height: 400px;
  }
  .category-container.locations .category-list p {
    width: 100%;
  }
  #footer-bottom {
    padding: 0 20px;
    font-size: 16px;
  }
  .primary-hero .primary-header {
    font-size: 50px;
    line-height: 45px;
  }

  .primary-hero img {
    height: 250px;
    width: auto;
  }
  .slider-bar {
    padding: 10px 0;
  }
  #menu-overview .hero-content .primary-header {
    font-size: 24px;
    line-height: 30px;
  }
  .hero-content button, .contact-form button {
    font-size: 16px;
    padding: 5px 15px;
  }
  #menu-overview-categories .secondary-header {
    font-size: 14px;
    padding: 15px 0;
    line-height: 20px;
  }
  .customer-testimonials div {
    gap: 0;
  }
  .wave-container-content {
    align-items: center;
    text-align: center;
    padding: 20px 30px;
  }
  .secondary-header,
  .page-intro .secondary-header {
    font-size: 32px;
    line-height: 45px;
  }
}

@media screen and (max-width: 380px) {
	.primary-hero .primary-header {
		font-size: 36px;
		line-height: 45px;
	}

	.primary-hero img { 
		height: 200px;
	}
}

@media screen and (max-width: 300px) {

	#navbar-main-container {
		padding: 10px 20px;
	}
	#logo img {
		max-width: 50px;
		max-height: 50px;
	}

	.wave-container-content .hero-content {
		padding: 40px 0;
	}
	.wave-container-content .hero-content .secondary-header {
		font-size: 24px;
		line-height: 35px;
	}
}

@media screen and (max-width: 260px) {
	.primary-hero img { 
		display: none;
	}
}
