/* Global settings to hide scrollbars in most browsers */
html,
body {
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE 10+ */
}

*::-webkit-scrollbar {
  display: none; /* Chrome, Safari, Opera */
}

/* Universal box-sizing and reset */
*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  font-family: sans-serif;
  min-height: 100dvh;
}

/* Ensure images scale properly */
img {
  max-width: 100%;
  /* height: auto; */
}

/* Grid container */
.container {
  justify-content: center;
  display: grid;
  grid-template-columns: 1em auto 1em;
  grid-template-rows: repeat(8, auto);
  grid-template-areas:
    ". header ."
    ". hero ."
    ". appSection ."
    ". actOptions ."
    ". wheel ."
    ". majourTalkingPoints ."
    ". flockTalk ."
    ". footer .";
}

/* Sticky header: remains at the top on scroll */
.header {
  grid-area: header;

  position: sticky;
  top: 0;
  z-index: 1000; /* Ensures the header appears above other content */
  background-color: #fff; /* Optional: add a background to prevent content bleed-through */
}

.sectionTitleContainer {
  background-color: #00468c;
  color: #ffffff;
  width: 100%;
  text-align: center;
  align-content: center;
  margin-bottom: 0.5em;
}

.sectionMainTitleText {
  font-family: Helvetica, sans-serif;
  color: #ffffff;
  font-size: 1rem;
}

.SectionSubTitleText {
  font-family: Helvetica, sans-serif;
  color: #ffffff;
  font-size: 0.65rem;
}

.hero {
  width: 100%;
  justify-self: center;
}

.mainLogo {
  padding-right: 0.25em;
}

.mainBanner {
  width: 100%;
}

/* Menu items within the header */
.menuItems {
  position: sticky;
  overflow: hidden; /* Hide overflow without scrollbars */
  display: flex;
  gap: 1em;
  overflow-x: auto; /* Allow horizontal scrolling if needed */
  -webkit-overflow-scrolling: touch; /* Smooth scrolling on iOS */
  scrollbar-width: none;
  -ms-overflow-style: none;
  scroll-behavior: smooth;
  padding: 0.5em 0;
}

.brands {
  overflow: hidden;
  white-space: nowrap; /* Prevent line breaks if images are inline */
  /* Optional: add padding or margin if needed */
  margin-bottom: 0.5em;
}

.carousel {
  display: flex;
}

/* Ensure each image remains its natural size and spaces correctly */
.brandLogo {
  flex: 0 0 auto;
  width: 50%;
}

.menuItems::-webkit-scrollbar {
  display: none;
}

.menuButtons {
  display: inline-block;
  font-size: 0.725rem;
  font-weight: 700;
  font-family: "Source Sans Pro", sans-serif;
  padding: 0.5em 0.7em;
  border-radius: 5px;
  border: 0;
  cursor: pointer;
  background-color: #00468c;
  color: #ffffff;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2), 0 6px 20px rgba(0, 0, 0, 0.19);
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
  min-width: fit-content;
}

.callToActionButtons {
  margin-top: 0.5em;
  display: inline-block;
  font-size: 0.725rem;
  font-weight: 700;
  font-family: Helvetica, sans-serif;
  padding: 1em 0.7em;
  border-radius: 5px;
  border: 0;
  cursor: pointer;
  background-color: #ec008d;
  color: #ffffff;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2), 0 6px 20px rgba(0, 0, 0, 0.19);
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
  min-width: fit-content;
  width: 50%;
  justify-self: center;
  margin-bottom: 0.5em;
}

.wheelText {
  text-align: center;
  font-size: 0.6rem;
}
.consentText {
  text-align: center;
  font-size: 0.8rem;
}
/* Grid areas for each section */
.hero {
  grid-area: hero;
}

.appSection {
  grid-area: appSection;
  padding: 0.25em;
}

.appDownload {
  display: flex;
  justify-content: space-around;
  margin-bottom: 0.5em;
}

