/* 
COLORS
Primary: #ad3e02
Secondary: #ffffef
Tertiary: #b56d07 , #d9480f, #ff8400

*/

html {
  font-size: 62.5%;
  overflow-x: hidden;
  /* Does not work on safari and microsoft edge */
  /* scroll-behavior: smooth; */
}

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Roboto', sans-serif;
  line-height: 1;
  font-weight: 400;
  color: #555;
  overflow-x: hidden;
}

figure {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

figcaption {
  font-size: 1.6rem;
  text-align: center;
  font-weight: 500;
  line-height: 1.5;
}

li {
  list-style-type: none;
}

hr {
  border: none;
  height: 2px;
  background-color: #d9480f;
  opacity: 0.5;
  width: 100%;
}

/* GENERAL */
.container {
  max-width: 130rem;
  margin: 0 auto;
  padding: 0 2rem;
}

.section-top-gap {
  margin-top: 12rem;
}

.menu-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 4rem;
  padding-top: 3rem;
}

.menu-heading {
  text-align: center;
  font-family: 'Montserrat Alternates', sans-serif;
  font-size: 2rem;
  font-weight: 600;
  color: #ad3e02;
}

.list-item-img {
  width: 100%;
  max-width: 100%;
  height: auto;
  object-fit: cover;
  aspect-ratio: 28/25;
  display: block;
  transition: all 0.4s;
}

/* .menu-list {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 4rem;
  list-style-type: none;
} */

.menu-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(25rem, 1fr));
  /*
   Similar to yours but the repeat keyword repeats a  pattern instead of writing it manually.
   Your old code was trying to fit 4 columns which is not responsive. This will make it responsive
   Creates columns based on available space and minimum size
  */
  column-gap: 2rem;
  row-gap: 1rem;
  width: 100%;
  /* This will make sure the menu list takes up the full width of the parent container */
  max-width: 100%;
  /* This will make sure the menu list does not exceed the width of the parent container */
  margin: auto;
  /* This will center the menu list in the parent container */
  justify-items: center;
  list-style-type: none;
}

.month-special-display {
  height: 90vh;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}

.m-special-name {
  font-family: 'Montserrat Alternates', sans-serif;
  font-size: 4rem;
  color: white;
  padding: 3rem 0 0 3rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
}

.m-special-details {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 40rem;
  gap: 1rem;
  position: absolute;
  bottom: 0;
  right: 0;
  transform: translate(3%, -90%);
}

.m-special-details-heading {
  font-family: 'Montserrat Alternates', sans-serif;
  color: white;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
  font-size: 2rem;
}

.m-special-details-para-container {
  width: 25rem;
  background-color: #ad3e02;
  border-radius: 1rem 1rem;
}

.m-special-details-para {
  padding: 1rem;
  color: #ffffef;
  font-size: 1.2rem;
  line-height: 1.3;
  letter-spacing: 0.5px;
}

.section {
  opacity: 1;
  transform: translateY(0);
  transition: all 0.6s ease-out;
}

.section--hidden {
  opacity: 0;
  transform: translateY(8rem);
}

.mini-menu-title-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}

.mini-menu-title {
  font-size: 1.8rem;
  font-weight: 300;
  letter-spacing: 1px;
  text-decoration: underline;
}

.cal {
  color: #d9480f;
}

.menu-heading-container {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.menu-notice {
  display: flex;
  align-items: center;
  justify-content: center;
}

.menu-notice-para {
  font-size: 1.3rem;
  letter-spacing: 0.4px;
  color: #868e96;
  /* font-weight: 400; */
}

.general-notice {
  margin-top: 4rem;
  margin-bottom: -4rem;
  color: #495057;
}

.general-notice-para {
  font-size: 1.5rem;
  color: #d9480f;
}
/* ----- */

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #ad3e02;

  /* Because we want the header to be sticky later */
  height: 9.6rem;
  padding: 0 4.8rem;
  /* position: relative; */
}

.logo {
  width: 14rem;
  height: 7rem;
}

/* NAVIGATION */

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
}

.menu-icon {
  display: none;
}

.main-nav-list {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 4.8rem;
}

