
/* Main */
* {
  box-sizing: border-box;
}

body {
  padding: 0;
  margin: 0;
  background-image: linear-gradient(to right, #fad0c4 0%, #ffd1ff 100%);
  background-size: contain;
  background-repeat: no-repeat;
}

.main-container {
  background-color: #fff;
  border: 4px solid #222;
  box-shadow: 2px 2px 14px #222;
  font-family: "Work Sans", sans-serif;
  margin: 0 auto;
  max-width: 1680px;
  min-width: 390px;

}

:root {
  --primary-gradient: linear-gradient(
    to top right,
    var(--primary-color),
    blue
    );
  --primary-color: blue;
  --secondary-color: #6c757d;
  --accent-color: #28a745;
  --text-color: #333;
}

.title {
  text-shadow: 0px 1px 2px #222222c8;
}

.headers {
  color: rgb(0, 0, 0);
  font-size: clamp(2rem, 4vh, 2.2rem);
  margin: 0;
  text-align: center;
  text-shadow: 0 .25rem 0.25rem rgba(0, 0, 0, 0.43);
  padding: 20px;
  z-index: 100;
}

.page-header {
  background-color: var(--primary-color);
  color: #fff;
  margin-bottom: 30px;
  padding: 20px 0;
  text-align: center;
}

.authors {
  color: #fff;
  position: relative;
  bottom: 0;
}

.authors-center {
  color: #fff;
  text-align: center;
}

.content {
  color: rgb(255, 255, 255);
  font-size: 2rem;
  text-shadow: 1px 1px 11px #00000095;
  text-align: center;
}

/* --- CTA BUTTON STYLING & 3D EFFECT --- */
.cta-button {
  background-color: var(--primary-color);
  border: 2px solid gold;
  border-radius: 50px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
  color: white;
  font-size: 1.2em;
  font-weight: bold;
  cursor: pointer;
  max-width: 400px;
  padding: 12px 25px;
  text-decoration: none;
  transform-style: preserve-3d;
  transition:
    background-color 0.3s ease,
    transform 0.3s ease,
    box-shadow 0.2s ease;
}

.cta-button:hover {
  opacity: 0.9;
  box-shadow: 0 3px 1px rgba(0, 0, 0, 0.3);
  transform: rotateX(5deg) rotateY(5deg) scale(1.05);
}

.cta-button:active {
  box-shadow: 0 2px 3px rgba(0, 0, 0, 0.2);
  transform: translateY(0) scale(1);
}

@keyframes slideInUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0px);
  }
}

#logo {
  background: var(--primary-gradient);
  border: 2px solid #fff;
  height: 100px;
  width: 100px;
}

img {
  box-shadow: 0 2px 12px #22222266;
  border-radius: 15px;
  margin: 20px;
  max-width: 90%;
  height: auto;
  z-index: 0;
}

  /************************************/
  /* --------HERO SECTION------------------*/

.hero-section {
  height: 100vh;
  background:
    linear-gradient(rgba(235, 231, 231, 0.254), rgba(16, 1, 1, 0.267)),
    url("/img/sandrasheroimage.png")
      no-repeat center center/cover;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: white;
}

/* Navbar Styling */
.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: var(--primary-color);
  color: rgb(255, 255, 255);
  height: auto;
  padding: 0px 0px;
  width: 100%;
  z-index: 10;
  transition: background-color 0.3s ease;
}

.brand-title {
  font-size: 1.5rem;
  font-weight: bold;
}

/* Navigation Links */
.navbar-links ul {
  display: flex;
  margin: 0;
  padding: 0;
  list-style: none;
}

.navbar-links li a {
  text-decoration: none;
  color: rgb(255, 255, 255);
  padding: 10px 15px;
  display: block;
  transition: background-color 0.3s;
}

.navbar-links li a:hover {
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 4px;
}

/* Hamburger Toggle Button (Mobile) */
.toggle-button {
  position: absolute;
  top: 45px;
  right: 20px;
  display: none; 
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 21px;
  cursor: pointer;
}

.toggle-button .hamburger-bar {
  height: 3px;
  width: 100%;
  background-color: white;
  border-radius: 10px;
}