.appDownload img {
  width: 100px;
}

#appCallToActionBanner {
  margin-bottom: 0.5em;
}
.actOptions {
  grid-area: actOptions;
  margin-bottom: 0.5em;
}

.atcOptionsContainer {
  position: relative;
  padding: 0 2em;
  display: flex;
  flex-direction: column;
  width: 80%;
}

.chick {
  position: absolute;
  left: 40px;
  bottom: -10px;
  /* You can set a width or max-width to control size */
  width: 200px;
}

.hen {
  position: absolute;
  right: -200px;
  bottom: 0;
  width: 400px;
  height: 550px;
}

.atcOptionsMainTextContainer,
.atcOptionsMainOption1Container,
.atcOptionsMainOption2Container,
.endTextContainer {
  position: relative;
  z-index: 2;
}
.atcOptionsMainTextContainer p {
  color: #00468c;
  font-family: Helvetica, sans-serif;
  font-weight: 700;
  font-size: 1.45rem;
}

.atcOptionsMainTextContainer span {
  color: #00468c;
  font-family: Helvetica, sans-serif;
  font-weight: 100;
  font-size: 1.45rem;
}

.option2Img {
  width: 220px;
  align-self: flex-end;
}
.option1Img {
  width: 220px;
}

.atcOptionsMainOption1Container {
  width: 65%;
}
.atcOptionsMainOption1Container p {
  font-family: Helvetica, sans-serif;
  color: #000;
  font-weight: 500;
  font-size: 1.15rem;
}

.endTextContainer {
  font-family: Helvetica, sans-serif;
  color: #000;
  font-weight: 500;
  font-size: 1.15rem;
  text-align: center;
  width: 100%;
  margin-bottom: 1.5em;
}

.endTextContainer span {
  color: #00468c;
  font-weight: 700;
}

.atcOptionsMainOption2Container p {
  font-family: Helvetica, sans-serif;
  color: #000;
  font-weight: 500;
  font-size: 1.15rem;
}

#atcOptionsMainOptionText {
  color: #6cb33e;
  font-family: Helvetica, sans-serif;
  font-weight: 700;
  font-size: 1.45rem;
}

.atcOptionsMainOption1Container span {
  font-family: Helvetica, sans-serif;
  color: #6cb33e;
}

.atcOptionsMainOption2Container span {
  font-family: Helvetica, sans-serif;
  color: #6cb33e;
}

.atcOptionsMainOption2Container {
  display: flex;
  flex-direction: column;
  align-self: flex-end;

  width: 65%;
}

.wheel {
  grid-area: wheel;
  margin-bottom: 0.5em;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
}

.majourTalkingPoints {
  grid-area: majourTalkingPoints;
  display: flex;
  justify-content: center;
  align-content: center;
  flex-direction: column;
  gap: 0.5em;
}

.majourTalkingPoints img {
  width: 150px;
}

.talkpointsWrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1em;
}

.flockTalk {
  grid-area: flockTalk;
  margin-bottom: 1em;
}

.footer {
  grid-area: footer;
}

.flockTalkWrapper {
  overflow: hidden;

  overflow-x: auto;
}

.flocktalkCarousel {
  display: flex;
}

.flocktalkCarousel img {
  flex: 0 0 auto;
  width: 100%;
  margin-right: 1em;
  /* Optionally, set a fixed width if needed for consistency, e.g.: */
  width: 80%;
}

@media (min-width: 501px) {
  .menuItems {
    display: flex;
    justify-content: space-around;
  }

  .menuButtons {
    font-size: 0.8rem;
  }
}

@media (min-width: 601px) {
  .menuItems {
    display: flex;
    justify-content: space-around;
  }

  .menuButtons {
    font-size: 0.9rem;
  }

  .mainLogo {
    height: 100px;
  }
}

@media (min-width: 701px) {
  .header {
    display: flex;
  }
  .menuItems {
    display: flex;
    gap: 0.5em;
    align-items: center;
  }

  .menuButtons {
    font-size: 0.8rem;
    margin-left: 0.5em;
  }

  .mainLogo {
    height: 70px;
  }
}