.main-nav-link:link,
.main-nav-link:visited {
  display: inline-block;
  text-decoration: none;
  color: #ffffef;
  font-weight: 500;
  font-size: 1.8rem;
  transition: all 0.3s;
}

.main-nav-link:hover,
.main-nav-link:active {
  color: #ff8400;
}

.btn-mobile-nav {
  border: none;
  background: none;
  cursor: pointer;
  display: none;
}

.icon-mobile-nav {
  height: 4.8rem;
  width: 4.8rem;
  color: #333;
}

.icon-mobile-nav[name='close-outline'] {
  display: none;
}

/* StICKY NAVIGATION */

.sticky .header {
  position: fixed;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 8rem;
  padding-top: 0;
  padding-bottom: 0;
  background-color: #ad3e02;
  z-index: 999;
  box-shadow: 0 1.2rem 3.2rem rgba(0, 0, 0, 0.3);
}

.sticky .section-hero {
  margin-top: 9.6rem;
}

/* Hero section */
.section-hero {
  background-color: #ffffef;
}

.hero-w-p {
  /* background-image: url(/img/CrepesDuNord-small-logo.gif); */
  background: linear-gradient(
      to bottom,
      rgba(255, 255, 255, 0.9),
      rgba(255, 255, 255, 0)
    ),
    url(/img/CrepesDuNord-small-logo.gif) no-repeat center;
  /* background-repeat: no-repeat;
  background-position: center; */
  background-size: contain;
  background-color: #f8f8f8;
}

/* .hero-text-box, .hero-img {
  padding-bottom: 25rem;
} */

.heading-primary {
  font-family: 'Montserrat Alternates', sans-serif;
  font-weight: 600;
  letter-spacing: -0.5px;
  color: #333;
  font-size: 5.2rem;
  line-height: 1.05;
  margin-bottom: 3.2rem;
}

.section-hero {
  padding: 0 0 9.6rem 0;
}

.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9.6rem;
  align-items: center;
}

.hero-description {
  font-size: 2rem;
  line-height: 1.6;
  margin-bottom: 4.8px;
}

.hero-img {
  width: 100%;
}

.keyword-h {
  /* background-color: #d9480f; */
  /* color: #ffffef; */
  padding: 0px 3px 0px 3px;
  border-radius: 5px;
  color: #d9480f;
}

.tab-content {
  margin-top: 2rem;
  padding: 1rem;
  max-height: 0;
  background-color: white;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  overflow: hidden;
  opacity: 0;
  transition: all 0.4s ease;
  visibility: hidden;
}
.tab-content-para {
  font-size: 1.3rem;
  letter-spacing: 0.4px;
  line-height: 1.3;
}

.tab-content.active {
  max-height: 200px;
  opacity: 1;
  visibility: visible;
  margin-top: 2rem;
  margin-bottom: 2rem;
}

/* CREPES MONTH SPECIAL */
.crepes-month-special {
  background-image: url(/img/cmsd2.jpg);
}

/* ACAI MONTH SPECIAL */
.acai-month-special {
  background-image: url(/img/aug-mo.webp);
}

/* Smoothies ad */
.smoothies-ad {
  background-image: url(/img/nathan.webp);
}

/* COFFEE */
.c-t-nn {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
gap: 2rem;
}

.coffee-list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10rem;
}

.coffee-group-pic {
  width: 48rem;
  height: 65rem;
}

.coffee-tri {
  width: 55rem;
}

.coffee-details-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3rem;
}

.coffee-types-container {
  display: flex;
  gap: 20rem;
}

.coffee-list-container,
.b-list-container {
  display: flex;
  flex-direction: column;
  /* align-items: center; */
  justify-content: center;
  gap: 1rem;
}

.coffee-type {
  font-size: 1.5rem;
  text-decoration: underline;
  padding-bottom: 1rem;
}

.coffee-item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 1.6rem;
}

.coffee-add-ons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10rem;
}

.add-on-para {
  font-size: 1.3rem;
}

.check,
.add-on-type {
  color: #d9480f;
}

/* coffee ad */
.coffee-ad {
  background-image: url(/img/coffee2.jpg);
}

/* ABOUT US */
.about-us {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4rem;
  padding: 2rem 0 2rem 0;
}

.about-us-details-container {
  display: flex;
  justify-content: center;
  gap: 6rem;
}