.close-btn {
  display: none;
}

/* --- New Button Styles --- */
.button-container {
  display: flex;
  gap: 2rem;
  margin-top: 30px;
  width: 100%;
  max-width: 500px;
  justify-content: center;
}



.hero-button {
  text-decoration: none;
  padding: 12px 25px;
  font-size: 1rem;
  font-weight: bold;
  border-radius: 5px;
  transition:
    background-color 0.3s,
    transform 0.2s;
  text-align: center;
  flex-grow: 1;
}

.primary {
  background-color: var(--primary-color);
  color: white;
  border: 2px solid #f6f6f6;
}

.secondary {
  background-color: transparent;
  color: white;
  border: 2px solid white;
}

.hero-button:hover {
  transform: translateY(-2px);
}

.primary:hover {
  background-color: #0056b3;
}

.secondary:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

.section--hidden {
  opacity: 0;
  transform: translateY(20px);
}
.section--visible {
  animation: slideInUp 0.5s ease-in-out 1;
}

/***************************/
/* SANDRAS ALOE SECTION-- */

.aloe-container {
  width: 100%;
  height: auto;
  overflow: hidden;

}

#aloe-image {
  border-radius: 0;
  height: 100;
  min-width: 100%;
  object-fit: cover;
  margin: 0
}


/***************************/
/* SECTION ONE */

.section-one-container {
  background-image: linear-gradient(332deg,rgba(2, 0, 36, 1) 0%, rgba(0, 0, 255, 1) 52%, rgba(0, 0, 0, 1) 100%);
  display: flex;
  flex-direction: column;
  place-content: center;
  padding: 2rem;
  min-height: 60vh;

}

.section-one-content {
  background-image: url("./img/groceries.png");
  background-size: contain;
  background-repeat: no-repeat;
  display: flex;
  flex-direction: row;
  gap: 10rem;
  height: auto;
  margin: 0 auto;
  padding: 1rem;
}

.content {
  background-image: linear-gradient(332deg,rgba(2, 0, 36, 1) 0%, rgba(0, 0, 255, 1) 52%, rgba(0, 0, 0, 1) 100%);
  border-radius: 1rem;
  border: 4px solid #fff;
  color: rgb(255, 255, 255);
  font-size: 1.6rem;
  padding: 1rem;
  text-shadow: 1px 1px 11px #00000095;
  text-align: center;
  min-width: 300px
}

.content-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin: 1rem;
  z-index: 10;
}

.sandras-online {
  height: 500px;
  width: auto;
  margin: 0 auto;
  box-shadow: 0 0 7px #22222273;
}

.content-reveal {
  opacity: 0;
  visibility: hidden;
  transition: opacity 1s 1s ease-out;
}

.content-reveal.is-visible {
  opacity: 1;
  visibility: visible;
}

/***************************/
/* SECTION TWO BANNER-- */

.section-two-banner{
  align-items: center;
  background-size: cover;
  background-position: 10% 80%;
  background-repeat: no-repeat;
  display: flex;
  flex-direction: column;
  justify-content: center;
  font-family: Arial, sans-serif;
  min-height: 90vh;
  transition: box-shadow 0.5s ease-in-out;
}


.section-two-image {
  border-radius: 8px;
  border: 3px solid white;
  box-shadow: 0 4px 2px rgba(0, 0, 0, 0.15);
  object-fit: cover;
  height: auto;
  margin: 0px 20px;
  position: relative;
  width: 100%;
}

.section-two-header{
  text-align: center;
  padding: 4rem;
}

.section-two-header h1 {
  color: #fdfdfd;

  font-size: 1.6rem;
  margin-bottom: 5px;
  text-shadow: 1px 1px 2px #00000079;
  width: 100%;
}

.section-two-caption {
  margin-top: auto;
  color: #fff;
  
}

/************************************/
/* --------SECTION 3 ------------------*/

.section-three-container {
  height: auto;
  width: 100%;
  margin: 1rem auto
}

