/* press Event Styles */
#press-event {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding-top: 2rem;
  font-family: Quicksand, Arial, Helvetica, sans-serif;
}

.logo-title-container {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}

.logo-title-container img {
  width: 100px;
}

.logo-title-container h2 {
  font-size: 3rem;
  text-align: center;
}

.womens-h2 {
  font-size: 2rem !important;
}

#press-event p {
  font-size: 1.8rem;
  text-align: left;
  padding: 2rem;
}

#press-event ol {
  display: block;
  margin: 0 auto;
  font-size: 1.8rem;
}

#press-event ol li {
  margin-bottom: 1rem;
}

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

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

.press-visit-page-btn {
  background-color: rgb(34, 34, 34);
  color: #fff !important;
  padding: 1rem;
  text-align: center;
  text-decoration: none;
  width: 300px;
  display: block;
  margin: 2rem auto;
  transition: background-color 0.3s ease-in-out;
}

.press-visit-page-btn:hover {
  background-color: #555;
}

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

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

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

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

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

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

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

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

/* Press Simple Gallery Styles */
#press-simple-gallery {
  width: 100%;
  height: 100vh;
  display: flex;
}

.press-simple-gallery-right {
  flex-basis: 55%;
  display: flex;
  padding: 1rem 1rem 1rem 0rem;
}

.press-simple-gallery-right img {
  width: 100%;
}

.press-simple-gallery-left {
  flex-basis: 45%;
  display: flex;
  flex-direction: column;
  gap: 0rem;
}

.press-simple-gallery-left img {
  width: 100%;
  height: 100%;
}

.press-simple-gallery-left-top,
.press-simple-gallery-left-bottom {
  display: flex;
  flex: 1;
  height: 50%;
  gap: 1rem;
}

.press-simple-gallery-left-top {
  padding: 1rem 1rem 0.5rem 1rem;
}

.press-simple-gallery-left-bottom {
  padding: 0.5rem 1rem 1rem 1rem;
}

/* Press Event Two Images */
.press-event-two-images {
  display: flex;
  width: 100%;
  gap: 1rem;
  padding: 1rem 1rem 0 1rem;
}

.press-event-two-images img:nth-child(1) {
  width: 60%;
}

.press-event-two-images img:nth-child(2) {
  width: 39%;
}

/* Press Simple Gallery Flipped Styles */
#press-simple-gallery-flipped {
  width: 100%;

  display: flex;
}

.press-simple-gallery-flipped-left {
  flex-basis: 70%;
  display: flex;
  padding: 1rem 0rem 1rem 1rem;
}

.press-simple-gallery-flipped-left img {
  width: 100%;
}

.press-simple-gallery-flipped-right {
  flex-basis: 30%;
  display: flex;
  flex-direction: column;
  gap: 0rem;
}

.press-simple-gallery-flipped-right img {
  width: 100%;
  height: 100%;
}

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

.press-simple-gallery-flipped-right-top {
  padding: 1rem 1rem 0.5rem 1rem;
}

.press-simple-gallery-flipped-right-bottom {
  padding: 0.5rem 1rem 1rem 1rem;
}

/* Misc Conditional Classes */
.press-gallery-right-bottom.remove,
.press-gallery-left.remove,
.standard-flex-gallery-3.remove {
  padding-bottom: 0 !important;
}

/* Standard Gallery Styles */
.standard-flex-gallery-2,
.standard-flex-gallery-3 {
  display: flex;
  justify-content: center;
  gap: 1rem;
  padding: 1rem;
  flex-wrap: wrap;
}

.standard-flex-gallery-2 img {
  flex: 1 1 calc(50% - 1rem); /* 2 per row */
  max-width: calc(50% - 1rem);
  height: auto;
}

.standard-flex-gallery-3 img {
  flex: 1 1 calc(33.3% - 1rem); /* 3 per row */
  max-width: calc(33.3% - 1rem);
  height: auto;
}

.orange {
  color: rgb(235, 157, 63);
}

/* Jello Flow Styles */
#jelly-flow {
  display: flex;
  width: 100%;
  padding: 2rem;
}

#jelly-flow img {
  width: 60%;
  padding: 2rem;
}

.jelly-flow-text-container {
  font-family: Quicksand, Arial, Helvetica, sans-serif;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  line-height: 1.3;
}

.jelly-flow-text-container h2 {
  font-size: 3rem;
}

.jelly-flow-text-container p {
  font-size: 1.4rem;
}

/* Public Garden Logo */
.public-garden-logo {
  height: 100px;
  width: 50px !important;
}

/* Press Mobile Styles */
@media (max-width: 768px) {
  /* Press Event Styles */
  #press-event {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: start;
    padding-top: 2rem;
    gap: 2rem;
  }

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

  #press-event ol {
    font-size: 1.2rem;
    list-style-position: inside; /* numbers stay inside */
    padding-left: 1rem; /* ensures some space for numbers */
  }

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

  .logo-title-container {
    flex-direction: column;
  }

  .logo-title-container img {
    width: 200px;
  }

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

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

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

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

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

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

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

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

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

  /* Press Simple Gallery Styles */
  #press-simple-gallery {
    height: 100%;
    flex-direction: column-reverse;
  }

  .press-simple-gallery-right {
    padding: 0rem 1rem 0.5rem 1rem;
  }

  /* Press Event Two Images Styles */
  .press-event-two-images {
    display: flex;
    flex-direction: column;
    align-items: stretch; /* make children fill width */
    width: 100%;
    padding: 0 1rem 1rem 1rem;
    gap: 1rem;
  }

  .press-event-two-images img {
    display: block; /* prevents inline whitespace */
    width: 100% !important; /* force full width */
    height: auto;
    max-width: 100%;
    padding: 0 !important;
  }

  /* Press Simple Gallery Flipped Styles */
  #press-simple-gallery-flipped {
    height: 100%;
    flex-direction: column-reverse;
  }

  .press-simple-gallery-flipped-left {
    padding: 0rem 1rem 1rem 1rem;
  }

  /* Misc Conditional Classes */
  .add {
    margin-bottom: 1rem;
  }

  .standard-flex-gallery-2 img,
  .standard-flex-gallery-3 img {
    flex: 1; /* 1 per row */
    max-width: 100%;
    height: auto;
  }

  /* Jelly Flow Mobile Styles */
  #jelly-flow {
    flex-direction: column;
  }

  #jelly-flow img {
    width: 100%;
    padding: 0;
  }

  .jelly-flow-text-container h2 {
    text-align: center;
  }

  /* Public Garden Logo */
  .public-garden-logo {
    height: 200px;
    width: 120px !important;
  }
}