@media (min-width: 750px) {
  .header {
    display: flex;
  }
  .menuItems {
    display: flex;
    gap: 0.5em;
    align-items: center;
  }

  .menuButtons {
    font-size: 0.8rem;
    margin-left: 0.5em;
  }

  .mainLogo {
    height: 70px;
  }
}

@media (max-width: 800px) {
  .atcOptionsMainTextContainer p {
    font-weight: 700;
    font-size: 1rem;
  }

  .atcOptionsMainTextContainer span {
    font-size: 1rem;
  }

  #atcOptionsMainOptionText {
    font-size: 1.2rem;
  }

  .option2Img {
    width: 180px;
    align-self: flex-end;
  }
  .option1Img {
    width: 180px;
  }
  .atcOptionsMainOption1Container p {
    font-family: Helvetica, sans-serif;
    color: #000;
    font-weight: 500;
    font-size: 0.95rem;
  }
  .atcOptionsMainOption2Container p {
    font-family: Helvetica, sans-serif;
    color: #000;
    font-weight: 500;
    font-size: 0.95rem;
  }

  .endTextContainer {
    font-family: Helvetica, sans-serif;
    color: #000;
    font-weight: 500;
    font-size: 0.95rem;
    text-align: center;
    width: 100%;
    margin-bottom: 1.5em;
  }

  .chick {
    position: absolute;
    left: 40px;
    bottom: -10px;
    /* You can set a width or max-width to control size */
    width: 150px;
  }

  .hen {
    position: absolute;
    right: -150px;
    bottom: 0;
    width: 300px;
    height: 450px;
  }
}

@media (max-width: 650px) {
  .atcOptionsMainTextContainer p {
    font-weight: 700;
    font-size: 1rem;
  }

  .atcOptionsMainTextContainer span {
    font-size: 1rem;
  }

  #atcOptionsMainOptionText {
    font-size: 1.2rem;
  }

  .option2Img {
    width: 120px;
    align-self: flex-end;
  }
  .option1Img {
    width: 120px;
  }
  .atcOptionsMainOption1Container p {
    font-family: Helvetica, sans-serif;
    color: #000;
    font-weight: 500;
    font-size: 0.95rem;
  }
  .atcOptionsMainOption2Container p {
    font-family: Helvetica, sans-serif;
    color: #000;
    font-weight: 500;
    font-size: 0.95rem;
  }

  .endTextContainer {
    font-family: Helvetica, sans-serif;
    color: #000;
    font-weight: 500;
    font-size: 0.95rem;
    text-align: center;
    width: 100%;
    margin-bottom: 1.5em;
  }

  .chick {
    position: absolute;
    left: 40px;
    bottom: 1px;
    /* You can set a width or max-width to control size */
    width: 120px;
  }

  .hen {
    position: absolute;
    right: -120px;
    bottom: 40px;
    width: 250px;
    height: 350px;
  }
}

@media (max-width: 570px) {
  .atcOptionsMainTextContainer p {
    font-weight: 700;
    font-size: 0.9rem;
  }

  .atcOptionsMainTextContainer span {
    font-size: 0.9rem;
  }

  #atcOptionsMainOptionText {
    font-size: 1rem;
  }

  .option2Img {
    width: 100px;
    align-self: flex-end;
  }
  .option1Img {
    width: 100px;
  }
  .atcOptionsMainOption1Container p {
    font-family: Helvetica, sans-serif;
    color: #000;
    font-weight: 500;
    font-size: 0.85rem;
  }
  .atcOptionsMainOption2Container p {
    font-family: Helvetica, sans-serif;
    color: #000;
    font-weight: 500;
    font-size: 0.85rem;
  }

  .endTextContainer {
    font-family: Helvetica, sans-serif;
    color: #000;
    font-weight: 500;
    font-size: 0.85rem;
    text-align: center;
    width: 100%;
    margin-bottom: 1.5em;
  }

  .chick {
    position: absolute;
    left: 20px;
    bottom: 1px;
    /* You can set a width or max-width to control size */
    width: 120px;
  }

  .hen {
    position: absolute;
    right: -120px;
    bottom: 40px;
    width: 250px;
    height: 350px;
  }
}