.section-three-content {
  width: 80%;
  height: 600px;
  margin: 0 auto;
  padding: 10px;
  background-color: var(--primary-color);
  border-radius: 10px;
  box-shadow: 0 0 7px #2222225b;
}
.sandras-vitamins {
  height: 100%;
  width: 100%;
  border-radius: 10px;
}

/************************************/
/* --------SECTION 4 ------------------*/

.section-four-container {
  display: flex;
  flex-direction: column;
  height: auto;
  width: 100%;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.column {
  width: 100%;
}

.cafe-image {
  width: 100%
}

/************************************/
/* --------SECTION 5 ------------------*/

.section-five-container {
}

.section-five-content {
  align-items: center;
  background-image: url('./img/rhondamissysale.png'), linear-gradient(pink, yellow);
  background-size: contain cover;
  background-repeat: no-repeat;
  background-position: 20% ;
  display: flex;
  min-height: 700px;
  margin: 0 auto;
  overflow: hidden;
  text-shadow: 2px 2px 7px #222;
}

/* Image Styling */
.section-five-content .image-container {
  flex: 1;
  min-width: 50%;
}

/* Text Styling */
.section-five-container .text-container {
  flex: 2;
  padding: 60px;
  color: #fff;

}

/************************************/
/* --------SECTION 6 ------------------*/

/* Rolling Marquee Banner */

.scroller-texts {
  align-items: center;
  background-image: var(--primary-gradient);
  display: flex;
  height: 200px;
  justify-content: center;
  margin-bottom: 10px;
  text-align: center;
}

.fixed-text {
  align-items: center;
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-left: 0%;
  text-shadow: 2px 2px 5px #222;
}

#scrollerBannerHeader {
  font-size: 2.8rem;
}

.rolling-text {
  height: 50px;
  line-height: 50px;
  text-transform: uppercase;
  overflow: hidden;
  scroll-behavior: smooth;
}

.rolling-text span {
  color: rgb(10, 236, 52);
  position: relative;
  animation: scroll 15s ease-in-out infinite;
  
}

@keyframes scroll {
  0%,
  100% {
    top: 0;
  }
  7% {
    top: 0;
  }
  14% {
    top: -50px;
  }
  21% {
    top: -50px;
  }
  28% {
    top: -100px;
  }
  35% {
    top: -100px;
  }
  42% {
    top: -150px;
  }
  49% {
    top: -150px;
    opacity: 1;
  }

  56% {
    top: -200px;
  }
  63% {
    top: -200px;
    opacity: 1;
  }
  70% {
    top: -250px;
  }
  77% {
    top: -250px;
  }
  84% {
    top: -300px;
  }
  91% {
    top: -300px;
  }
  98% {
    top: -300px;
    opacity: 0.8;
  }
  99% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}


/************************************/
/* --------SECTION 7 ------------------*/

/* Cafe Plate Lunch Rotater Section */

.section-seven-container {
 padding: 1rem;
  height: auto;
}
.rotater-container {

  align-items: center;
  display: flex;
  flex-direction: column;
  height: auto;
  justify-content: center;
  overflow: hidden;
  text-align: center;
  white-space: pre-wrap;
}

.rotater-image-container {

  display: flex;
  height: 600px;
  max-width: 600px
}

#daily-plate {
  border: 1px solid #333;
  height: 100%;
  width: 100%;
  margin: 0 auto;
  object-fit: cover

  transition: all 0.5s ease-in-out;
}

#daily-plate:hover {
}

#messageOfDay {
  font-size: 1.4rem;
}

/************************************/
/* --------SECTION 8 ------------------*/

.titles {
  color: #fff;
}

.section-eight-content {
  height: auto;
  padding: 0px;
  align-items: center;
  display: flex;
  justify-content: center;

  overflow: hidden;
}

.card-container-eight {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 100%;
}

.card {
  background-color: rgb(0, 0, 0);
  padding: 10px;
  height: 400px;
  width: 100%;
  position: relative;
  overflow: hidden;
  mask-image: linear-gradient(
    to right,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 1) 40%,
    rgba(0, 0, 0, 1) 100%
  );
  box-shadow: 0 2px 2px rgba(0, 0, 0, 0.335);
}