.about-us-heading {
  font-family: 'Montserrat Alternates', sans-serif;
  font-size: 4rem;
}

.about-us-pic {
  width: 45rem;
}

.about-us-details-para {
  font-size: 1.8rem;
  font-weight: 300;
  line-height: 1.6;
  letter-spacing: 0.7px;
}

.a-us-details-m-info-container {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.a-us-details-m-info-heading {
  font-size: 2rem;
}

.a-us-details-m-info-heading {
  padding-top: 2rem;
}

.about-company {
  background-color: #ffffef;
}

.farm-crepes-logo {
  width: 50rem;
  height: 20rem;
}

/* Breakfast */
.breakfast,
.b-main-p {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: center;
  justify-content: center;
}

.b-main-p {
  flex-direction: column;
  gap: 4rem;
}

/* .b-main-p {
  margin: 3rem;
} */

.breakfast-main-pc {
  width: 60rem;
  height: 45rem;
}

.b-cl-pc {
  width: 30rem;
}

.breakfast-b {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 3rem;
}

.bb-menu {
  font-size: 1.8rem;
  font-weight: 300;
  letter-spacing: 1px;
  text-decoration: underline;
}

.breakfast-sub-container {
  display: flex;
  align-items: center;
  justify-content: center;
  /* margin-top: 6rem; */
  gap: 50rem;
}

.own-sandwich {
  font-weight: 500;
}

/* Gallery */

.gallery-heading {
  font-family: 'Montserrat Alternates', sans-serif;
  font-size: 2rem;
  font-weight: 600;
  color: #ad3e02;
  text-align: center;
  /* This will center the gallery heading so it follows after the other headings you have */
  margin-bottom: 2rem;
  /* To add some space below the heading because it felt to tight around the gallery */
}

/* .gallery-section {
  display: grid;
  grid-template-columns: 55fr 45fr;
  align-items: center;
  padding: 0 3rem 0 3rem;
} */

.gallery-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  /* Since you wanted the gallery to have 2 columns, I changed it to have a 1:1 sizing */
  align-items: center;
  gap: 2rem;
  /* This will add some space between the gallery items */
  /* padding: 0 3rem 0 3rem; */
  /* I removed the padding because it created extra space around the gallery items */
  width: 100%;
  /* This will make sure the gallery takes up the full width of the parent container */
}

/* .c-g-big-img-container {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  width: 100rem;
} */

.c-g-big-img-container {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  width: 100%;
  /* This will make sure the big image container takes up the full width of the parent container */
}

/* .gallery-heading {
  font-family: 'Montserrat Alternates', sans-serif;
  font-size: 2rem;
  font-weight: 600;
  color: #ad3e02;
} */

.c-g-big-img {
  display: block;
  /* Makes the image a block-level element. This is helpful for resolving spacing issues */
  width: 100%;
  /* This will make sure the big image takes up the full width of the parent container */
  height: auto;
  /* This will make sure the height is adjusted automatically based on the width */
  object-fit: cover;
  /* This will make sure the image covers the entire area without stretching */
}

/* .c-g-big-img {
  width: 100rem;
} */

/* .gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem;
  padding: 1.6rem;
} */

.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem;
  /* I removed the padding because it created extra space around the gallery items */
  padding: 0;
  /* This will remove the padding around the gallery */
  height: 100%;
  /* This will make sure the gallery takes up the full height of the parent container */
  width: 100%;
  /* This will make sure the gallery takes up the full width of the parent container */
}

.gallery-item {
  overflow: hidden;
  aspect-ratio: 1;
  /* I realised the images had different aspect ratios, so I used this to make them square */
}

/* .gallery-item {
  overflow: hidden;
} */

.menu-l-figure {
  overflow: hidden;
  aspect-ratio: 0;
}

.menu-l-figure img:hover {
  transform: scale(1.1);
}

.ggg {
  display: block;
  width: 100%;
  /* height: 100%; */
  transition: all 0.4s;
}

.gallery-item img:hover {
  transform: scale(1.1);
}

