@import url("https://fonts.googleapis.com/css2?family=Quicksand&family=Oxanium:wght@200..800&display=swap");

/* Stories Header Styles */
#stories-header-section {
  height: 100vh;
  display: flex;
  flex-direction: column;
}

.stories-header-background {
  flex: 1;
  background-image: url("images/stories-header-opt.jpg");
  background-color: rgb(34, 34, 34);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}

/* Stories About Style */
#stories-about-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100vh;
  padding: 2rem;
  font-family: Quicksand, Arial, Helvetica, sans-serif;
}
#stories-about-section h2 {
  font-size: 3rem;
  margin-bottom: 20px;
}

.stories-about-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
}

.stories-about-container {
  flex-basis: 50%;
  height: 100%;
  padding: 0 2rem;
}

.stories-about-container img {
  width: 100%;
}

.stories-about-container.left img {
  display: block;
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.stories-about-container.right {
  display: flex;
  flex-direction: column;
  align-items: start;
  font-size: 1.8rem;
  text-align: center;
}

.stories-about-text-container {
  width: 100%;
  flex: 1;
  padding: 2rem;
  background-color: #fff;
  font-size: 1.6rem;
  line-height: 1.3;
}

.stories-about-text-container img {
  width: 50%;
  display: block;
  margin: 0 auto 2rem auto;
}

/* Left - Right Section Styles */
#left-right-section {
  width: 100%;
  display: flex;
}

.lr-img-container {
  flex-basis: 50%;
}

.lr-img-container img {
  width: 100%;
  object-fit: cover;
  display: block;
}

/* Female Business Section Styles */
#female-business-section {
  width: 100%;
  height: 100vh;
  display: flex;
  flex-direction: column;
}

.female-business-logo-container {
  width: 100%;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  padding: 4rem 0 2rem 0;
  flex-wrap: wrap;
}

.female-business-logo-container img {
  height: 100px;
}

.female-business-text-container {
  padding: 2rem;
  text-align: center;
  font-family: Quicksand, Arial, Helvetica, sans-serif;
}

.female-business-text-container h2 {
  text-align: center;
  font-size: 3rem;
}

.female-business-text-container p {
  font-size: 2rem;
}

/* Stories Large Image Styles */
.stories-lg {
  width: 100%;
  display: block;
  margin: 0 auto;
  object-fit: cover;
}

/* Stories Gallery Styles */
#stories-gallery {
  width: 100%;
  height: 100vh;
  display: flex;
}

.stories-gallery-left {
  flex-basis: 40%;
  display: flex;
  padding: 1rem 0 1rem 1rem;
}

.stories-gallery-left img {
  width: 100%;
}

.stories-gallery-right {
  flex-basis: 60%;
  display: flex;
  flex-direction: column;
  gap: 0rem;
}

.stories-gallery-right img {
  width: 50%;
  height: 100%;
}

.stories-gallery-right-top,
.stories-gallery-right-bottom {
  display: flex;
  flex: 1;
  height: 50%;
  gap: 1rem;
}

.stories-gallery-right-top {
  padding: 1rem 1rem 0.5rem 1rem;
}

.stories-gallery-right-bottom {
  padding: 0.5rem 1rem 1rem 1rem;
}

/* Stories Event Styles */
#stories-event {
  width: 100%;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding-top: 2rem;
}

#stories-event p {
  font-family: Quicksand, Arial, Helvetica, sans-serif;
  font-size: 1.8rem;
  text-align: center;
  padding: 0 2rem;
}

/* Stories Small Gallery Styles */
#stories-small-gallery {
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 1rem;
}

#stories-small-gallery img {
  width: 32%;
}

/* Stories Mobile Styles */
@media (max-width: 768px) {
  /* Stories Header Mobile Styles */
  #stories-header-section {
    height: 90vh;
    display: flex;
    flex-direction: column;
  }

  .stories-header-background {
    background-attachment: scroll;
    background-image: url("images/stories-header-mobile-opt.jpg");
  }

  /* Stories About Mobile Styles */
  #stories-about-section {
    padding: 0;
    height: 100%;
  }

  #stories-about-section h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 20px;
  }

  .stories-about-wrapper {
    flex-wrap: wrap;
    flex-direction: column-reverse;
  }

  .stories-about-container {
    flex-basis: 100%;
    padding: 1rem;
  }

  .stories-about-text-container {
    font-size: 1.4rem;
    padding: 0;
  }

  .stories-about-text-container img {
    width: 100%;
    margin-bottom: 2rem;
  }

  /* Female Business Section Styles */
  #female-business-section {
    height: 100%;
  }

  .female-business-logo-container {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 4rem 0 2rem 0;
    flex-wrap: wrap;
    gap: 2rem;
  }

  .female-business-logo-container img {
    height: auto;
    width: 300px;
  }

  .female-business-text-container {
    padding: 1.4rem;
  }

  .female-business-text-container h2 {
    font-size: 2rem;
  }

  .female-business-text-container p {
    font-size: 1.4rem;
    line-height: 1.7rem;
  }

  /* Stories Gallery Styles */
  #stories-gallery {
    height: 100%;
    flex-direction: column;
  }

  .stories-gallery-left {
    flex-basis: 33%;
    display: flex;
    padding: 1rem 1rem 0 1rem;
  }

  .stories-gallery-right {
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 0rem;
  }

  .stories-gallery-right img {
    width: 100%;
    height: 100%;
  }

  .stories-gallery-right-top,
  .stories-gallery-right-bottom {
    flex-direction: column;
  }

  .stories-gallery-right-top {
    padding: 1rem 1rem 0.5rem 1rem;
  }

  .stories-gallery-right-bottom {
    padding: 0.5rem 1rem 1rem 1rem;
  }

  /* Left - Right Section Mobile Styles */
  #left-right-section {
    height: 100%;
    flex-direction: column;
  }

  .lr-img-container {
    flex-basis: 100%;
    padding: 0.5rem 1rem;
  }

  .stories-lg {
    padding: 0 1rem;
  }

  /* Stories Event Styles */
  #stories-event {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: start;
    padding-top: 2rem;
    gap: 2rem;
  }

  #stories-event p {
    font-size: 1.4rem;
    text-align: left;
    padding: 0 2rem;
  }

  #stories-event img {
    padding: 0 1rem;
  }

  /* Stories Small Gallery Styles */
  #stories-small-gallery {
    flex-direction: column;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem;
  }

  #stories-small-gallery img {
    width: 100%;
  }
}