.card:hover {
  box-shadow: 0 2px 14px rgba(255, 254, 254, 0.874);
  mask-image: linear-gradient(
    to right,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 1) 20%,
    rgba(0, 0, 0, 1) 100%
  );
}

.card-titles {
  color: #000000;
  font-size: 1.4rem;
  text-shadow: 0 1px 1px #00000060;
}

.card-text-container {
  align-items: center;
  background: rgba(255, 255, 255, 0.81);
  border-radius: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin: 0 auto;
  max-width: 70%;
  opacity: 0;
  padding: 10px;
  position: relative;
  text-align: center;
  transition: opacity 0.5s ease;
  z-index: 2;
}

.card:hover .card-text-container {
  opacity: 1;
}

.card-img {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: absolute;
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
  z-index: 1;
}

.card-image-1 {
  background-image: url("/img/vitsupp.png");
}

.card-image-2 {
  background-image: url("/img/smotheredchickenplate.jpg");
}

.card-image-3 {
  background-image: url("/img/jarrellbrothersbutter.jpg");
}


/* --- About Page Styles --- */

.about-container {
  display: flex;
  flex-direction: column;

  margin: 0 auto;
}

.about-container .page-header {
  background-color: blue;
  margin: 0;
  height: 20vh;
  place-content: center;
  width: 100%;
}

/* 1. Story Section Layout */
.story-section {
  align-items: center;
  display: flex;
  gap: 40px;
  margin-left: 50px;
  padding: 20px 0px;
}

.story-text,
.story-image {
  flex: 1;
}

.story-text h2 {
  color: blue;
  margin-bottom: 15px;
}

.story-text p {
  color: #000000;
  line-height: 1.6;
  margin-bottom: 15px;
  text-align: left;
}

.story-image img {
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(25, 0, 0, 0.315);
  height: auto;
  width: 100%;
}

/* 2. Local Section Layout */
.about-section {
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  gap: 20px;
  margin-bottom: 50px;
  padding: 2vw;
  text-align: left;
}

.about-cards {
  background-color: #ebebeb74;
  display: flex;
  flex-direction: column;
  border-radius: 7px;
  box-shadow: 0 0 5px #222222b1;
  flex: 1;
  padding: 50px;
}

.reasons {
  background-image:
    linear-gradient( #22222288, #000000), url("./img/produce feb 263.jpg");
  color: #fff;
  background-size: cover;
  background-position: 0%;
}

#usda-organic {
  height: 200px;
  width: 200px;
}

#local-headers {
  border-bottom: 2px solid blue;

  display: inline-block;
  margin-bottom: 15px;
  padding-bottom: 25px;
}

.about-cards ul {
  list-style: none;
  padding: 0;
}

.about-cards ul li {
  padding: 5px 0;
}

/* 3. Stores Section Layout */
.stores-section h2 {
  color: #333;
  margin-bottom: 40px;
  text-align: center;
}

.store-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.stores {
  background: white;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
  padding: 20px;
  max-width: 250px;
  text-align: center;
}

.stores img {
  border: 4px solid blue;
  border-radius: 50%;
  height: 150px;
  margin-bottom: 15px;
  object-fit: contain;
  width: 150px;
}

.stores h4 {
  color: #333;
  margin-bottom: 5px;
}

.stores .address {
  color: blue;
  font-style: italic;
}

/************************************/
/* --------MENU PAGE------------------*/


.page-header {
  padding: 20px;
  font-size: 3.4rem;
  text-shadow: 0 2px 4px #222;
  background-color: transparent;
}

.menus {
  display: flex;
  flex-direction: column;
  margin: 1rem auto;
  width: 100%;
 
}

.menus img {
  height: auto;
  max-width: 100%;
  border-radius: 1rem;
  box-shadow: 0px 0px 17px #01000085;
}
/************************************/
/* --------FOOTER SECTION ------------------*/

footer {
  background-color: var(--primary-color);

  color: rgb(255, 255, 255);
  margin: 0px;
  padding: 10px;
  text-align: center;
}

#footer-header {
  padding: 20px;
}
.footer-column {
  flex: 1;
  list-style-type: none;
  margin-bottom: 30px;
  min-width: 250px;
}