/* footer */
/* footer {
  height: 30rem;
  background-color: #ad3e02;
}

.footer-everything {
  display: flex;
  flex-direction: column;
  gap: 4rem;
}

.footer-content-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 45rem;
  max-width: 130rem;
  margin: 0 auto;
  padding-top: 5rem;
}

.f-item-h {
  font-size: 1.8rem;
  color: #ffffef;
  padding-bottom: 2rem;
  font-weight: 700;
}

.footer-contact-list {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 2rem;
  letter-spacing: 0.5px;
  color: #ffffef;
  font-size: 1.3rem;
}

.footer-follow-us-list {
  display: flex;
  flex-direction: column;
  letter-spacing: 0.5px;
  gap: 2rem;
  font-size: 1.3rem;
}

ion-icon {
  color: #ffffef;
  height: 1.3rem;
  width: 1.3rem;
}

.f-company-name-container {
  display: flex;
  align-items: center;
  justify-content: space-around;
}

.f-c {
  padding-top: 2rem;
}

.copyright {
  color: #ffffef;
  font-size: 1.3rem;
}

.f-company-name {
  font-size: 1.7rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  color: #ffffef;
  font-family: 'Montserrat Alternates', sans-serif;
}

.sm-link {
  display: flex;
  align-items: center;
  text-decoration: none;
  gap: 1rem;
}

.sm-name {
  font-size: 1.3rem;
  color: #ffffef;
}

.list-f-container {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.franchisee {
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffffef;
} */


footer {
    /* height: 30rem; */
    background-color: #ad3e02;
}

.footer-everything {
    display: flex;
    padding: 4rem 8rem;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4rem;
}

.footer-content-container {
    display: flex;
    align-self: stretch;
    align-items: flex-start;
    justify-content: space-between;
    max-width: 102.4rem;
    width: 100%;
    margin: 0 auto;
}

.footer-contact-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 3.2rem;
}

.footer-contact-only {
    display: flex;
    flex-direction: column;
    gap: 1.6rem;
}

.footer-contact-header {
    font-size: 1.8rem;
    color: #ffffef;
    font-weight: 700;
}

.footer-contact-list {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1.2rem;
    letter-spacing: 0.5px;
    color: #ffffef;
    font-size: 1.3rem;
}

.footer-follow-us-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 3.2rem;
}

.footer-follow-us-only {
    display: flex;
    flex-direction: column;
    gap: 1.6rem;
}

.footer-follow-us-header {
    font-size: 1.8rem;
    color: #ffffef;
    font-weight: 700;
}

.footer-follow-us-list {
    display: flex;
    flex-direction: column;
    letter-spacing: 0.5px;
    /* padding-bottom: 5rem; */
    gap: 1.2rem;
    font-size: 1.3rem;
}

ion-icon {
    color: #ffffef;
    height: 1.3rem;
    width: 1.3rem;
}

.sm-link {
    display: flex;
    align-items: center;
    /* justify-content: center; */
    text-decoration: none;
    gap: 1rem;
}

.sm-name {
    font-size: 1.3rem;
    color: #ffffef;
}


.franchisee {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffef;
}

/* .f-company-name-container {
    display: flex;
    align-self: stretch;
    align-items: center;
    justify-content: space-between;
    max-width: 102.4rem;
    width: 100%;
    margin: 0 auto;
} */

.f-company-name-container {
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-direction: column;
  gap: 1rem;
}

.f-company-name {
    font-family: 'Montserrat Alternates', sans-serif;
    font-size: 1.7rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    color: #ffffef;
}

.f-c {
    padding-top: 2rem;
}

.copyright {
    color: #ffffef;
    font-size: 1.3rem;
}

li a {
  text-decoration: none;
  color: inherit;
}

/* Below 1344px (Smaller desktops) */

@media (max-width: 84em) {
  .hero {
    max-width: 120rem;
  }

  .heading-primary {
    font-size: 4.4rem;
  }

  .menu-l-figure img:hover {
    transform: scale(1);
  }

  .menu-l-figure img:active {
    transform: scale(1.1);
  }

  .menu-list {
    row-gap: 0rem;
  }

  /* 
  .gallery {
    grid-template-columns: repeat(2, 1fr);
  }

  .c-g-big-img-container {
    gap: 2rem;
    width: 80rem;
  }

  .c-g-big-img {
    width: 80rem;
  } */
}

/* Below 1200px (landscape tablets) */