@media (max-width: 500px) {
  .atcOptionsMainTextContainer p {
    font-weight: 700;
    font-size: 0.8rem;
  }

  .atcOptionsMainTextContainer span {
    font-size: 0.9rem;
  }

  #atcOptionsMainOptionText {
    font-size: 1rem;
  }

  .option2Img {
    width: 100px;
    align-self: flex-end;
  }
  .option1Img {
    width: 100px;
  }
  .atcOptionsMainOption1Container p {
    font-family: Helvetica, sans-serif;
    color: #000;
    font-weight: 500;
    font-size: 0.75rem;
  }
  .atcOptionsMainOption2Container p {
    font-family: Helvetica, sans-serif;
    color: #000;
    font-weight: 500;
    font-size: 0.75rem;
  }

  .endTextContainer {
    font-family: Helvetica, sans-serif;
    color: #000;
    font-weight: 500;
    font-size: 0.75rem;
    text-align: center;
    width: 100%;
    margin-bottom: 1.5em;
  }

  .chick {
    position: absolute;
    left: 310px;
    bottom: 170px;
    /* You can set a width or max-width to control size */
    width: 100px;
  }

  .hen {
    position: absolute;
    right: 300px;
    bottom: 0px;
    width: 100px;
    height: 150px;
  }

  .atcOptionsMainOption1Container {
    width: 70%;
    margin-bottom: 2em;
  }

  .atcOptionsMainOption2Container {
    width: 65%;
    margin-bottom: 2em;
  }
  .atcOptionsContainer {
    position: relative;
    padding: 0 1em;
    display: flex;
    flex-direction: column;
    width: 100%;
  }
}

@media (max-width: 450px) {
  .atcOptionsMainTextContainer p {
    font-weight: 700;
    font-size: 0.8rem;
  }

  .atcOptionsMainTextContainer span {
    font-size: 0.9rem;
  }

  #atcOptionsMainOptionText {
    font-size: 1rem;
  }

  .option2Img {
    width: 100px;
    align-self: flex-end;
  }
  .option1Img {
    width: 100px;
  }
  .atcOptionsMainOption1Container p {
    font-family: Helvetica, sans-serif;
    color: #000;
    font-weight: 500;
    font-size: 0.75rem;
  }
  .atcOptionsMainOption2Container p {
    font-family: Helvetica, sans-serif;
    color: #000;
    font-weight: 500;
    font-size: 0.75rem;
  }

  .endTextContainer {
    font-family: Helvetica, sans-serif;
    color: #000;
    font-weight: 500;
    font-size: 0.75rem;
    text-align: center;
    width: 100%;
    margin-bottom: 1.5em;
  }

  .chick {
    position: absolute;
    left: 265px;
    bottom: 170px;
    /* You can set a width or max-width to control size */
    width: 100px;
  }

  .hen {
    position: absolute;
    right: 260px;
    bottom: 0px;
    width: 100px;
    height: 150px;
  }

  .atcOptionsMainOption1Container {
    width: 70%;
    margin-bottom: 2em;
  }

  .atcOptionsMainOption2Container {
    width: 65%;
    margin-bottom: 2em;
  }
  .atcOptionsContainer {
    position: relative;
    padding: 0 1em;
    display: flex;
    flex-direction: column;
    width: 100%;
  }
}