ul {
  list-style: none;
}

a:link {
  text-decoration: none;
  color: white;
}

footer a:visited {
  color: rgb(255, 0, 0);
}

footer a:hover {
  color: red;
  text-decoration: underline;
}

/* a:active {
  color: red;
  text-decoration: underline;
} */

.copyright {
  font-size: 10px;
}

/*--- NAV Page Responsiveness --- */

@media (min-width: 1300px) {
  .navbar {
    max-width: 1400px;
  }
  .section-four-content-container {
    height: 800px;
  }
  .section-four-content-container::before {
    background-size: 800px;
  }

  .section-four-content-container::after {
    background-size: 800px;
  }

}

@media (max-width: 1050px) {
  
   /************************************/
  /* --------SECTION 4 ------------------*/
  .section-four-content-container {
    height: 800px;
  }
  .section-four-content-container::before {
    background-size: cover;
  }

  .section-four-content-container::after {
    background-size: cover;
  }
  
   /************************************/
  /* --------SECTION 8 ------------------*/

  
  .section-eight-container {
    height: 100vh;
    max-width: 100%;
    margin: 0 auto;
    display: block;
  }

  .card {
    width: 100%;
    max-height: 400px;
    justify-content: space-around;
    mask-image: none;
  }

  .card:hover {
    mask-image: none;
  }

  .card-text-container {
    opacity: 1;
  }
  .card-img {
    background-position: center;
    background-size: cover;
  }
  .card-image-3 {
    background-position: 10% 40%;
  }
}

@media (max-width: 900px) {
  .story-section {
    flex-direction: column;
  }

  .story-image {
    order: -1;
  }
}

@media (max-width: 768px) {

  .nav-container {
    display: block;
    align-items: flex-start;
    height: auto;
  }

  #logo {
    height: 70px;
    width: 70px;
  }

  .toggle-button {
    display: flex; /* Show the hamburger icon on mobile */
  }

  .toggle-button.hidden {
    display: none;
  }

  .navbar-links {
    display: flex;
    max-height: 0;
    width: 100%;
    opacity: 0;
    overflow: hidden;
    transition:
      opacity 0.2s ease-in,
      max-height 0.4s ease-in;
  }

  .navbar-links ul {
    width: 100%;
    flex-direction: column;
  }

  .navbar-links ul li {
    text-align: center;
  }

  .navbar-links ul li a {
    padding: 20px 0;
  }

  .navbar-links.active {
    max-height: 100%;
    opacity: 1;
  }
  .button-mobile {
    height: 100%;
    width: 100%;
  }

  .close-btn.active {
    background-color: transparent;
    border: none;
    color: #fff;
    display: block;
    font-size: 1.8rem;
    cursor: pointer;
  }
  
    /************************************/
  /* --------SECTION 1  ------------------*/

  .section-one-content {
    display: flex;
    flex-direction: column;
  }


  /************************************/
  /* --------SECTION 2  ------------------*/

  .section-two-container {
    height: auto;
  }

  .section-two-header h1 {
    font-size: 1.4em;
  }

  /************************************/
  /* --------SECTION 3 ------------------*/

  .section-three-content {
    padding: 0;
    background-color: none;
    width: 100%;
  }

  /************************************/
  /* --------SECTION 4. CAFE ------------------*/

  .section-four-content-container {
  }

  .section-four-content-container::before,
  .section-four-content-container::after {
    width: 100%;
  }

  .section-four-content-container::before {
    height: 50%;
  }

  .section-four-content-container::after {
    height: 50%;
    top: 50%;
  }

  .content-section p,
  .content-section h2 {
    padding: 8px;
  }

  /************************************/
  /* --------SECTION 5.  ------------------*/

  .section-five-content {
    flex-direction: column;
    max-width: 100%;
  }

/************************************/
  /* --------About ------------------*/

  .local-section {
    flex-direction: column;
    padding: 0px;
  }

  .about-cards {
    margin-bottom: 20px;
  }

  .about-container {
    margin: 20px;
    padding: 0px;
    font-size: 89%;
  }
  .store-grid {
    gap: 10px;
  }
  .stores {
    width: 100%;
  }
}