@media (max-width: 75em) {
  html {
    /* 9px / 16px */
    font-size: 56.25%;
  }

  /* .menu-list {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 4rem;
    width: 25rem;
  } */

  .menu-list {
    grid-template-columns: repeat(3, 1fr);
    column-gap: 2rem;
    row-gap: 0rem;
    max-width: 90rem;
    /* This will make sure the menu list does not exceed the width of the parent container */
  }

  .list-item-img {
    width: 45rem;
    /* height: 36rem; */
  }

  .header {
    padding: 0 3.2rem;
  }

  .hero {
    gap: 4.8rem;
  }

  .main-nav-list {
    gap: 3.2rem;
  }
}

/* Below 944px (tablets(Portrait)) */

@media (max-width: 59em) {
  html {
    /* 8px / 16px = 0.5 = 50% */
    font-size: 50%;
  }

  .hero {
    grid-template-columns: 1fr;
    padding: 4.8rem 8rem 0 8rem;
    gap: 6.4rem;
  }

  .hero-text-box,
  .hero-img-box {
    text-align: center;
  }

  .hero-img {
    width: 60%;
  }

  .list-item-img {
    width: 35rem;
    /* height: 30rem; */
  }

  /* .about-us-details-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6rem;
  } */

  .about-us-details-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6rem;
    max-width: 100%;
    /* The details were overflowing on smaller screens, so I added this to make sure it fits */
  }

  .about-us-pic {
    width: 70rem;
  }

  /* .a-us-details-m-info-container {
    padding-left: 2rem;
    padding-right: 2rem;
  } */

  .a-us-details-m-info-container {
    padding-left: 2rem;
    padding-right: 2rem;
    max-width: 100%;
    /* The details were overflowing on smaller screens, so I added this to make sure it fits */
  }

  .f-item-h {
    font-size: 1.7rem;
  }

  .f-company-name {
    font-size: 1.6rem;
  }

  .gallery-section {
    display: grid;
    grid-template-columns: 1fr;
    align-items: center;
    padding: 0 3rem 0 3rem;
  }

  .c-g-big-img-container {
    gap: 2rem;
    width: 100%;
  }

  .c-g-big-img {
    width: 100%;
  }

  .gallery {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* @media screen and (min-width: 25.75em) and (max-width: 47.94em) {
  
} */

/* Below 704px (Smaller tablets)  */

@media (max-width: 44em) {
  .main-nav-list {
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    flex-direction: column;
    /* text-align: center; */
    background-color: #ad3e02;
    gap: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }

  .main-nav-link {
    padding: 20px;
  }

  .menu-icon {
    display: block;
  }

  /* .menu-list {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  } */

  .menu-list {
    grid-template-columns: 1fr 1fr;
    column-gap: 2rem;
    row-gap: 0rem;
    /* i changed this to 2.5rem instead of 4rem so it fits better on smaller screens */
  }

  .menu-notice-para {
    text-align: center;
    line-height: 1.4;
    /* font-weight: 400; */
  }

  .list-item-img {
    width: 40rem;
    /* height: 35rem; */
  }

  .m-special-name,
  .about-us-heading {
    font-size: 3.3rem;
  }

  .footer-content-container {
    gap: 35rem;
  }

  .copyright {
    font-size: 1.1rem;
  }

  .hamburger-menu-icon,
  .close-menu {
    height: 4rem;
    width: 4rem;
  }

  .hamburger-menu-icon {
    display: block;
  }

  .close-menu {
    display: none;
  }

  .f-company-name {
    font-size: 1.4rem;
  }

  .coffee-list {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10rem;
  }

  .coffee-group-pic {
    width: 60rem;
    height: 78rem;
  }

  /* .hamburger-menu-icon {
  font-size: 10rem;
} */

  .add-on-para {
    /* font-size: 1.3rem; */
    line-height: 1.2;
  }

  figcaption {
    font-size: 1.8rem;
  }

  .breakfast-sub-container {
    /* margin-top: 6rem; */
    gap: 25rem;
  }

  .footer-everything {
    padding: 4rem 4rem;
}

}

/* Below 544px (Phones)  */
@media (max-width: 34em) {
  .hero {
    padding: 4.8rem 3.2rem 0 3.2rem;
    gap: 0;
  }

  .hero-img {
    width: 80%;
  }

  .heading-primary {
    font-size: 4rem;
    line-height: 1.2;
  }

  .hero-description {
    word-spacing: 1.4px;
  }

  .menu-list {
    grid-template-columns: repeat(2, 1fr);
    column-gap: 2rem;
    row-gap: 0rem;
    max-width: 60rem;
  }

  .list-item-img {
    width: 30rem;
    /* height: 25rem; */
  }

  /* .list-item-img {
    width: 30rem;
    height: 25rem;
  } */

  .menu-heading {
    font-size: 2.5rem;
  }

  .mini-menu-title {
    font-size: 2.3rem;
  }

  .coffee-type {
    font-size: 2rem;
  }

  .coffee-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 1.8rem;
  }

  .m-special-details-para {
    line-height: 1.5;
    letter-spacing: 0.9px;
  }

  .m-special-name,
  .about-us-heading {
    font-size: 3rem;
  }

  .coffee-group-pic {
    width: 60rem;
    height: 74rem;
  }

  .coffee-types-container {
    flex-direction: column;
    gap: 4rem;
    /* gap: 20rem; */
  }

  .coffee-add-ons {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 1rem;
  }

  .gallery {
    grid-template-columns: repeat(3, 1fr);
  }

  .about-us-pic {
    width: 60rem;
  }

  .footer-content-container {
    gap: 15rem;
  }

  .smoothies-menu-notice {
    text-align: center;
    line-height: 1.5;
  }

  .menu-notice-para {
    letter-spacing: 0.6px;
  }

  .add-on-para {
    line-height: 1.4;
  }

  .b-main-p {
    flex-direction: column;
    gap: 5.5rem;
  }

  .breakfast-sub-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3.5rem;
  }

  .b-cl-pc {
    width: 50rem;
  }

  .gallery-heading {
    font-size: 2.5rem;
  }
}

