:root {
  --main-red: #EB3300;
  --main-orange: #E35A00;
  --main-light-orange: #e79248;
  --font-color-dark: #000;
  --font-color-light: #fff;
  --font-color-orange: #E35A00;
  --transition-time: 3.5s;
}

/* Gotham Font Family */
@font-face {
  font-family: 'Gotham';
  src: url('../fonts/Gotham/Gotham-Thin.otf') format('opentype');
  font-weight: 100;
  font-style: normal;
}

@font-face {
  font-family: 'Gotham';
  src: url('../fonts/Gotham/Gotham-XLight.otf') format('opentype');
  font-weight: 200;
  font-style: normal;
}

@font-face {
  font-family: 'Gotham';
  src: url('../fonts/Gotham/Gotham-Light.otf') format('opentype');
  font-weight: 300;
  font-style: normal;
}

@font-face {
  font-family: 'Gotham';
  src: url('../fonts/Gotham/Gotham-Book.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'Gotham';
  src: url('../fonts/Gotham/Gotham-Medium.otf') format('opentype');
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: 'Gotham';
  src: url('../fonts/Gotham/Gotham-Bold.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: 'Gotham';
  src: url('../fonts/Gotham/Gotham-Black.otf') format('opentype');
  font-weight: 900;
  font-style: normal;
}

@font-face {
  font-family: 'Gotham';
  src: url('../fonts/Gotham/Gotham-Ultra.otf') format('opentype');
  font-weight: 950;
  font-style: normal;
}

html {
  font-size: 16px;
  overflow-x: hidden;
}

body {
  font-family: 'Gotham', Arial, sans-serif;
  font-size: 1.5625rem;
  font-weight: 500;
  color: var(--font-color-dark);
  background-color: #fff;
  line-height: 1.4;

  @media (max-width: 1699px) {
    font-size: 1.4375rem;
  }

  @media (max-width: 1399px) {
    font-size: 1.25rem;
  }

  @media (max-width: 767px) {
    font-size: 1rem;
  }
}

.page, .post {
  margin-bottom: 0;
}

a {
  text-decoration: none;
  position: relative;

  &:active, &:visited {
    color: inherit;
  }

  &.button {
    display: inline-block;
    font-size: 1.875rem;
    padding: 31px 73px;
    background-color: var(--main-orange);
    color: var(--font-color-light);
    font-weight: 900;
    line-height: 1.1;
    border-radius: 48px;
    white-space: nowrap;
    transition: background-color 0.3s ease;

    &:hover {
      background-color: var(--main-red);
    }

    &.reverse {
      background-color: var(--font-color-light);
      color: var(--main-orange);

      &:hover {
        background-color: var(--main-light-orange);
        color: var(--font-color-light);
      }
    }

    @media (max-width: 1399px) {
      font-size: 1.5625rem;
      padding: 20px 50px;
    }

    @media (max-width: 767px) {
      font-size: 1.25rem;
      padding: 15px 30px;
    }
  }

  &.mobile-order-now-button {
    display: none;

    @media (max-width: 1399px) {
      display: inline-block;
      z-index: 2; 
      margin-left: auto;
      margin-right: 20px;
    }

    @media (max-width: 767px) {
      font-size: 1rem;
      margin-right: 0;
    }
  }
}

a:not(.button, .footer-logo, .site-logo, .home-icon, .social-icon, .order-now-button) {
  &::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: -4px;
    left: 0;
    background-color: currentColor;
    transition: width 0.5s ease;
  }

  &:hover::after {
    width: 100%;
  }
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Gotham', Arial, sans-serif;
  font-weight: 900;
  color: var(--font-color-dark);
  line-height: 1.1;
}

h1 {
  font-size: 9.375rem;
}

h2 {
  font-size: 5.625rem;

  @media (max-width: 767px) {
    font-size: 3rem;
  }
}

h3 {
  font-size: 3.75rem;
}

h4 {
  font-size: 1.875rem;
}

.desktop-only {
  display: block;

  @media screen and (max-width: 1399px) {
    display: none;
  }
}

.mobile-only {
  display: none;

  @media screen and (max-width: 1399px) {
    display: block;
  }
}

.container {
  width: 100%;
  max-width: 1780px;
  margin: 0 auto;
  padding: 0 20px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 3;
  background-color: var(--font-color-light);
  
  .header-container {
    padding-left: 90px;
    padding-right: 0;

    @media (max-width: 1699px) {
      padding-left: 50px;
    }

    @media (max-width: 1399px) {
      padding-left: 20px;
    }
  }

  .menu-icon {
    background-color: transparent;
    border: none;
    display: none;
    flex-direction: column;
    gap: 10px;

    .menu-bar {
      width: 55px;
      height: 8px;
      background-color: var(--main-red);
      border-radius: 40px;
      transition: 0.4s;
    }

    @media (max-width: 1399px) {
      display: flex;
    }

    @media (max-width: 767px) {
      gap: 6px;

      .menu-bar {
        width: 40px;
        height: 6px;
      } 
    }
  }

  .site-logo {
    display: block;
    width: 100%;
    max-width: 560px;

    @media screen and (max-width: 1699px) {
      max-width: 400px;
    }

    .mobile-logo {
      display: none;
    }


    @media (max-width: 768px) {
      .desktop-logo {
        display: none;
      }

      .mobile-logo {
        display: block;
        width: 100%;
        max-width: 150px;
      }
    }
  }

  .main-navigation {
    display: flex;
    .menu-menu-1-container {
      flex: 1;
      display: flex;

      a {
        color: #fff;
        font-size: 23px;
        transition: background-color 0.3s ease;

        @media (max-width: 1699px) {
          font-size: 20px;
        }

        &::after {
          display: none;
        }

        &:hover {
          background-color: var(--main-light-orange);
        }
      }

      > ul {
        display: flex;
        gap: 0px;
        margin: 0;
        padding: 0;
        list-style: none;

        .menu-item-282 {
          display: none;
        }

        @media screen and (max-width: 1399px) {
          flex-direction: column;
          width: 100%;

          .menu-item-282 {
            display: block;
          }

          .menu-item-34 {
            > a {
              display: none;
            }

            .sub-menu {
              position: static;
              border-radius: 0;

              > .menu-item > a {
                padding-block: 22px;
                padding-inline: 30px;
              }
            }
          }
            
        }

        > .menu-item {
          > a {
            padding-block: 22px;
            padding-inline: 30px;
          }
        }

        .sub-menu {
          display: flex;
          flex-direction: column;
          background-color: var(--main-red);
          border-bottom-left-radius: 20px;
          border-bottom-right-radius: 20px;
          overflow: hidden;

          a {
            padding: 12px 25px;
          }
        }
      }
    }
  }

  .header-menu {
    background-color: var(--main-red);
    border-top-left-radius: 50px;
    border-bottom-left-radius: 50px;

    .close-menu-icon {
      display: none;  
      background-color: transparent;
      border: none;
    }
    
    @media (max-width: 1399px) {
      position: fixed;
      right: 0;
      top: 0;
      height: 100vh;
      width: 100%;
      max-width: 400px;
      padding: 100px 30px;
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.4s ease, pointer-events 0.4s ease;
      z-index: 3;

      &.active {
        opacity: 1;
        pointer-events: auto;
      }

      .close-menu-icon {
        display: block;
        position: absolute;
        right: 30px;
        top: 30px;

        .close-bar {
          width: 40px;
          height: 6px;
          background-color: var(--font-color-light);
          border-radius: 3px;
          position: absolute;
          left: 0;
          top: 50%;
          transform-origin: center;

          &:first-child {
            transform: rotate(45deg);
          }

          &:last-child {
            transform: rotate(-45deg);
          }
        }
      }
    }
  } 

  .home-icon {
    width: 47px;

    @media (max-width: 1699px) {
      width: 40px;
    }

    @media (max-width: 1399px) {
      display: none;
    }
  }
}

.site-footer {
  background: transparent linear-gradient(180deg, #E35A00 0%, #EB3300 100%) 0% 0% no-repeat padding-box;

  .footer-container {
    .footer-contact {
      h3 {
        color: var(--font-color-light);
        font-size: 2.5625rem;

        @media (max-width: 776px) {
          font-size: 2rem;
        }
      }

      a {
        color: var(--font-color-light);
      }
    }

    .footer-location {
      h3 {
        margin-bottom: 10px;
      }

      p {
        margin: 5px 0;
      }
    }

    .footer-menu {
      ul {
        width: 100%;
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        gap: 12px;
        flex-direction: column;
        align-items: flex-start;

        li {
          a {
            color: var(--font-color-light);
            white-space: nowrap;
          }
        }
      }
    }
  }
}

.section {
  .section-heading {
    color: var(--font-color-orange);

    @media (max-width: 1699px) {
      font-size: 5rem;
    }

    @media (max-width: 1199px) {
      font-size: 4rem;
    }

    @media (max-width: 767px) {
      font-size: 3rem;
    }
  }
  
  .section-sub-heading {
    color: var(--main-light-orange);
    font-size: 2.875rem;
    font-weight: 900;
    line-height: 1.13;

    @media (max-width: 1699px) {
      font-size: 2.5rem;
    }

    @media (max-width: 1199px) {
      font-size: 2rem;
    }

    @media (max-width: 767px) {
      font-size: 1.5rem;
    }
  }
}

.order-now-button {
  background-color: var(--main-orange);
  width: 335px;
  height: 335px;
  border-radius: 100%;
  position: fixed;
  left: -55px;
  bottom: 200px;

  img {
    position: absolute;
    left: 50%;
    width: 370px;
    max-width: unset;
    transform: translateX(-40%);
    top: -190px;
  }

  .hover {
    display: none;
  }
  
  .unhover {
    display: block;
  }

  &:hover {
    .unhover {
      display: none;
    }

    .hover {
      display: block;
    }
  }

  .text {
    font-size: 45px;
    color: var(--font-color-light);
    font-weight: 900;
    line-height: 1.1;
    text-align: center;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 40px;
  }
}

.home-banner {
  .banner-content {
    max-width: 790px;
    right: 180px;

    @media (max-width: 1699px) {
      right: 90px;
      max-width: 700px;
    }

    @media (max-width: 1199px) {
      left: 0;
      right: 0;
      margin: 0 auto;
      max-width: 90%;
      top: 50%;
    }

    &.fade-in-right {
      transform: translateX(45%);
      transition: transform var(--transition-time) ease, opacity var(--transition-time) ease;
      opacity: 0;

      &.in-view {
        transform: translateX(0);
        opacity: 1;

        @media (max-width: 1199px) {
        }
      }
    }

  }

  h1 {
    font-size: 2.875rem;
    font-weight: 500;
    color: var( --font-color-orange);
    line-height: 1.5;
    position: relative;

    @media (max-width: 1699px) {
      font-size: 2.5rem;
    }

    @media (max-width: 1199px) {
      font-size: 1.5rem;
    }

    &::before {
      content: attr(data-text);
      position: absolute;
      top: 0;
      left: 0;
      color: var(--font-color-light);
      z-index: 2;
      clip-path: polygon(0 0, 0% 0, 0% 100%, 0 100%);
      white-space: pre-wrap;
    }
  }

  .banner-image {
    height: 800px;
    border-radius: 50px;
    overflow: hidden;

    @media (max-width: 1199px) {
      height: calc(100dvh - 140px);
    }

    img {
      height: 100%;
      width: 100%;
      max-width: none;
      object-fit: cover;
    }

    &.fade-in-left {
      transform: translateX(-45%);
      transition: transform var(--transition-time) ease, opacity var(--transition-time) ease;
      opacity: 0;

      &.in-view {
        transform: translateX(0);
        opacity: 1;
      }
    }
  }

  .banner-text {
    font-size: 200px;
    font-weight: 900;
    line-height: 1;
    color: var(--font-color-orange);
    position: relative;

    @media (max-width: 1699px) {
      font-size: 150px;
    }

    @media (max-width: 1199px) {
      font-size: 80px;
    }

    &::before {
      content: attr(data-text);
      position: absolute;
      top: 0;
      left: 0;
      color: var(--font-color-light);
      z-index: 2;
      clip-path: polygon(0 0, 0% 0, 0% 100%, 0 100%);
      white-space: pre-wrap;
    }
  }

  .running-chick {
    top: 0;
    right: 0;
    transform: translateX(100%);
    transition: transform 10s ease;

    @media (max-width: 767px) {
      transform: translateX(50%);
    }

    &.in-view {
      transform: translateX(-200%);

      @media (max-width: 767px) {
        transform: translateX(-100%);
      }
    }
  }
}

.rotating-messages {
  overflow: hidden;
  width: 100%;
  padding: 30px 0;

  .messages-swiper {
    width: 100%;
    height: auto;
  }

  .swiper-wrapper {
    display: flex;
    transition-timing-function: linear !important;
    align-items: center;
  }

  .swiper-slide {
    width: auto !important;
    flex-shrink: 0;
  }

  .message-item {
    white-space: nowrap;
    text-align: center;
    font-size: 2.0625rem;
    color: var(--font-color-orange);
    font-weight: 500;
    padding: 0 20px;
  }
}

.menu-section {
  margin-top: 40px;

  @media screen and (max-width: 767px) {
    margin-top: 0;
  }

  .menu-items-background {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    height: 60%;
    background-color: var(--main-light-orange);
  }
  
  .menu-items {
    position: relative;
  }
}

/* Slick slider center mode styles */
.menu-slider {
  margin: 0 auto;

  .slick-list {
    overflow-y: visible !important;
  }
}

.menu-slider .slick-slide {
  transform: scale(0.75);
  transition: all 0.4s ease-in-out;
  padding: 0 15px;
}

.menu-slider .slick-slide.slick-center {
  opacity: 1;
  z-index: 10;
  transform: scale(1);
}

.menu-slider .menu-item {
  outline: none;
}

.menu-slider .menu-item img {
  width: 100%;
  height: auto;
  display: block;
}

.menu-slider .slick-prev,
.menu-slider .slick-next {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  z-index: 100;
}

.menu-slider .slick-prev {
  left: 31%;

  @media (max-width: 767px) {
    left: 6%;
  }
}

.menu-slider .slick-next {
  right: 31%;

  @media (max-width: 767px) {
    right: 6%;
  }
}

.menu-slider .slick-prev::before,
.menu-slider .slick-next::before {
  font-size: 0;
  width: 26px;
  height: 26px;
  border-top: 3px solid var(--font-color-light);
  border-right: 3px solid var(--font-color-light);
  content: '';
  display: inline-block;
}

.menu-slider .slick-prev::before {
  transform: rotate(-135deg);
}

.menu-slider .slick-next::before {
  transform: rotate(45deg);
}

.menu-name-slider .slick-slide {
  opacity: 0.3;
  transition: opacity 0.4s ease-in-out;
}

.menu-name-slider .slick-slide.slick-center {
  opacity: 1;
}

.menu-name-slider .menu-name-item {
  text-align: center;
  span {
    text-align: center;
    font-size: 1.875rem;
    font-weight: 700;
    color: var(--font-color-light);
    background-color: var(--main-orange);
    display: inline-block;
    width: fit-content;
  }
} 

.story-section {
  background-color: var(--main-red);

  .story-content {
    &.fade-in-left {
      transform: translateX(-15%);
      transition: transform var(--transition-time) ease, opacity var(--transition-time) ease;
      opacity: 0;

      &.in-view {
        transform: translateX(0);
        opacity: 1;
      }
    }
    .section-heading {
      color: var(--font-color-light);
    }

    .story-description {
      color: var(--font-color-light);
    }
  }

  .story-image {
    &.fade-in-right {
      transform: translateX(15%);
      transition: transform var(--transition-time) ease, opacity var(--transition-time) ease;
      opacity: 0;

      &.in-view {
        transform: translateX(0);
        opacity: 1;
      }
    }
  }
}

.better-food-section {

  .inner-wrapper {
    background-color: var(--main-light-orange);
  }

  .better-food-content {
    flex: 1;
    &.fade-in-left {
      transform: translateX(-15%);
      transition: transform var(--transition-time) ease, opacity var(--transition-time) ease;
      opacity: 0;

      &.in-view {
        transform: translateX(0);
        opacity: 1;
      }
    }

    .section-heading {
      color: var(--font-color-light);
    }

    .better-food-description {
      color: var(--font-color-light);
    }

    @media screen and (max-width: 1699px) {
      .section-heading {
        font-size: 4rem;
      } 
    }

    @media screen and (max-width: 1399px) {
      .section-heading {
        font-size: 3rem;
      } 
    }

    .button {
      color: var(--main-light-orange);
    }
  }
}

.store-section {
  background-color: var(--main-orange);

  .section-heading {
    color: var(--font-color-light);
  }

  .store-location {
    flex: 1;
    aspect-ratio: 3/2;
    border-radius: 50px;
    overflow: hidden;

    &.fade-in-left {
      transform: translateX(-15%);
      transition: transform var(--transition-time) ease, opacity var(--transition-time) ease;
      opacity: 0;

      &.in-view {
        transform: translateX(0);
        opacity: 1;
      }
    }
  }

  .stores {
    flex: 1;

    &.fade-in-right {
      transform: translateX(15%);
      transition: transform var(--transition-time) ease, opacity var(--transition-time) ease;
      opacity: 0;

      &.in-view {
        transform: translateX(0);
        opacity: 1;
      }
    }
  }

  .store-item {
    aspect-ratio: 3/2;
    border-radius: 50px;
    object-fit: cover;

    .store-name {
      color: var(--font-color-light);
      background-color: rgba(0, 0, 0, 0.5);
    }
    
    img {
      width: 100%;
      max-width: unset;
      height: 100%;
      display: block;
    }
  }
}

.delivery-section {

  .section-heading {
    color: var(--main-light-orange);
  }

  .delivery-content {
    flex: 1;
    max-width: 725px;

    .delivery-description {
      color: var(--font-color-dark);
    }

    .order-apps {
      img {
        width: 100%;
      }
    }
  }

  .delivery-image {
    width: 100%;
    max-width: 765px;
    overflow: hidden;
    border-radius: 50px;
    
    img {
      width: 100%;
      height: auto;
      display: block;
    }
  }
}

.promotion-and-events-section {
  background-color: var(--main-red);

  .section-heading {
    color: var(--font-color-light);
  }

  .event-item {
    border-radius: 40px;
  }
}

.section-hero {
  .inner-wrapper {
    display: flex;

    @media screen and (max-width: 991px) {
      flex-direction: column;
      height: auto;
    }
  }

  .section-hero-image {
    overflow: hidden;

    img {
      width: 100%;
      height: auto;
      display: block;
    }
  }

  .section-hero-content {
    width: 50%;
    height: 100%;
    background-color: rgba(227, 87, 0, 0.9);
    padding: 0 5%;
    color: var(--font-color-light);
    padding-top: 5%;

    @media screen and (max-width: 991px) {
      width: 100%;
      position: static;
      padding: 80px 40px;
    }

    h1 {
      color: var(--font-color-light);
    }

    p {
      margin-bottom: 16px;

      &:last-child {
        margin-bottom: 0;
      } 
    }
  }
}

.about-history-section {
  .about-history-content {
    max-width: 570px;
    color: var(--main-orange);
  }

  .about-history-image {
    flex: 1;
    overflow: hidden;
    border-radius: 50px;
    
    img {
      width: 100%;
      height: auto;
      display: block;
    }
  }
}

.about-now-section {
  background-color: var(--main-orange);
  color: var(--font-color-light);

  .section-heading {
    color: var(--font-color-light);
  }

  .about-now-content {
    max-width: 570px;
    color: var(--font-color-light);
  }

  .about-now-image {
    flex: 1;
    overflow: hidden;
    border-radius: 50px;
    
    img {
      width: 100%;
      height: auto;
      display: block;
    }
  }
}

.award-section {

  .award-image {
    transform: translateX(-15%);
    transition: transform var(--transition-time) ease;

    &.in-view {
      transform: translateX(0);
    }
  }

  .award-content {
    transform: translateX(15%);
    transition: transform var(--transition-time) ease;

    &.in-view {
      transform: translateX(0);
    }
  }
}

.page-template-page-about {
  .award-section {
    .award-image {
      left: unset;
      right: 0;
      transform: translateX(15%);

      @media (max-width: 1199px) {
        transform: translateX(0);
      }
    }

    .award-content {
      margin-right: auto;
      margin-left: 0;
    }
  }
}

/* Store Slider Styles */
.store-images-slider {
  width: 100%;
  max-width: 900px;

  .store-swiper {
    border-radius: 50px;
    overflow: hidden;

    .swiper-slide {
      img {
        width: 100%;
        height: auto;
        display: block;
        object-fit: cover;
      }
    }
  }

  /* Navigation Buttons - Orange Circles */
  .swiper-button-prev,
  .swiper-button-next {
    width: 74px;
    height: 74px;
    background-color: var(--main-light-orange);
    border-radius: 50%;
    transition: background-color 0.3s ease;

    @media (max-width: 767px) {
      width: 40px;
      height: 40px;
    }

    &:hover {
      background-color: var(--main-red);
    }

    svg {
      width: 35px;
      height: 35px;
      fill: var(--font-color-light) !important;
      stroke-width: 2px;

      @media (max-width: 767px) {
        width: 25px;
        height: 25px;
      }

      path {
        fill: var(--font-color-light) !important;
        stroke-width: 2px;
      }
    }
  }

  .swiper-button-prev {
    left: 40px;
  }

  .swiper-button-next {
    right: 40px;
  }

  /* Pagination Dots */
  .swiper-pagination {
    bottom: 30px;

    .swiper-pagination-bullet {
      width: 12px;
      height: 12px;
      background-color: var(--font-color-light);
      opacity: 0.5;
      transition: opacity 0.3s ease;

      &.swiper-pagination-bullet-active {
        opacity: 1;
      }
    }
  }
}

.store-content {
  h1 {
    font-size: 4.375rem;
  }

  .store-address {
    color: #707070;
    font-weight: normal; 
  }

  h3 {
    font-size: 1.875rem;
    color: var(--main-orange);
  }

  .store-trading-hours {
    p {
      margin-bottom: 16px;

      &:last-child {
        margin-bottom: 0;
      }
    }
  }
}

.section-map-store-map {
  .store-map-wrapper {
    overflow: hidden;
    border-radius: 50px;
    max-width: 900px;

    img {
      width: 100%;
      height: auto;
      display: block;
    }
  }
}

.menu-section {
  .menu-item {
    img{
      height: 270px;
    }

    .menu-item-name {
      font-size: 1.875rem;
      color: var(--font-color-orange);
      font-weight: 700;
    }
  }
}

.enquiry-section {
  .inner-wrapper {
    border-bottom: 1px solid var(--main-orange);
  }
  .contact-item {
    a {
      color: var(--font-color-dark);
      display: inline-block;
      font-size: 1.875rem;
      @media (max-width: 767px) {
        font-size: 1.2rem;
        word-break: break-all;
      }

      &.underline {
        &::after {
          width: 100%;
        }
      }
    }
  }
}

.feedback-form {
  .section-heading {
    color: var(--font-color-orange);
  }

  .wpcf7-form {
    max-width: 800px;

    p {
      margin-bottom: 1em;
      br {
        display: none;
      }
    }
  
    label {
      display: block;
      margin-bottom: 10px;
    }

    input {
      width: 100%;
      border-radius: 24px;
      border: 1px solid #707070;
      height: 60px;
      font-size: 1.875rem;
      padding: 0 30px;
    }

    textarea {
      width: 100%;
      border-radius: 24px;
      border: 1px solid #707070;
      font-size: 1.875rem;
      padding: 20px 30px;
    }

    .wpcf7-submit {
      display: inline-block;
      font-size: 1.875rem;
      padding: 31px 73px;
      width: 310px;
      height: 94px;
      background-color: var(--main-orange);
      color: var(--font-color-light);
      font-weight: 900;
      line-height: 1.1;
      border-radius: 48px;
      transition: background-color 0.3s ease;
      border: none;
      cursor: pointer;

      &:hover {
        background-color: var(--main-red);
      }
    }
  }
}

.franchise-section-hero {
  position: relative;
  height: 880px;
  background-color: var(--main-red);

  @media (max-width: 991px) {
    height: auto;
  }

  .inner-wrapper {
    z-index: 2;
  }

  .section-heading {
    color: var(--font-color-light);
    text-align: right;

    @media (max-width: 1699px) {
      font-size: 120px;
    }

    @media (max-width: 1499px) {
      font-size: 80px;
    }

    @media (max-width: 991px) {
      font-size: 3rem;
      text-align: left;
    }

  }

  .section-hero-description {
    color: var(--font-color-light);
    max-width: 391px;
    margin-left: auto;

    @media (max-width: 991px) {
      margin-left: 0
    }
  }

  .section-hero-image {
    z-index: 1;

    @media (max-width: 991px) {
      position: static;
    }
  }
}

/* Promotions & Events Page */
.promotions-page {
  .promotions-section-hero {
    .section-heading {
      font-size: 100px;
    }
  }

  .promotion-title {
    font-size: 3.75rem;
    color: var(--font-color-orange);
  }
}

.join-page {
  .section-heading {
    font-size: 125px;

    @media (max-width: 1499px) {
      font-size: 80px;
    }

    @media (max-width: 991px) {
      font-size: 3rem;
      text-align: left;
    }
  }

  .jobs-section {
    .inner-wrapper {
      max-width: 1200px;
    }
  }

  /* Job Search and Filters */
  .jobs-search-filters {
    margin-bottom: 40px;
  }

  .search-bar {
    display: flex;
    margin-bottom: 40px;
  }

  #job-search {
    flex: 1;
    height: 90px;
    padding: 15px 30px;
    border: 0;
    font-size: 25px;
    border-radius: 4px;
    background-color: #f0f1f2;
  }

  #job-search::placeholder {
    color: #606973;
  }

  .filter-dropdowns {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
  }

  .job-filter {
    padding: 12px 40px 12px 15px;
    font-size: 25px;
    border: 2px solid #cfd3d9;
    border-radius: 4px;
    background-color: #fff;
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='14' height='8' viewBox='0 0 14 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M1 1L7 7L13 1' stroke='%23333' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 15px center;
    min-width: 200px;
  }

  .job-item {
    padding: 25px;
    color: #4a4a4a;
    border-bottom: 1px solid #cfd3d9;  
  }

  .job-item h4 {
    font-size: 25px;
    font-weight: 500;
    color: var(--font-color-dark);
  }



  /* Responsive Design */
  @media (max-width: 768px) {
    .search-bar {
      flex-direction: column;
    }

    .filter-dropdowns {
      flex-direction: column;
    }

    .job-filter {
      width: 100%;
    }
  }
}