@media (max-width: 680px) {
  .cta-button {
    font-size: 79%;
  }
  .headers {
    font-size: 1.2em;
    white-space: nowrap;
  }

  .authors {
    font-size: 49%;
    position: relative;
    right: 0;
  }

  .authors-center {
    font-size: 49%;
  }

  h1 {
    font-size: 3vh;
    margin: 0 auto;
    position: relative;
    width: 100%;
    text-align: center;
  }

  h3 {
    padding-top: 20px;
  }
  
  
  

  /************************************/
  /* --------SECTION 1. ------------------*/

  .content {
    font-size: 1em;
    top: 20%;
  }

/************************************/
  /* --------SECTION 2. ------------------*/

  .section-two-banner {
    min-height: 600px;
     background-size: cover;
  }

  .section-two-image {
    margin: 20px 0;
    padding-right: 0;
  }

  .section-two-image img {
    margin-left: 0;
  }

  .section-two-header {
    margin-right: 0;
  }

  .section-two-header h1 {
    font-size: 1em;
  }
  /************************************/
  /* --------SECTION 3.  ------------------*/

  .section-three-container {
    height: auto;
    width: 100%;
  }

  .section-three-content {
    height: 400px;
    width: 100%;
    padding: 0;
  }

  .sandras-vitamins {
    height: 100%;
    width: 100%;
    object-fit: cover;
  }

  /************************************/
  /* --------SECTION 4. ------------------*/

  .section-four-container {
    background-position: 0%;
    background-repeat: no-repeat;
    background-size: cover;
    height: auto;
    margin: 0;
  }

   /************************************/
  /* --------SECTION 5. ------------------*/

  .section-five-content {
    background: url('./img/rhondamissysale.png') no-repeat center top / 100% 50%, url('./img/springsalemlc.jpg') no-repeat center bottom / 100% 50%;
  }

  /************************************/
  /* --------SECTION 6. scroller ------------------*/

  .fixed-text {
    margin-left: 0px;
  }

  .scrollerBannerHeader {
    font-size: 1em;
  }
  .rolling-text {
    font-size: 1.4em;
    height: 50px;
    padding-bottom: 0px;
  }

/************************************/
  /* --------SECTION 7. CAFE Plate of Day------------------*/

  #messageOfDay {
    font-size: 1.2em;
  }

  #daily-plate {
    max-width: 100%;

  }

  .section-seven-container .headers {
    padding-bottom: 0;
  }
  
  /************************************/
  /* --------SECTION 8. ------------------*/
  
  .section-eight-container {
    height: auto;
  }
  .section-eight-content {
    flex-direction: column;
  }
  .card-titles {
    font-size: 1em;
  }
  .card-text-container {
    font-size: 79%;
  }

  .card-image-1 {
    background-image: url("/img/vitmobile.png");
    image-rendering: crisp-edges;
  }

  .card-image-3 {
    background-position: 0% 30%;
    background-size: cover;
  }

  /************************************/
  /* --------FOOTER. ------------------*/

  .footer-column {
    min-width: 100%;
    padding-right: 0;
    text-align: center;
  }
  .footer-column ul {
    display: inline-block;
    text-align: left;
  }
  .social-icons {
    margin-bottom: 20px;
  }

  /************************************/
  /* --------MENU PAGE. ------------------*/

  .page-header {
    font-size: 2.8em;
  }
  
  
  .menu-header p {
    font-size: 77%;
  }

 /************************************/
  /* --------ABOUT PAGE. ------------------*/
  .about-container {
    text-align: center;
  }

  .story-section {
    display: block;
    margin: 4px;
    margin-left: 0;
    padding: 0;
  }

  .about-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, auto));
  }
}

@media (prefers-color-scheme: dark) {
  .title {
    background-color: rgb(211, 25, 25);
    color: white;
    outline: 25px dashed black;
  }
}

@media only screen and (orientation: landscape) {
  .section {
    height: auto;
  }
  .about-container {
    height: auto;
  }

  .menu-container {
    height: auto;
  }
  .menu-header {
    height: 80vh;
  }
}