/* iPhone 16 Pro Max or less */
@media (max-width: 33em) {

  .heading-primary {
    font-size: 3.5rem;
    line-height: 1.2;
  }

  .menu-heading {
    font-size: 3rem;
  }

  .menu-notice-para {
    font-size: 1.5rem;
  }

  .mini-menu-title {
    font-size: 2.5rem;
  }

  .month-special-display {
    height: 60vh;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
  }

  .coffee-group-pic {
    width: 100%;
    height: auto;
  }

  .coffee-item {
    font-size: 2rem;
  }

  .add-on-para {
    font-size: 1.4rem;
  }

  .farm-crepes-logo {
    width: 100%;
    height: 20rem;
  }

  .breakfast-main-pc {
    width: 100%;
    height: auto;
  }

  .coffee-item {
    padding-left: 2rem;
  }

  .b-cl-pc {
    width: 100%;
  }

  .about-us-pic {
    width: 45rem;
  }

   .gallery-heading {
    font-size: 3rem;
  }

  .m-special-details-para {
    line-height: 1.2;
    font-size: 1.4rem;
    letter-spacing: 0.6px;
  }

  .footer-content-container {
    flex-direction: column;
    align-items: start;
    gap: 4rem;
    margin-left: 2rem;
  }

  .f-item-h {
    font-size: 2rem;
  }

  .footer-contact-list,
  .sm-name {
    font-size: 1.5rem;
  }

  footer {
    height: 50rem;
  }

  .f-company-name-container {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .footer-everything {
    padding-bottom: 0;
    padding-left: 0;
  }
}

/* iPhone SE and smaller */
/* @media (max-width: 23.4375em) {
  .menu-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    max-width: 45rem;
  }

  .heading-primary {
    font-size: 1rem;
}
} */

/* @media screen and (min-width: 23.4375em) and (max-width: 24.375em) {
    .heading-primary {
    font-size: 2.7rem;
}

.month-special-display {
    height: 65vh;
}

.coffee-group-pic, .breakfast-main-pc, .b-cl-pc, .farm-crepes-logo {
    width: 100%;
    height: auto;
}

.about-us-pic {
  width: 45rem;
}

.footer-content-container {
    flex-direction: column;
    gap: 4rem;
}

.footer-everything {
  padding-left: 2rem;
}
} */