@media (max-width: 380px) {
  .atcOptionsMainTextContainer p {
    font-weight: 700;
    font-size: 0.8rem;
  }

  .atcOptionsMainTextContainer span {
    font-size: 0.9rem;
  }

  #atcOptionsMainOptionText {
    font-size: 1rem;
  }

  .option2Img {
    width: 100px;
    align-self: flex-end;
  }
  .option1Img {
    width: 100px;
  }
  .atcOptionsMainOption1Container p {
    font-family: Helvetica, sans-serif;
    color: #000;
    font-weight: 500;
    font-size: 0.75rem;
  }
  .atcOptionsMainOption2Container p {
    font-family: Helvetica, sans-serif;
    color: #000;
    font-weight: 500;
    font-size: 0.75rem;
  }

  .endTextContainer {
    font-family: Helvetica, sans-serif;
    color: #000;
    font-weight: 500;
    font-size: 0.75rem;
    text-align: center;
    width: 100%;
    margin-bottom: 1.5em;
  }

  .chick {
    position: absolute;
    left: 240px;
    bottom: 200px;
    /* You can set a width or max-width to control size */
    width: 80px;
  }

  .hen {
    position: absolute;
    right: 230px;
    bottom: 10px;
    width: 100px;
    height: 150px;
  }

  .atcOptionsMainOption1Container {
    width: 70%;
    margin-bottom: 2em;
  }

  .atcOptionsMainOption2Container {
    width: 65%;
    margin-bottom: 2em;
  }
  .atcOptionsContainer {
    position: relative;
    padding: 0 1em;
    display: flex;
    flex-direction: column;
    width: 100%;
  }
}

@media (max-width: 330px) {
  .atcOptionsMainTextContainer p {
    font-weight: 700;
    font-size: 0.8rem;
  }

  .atcOptionsMainTextContainer span {
    font-size: 0.9rem;
  }

  #atcOptionsMainOptionText {
    font-size: 1rem;
  }

  .option2Img {
    width: 100px;
    align-self: flex-end;
  }
  .option1Img {
    width: 100px;
  }
  .atcOptionsMainOption1Container p {
    font-family: Helvetica, sans-serif;
    color: #000;
    font-weight: 500;
    font-size: 0.75rem;
  }
  .atcOptionsMainOption2Container p {
    font-family: Helvetica, sans-serif;
    color: #000;
    font-weight: 500;
    font-size: 0.75rem;
  }

  .endTextContainer {
    font-family: Helvetica, sans-serif;
    color: #000;
    font-weight: 500;
    font-size: 0.75rem;
    text-align: center;
    width: 100%;
    margin-bottom: 1.5em;
  }

  .chick {
    position: absolute;
    left: 230px;
    bottom: 210px;
    /* You can set a width or max-width to control size */
    width: 80px;
  }

  .hen {
    position: absolute;
    right: 210px;
    bottom: 15px;
    width: 100px;
    height: 150px;
  }

  .atcOptionsMainOption1Container {
    width: 70%;
    margin-bottom: 2em;
  }

  .atcOptionsMainOption2Container {
    width: 65%;
    margin-bottom: 2em;
  }
  .atcOptionsContainer {
    position: relative;
    padding: 0 1em;
    display: flex;
    flex-direction: column;
    width: 100%;
  }
}

@media (min-width: 1001px) {
  .container {
    display: grid;
    grid-template-columns: 1fr 1000px 1fr;
    grid-template-rows: repeat(8, auto);
    grid-template-areas:
      ". header ."
      ". hero ."
      ". appSection ."
      ". actOptions ."
      ". wheel ."
      ". majourTalkingPoints ."
      ". flockTalk ."
      ". footer .";
  }

  section {
    min-height: 50dvh;
  }
  .header {
    display: flex;
    justify-content: space-between;
  }
  .menuItems {
    display: flex;
    font-size: 1.2rem;
    gap: 1.5em;
    align-items: center;
  }

  .menuButtons {
    font-size: 0.8rem;
    margin-left: 0.5em;
  }

  .mainLogo {
    height: 80px;
  }

  .talkpointsWrapper img {
    width: 200px;
  }

  .appDownload img {
    width: 300px;
  }
}
