.gallery-banner {
  width: 100%;
  height: 80vh;
  background-image:
    linear-gradient(to bottom, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.4) 100%),
    url("/images/the-gallery-banner.webp");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 1.5rem;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
}
.gallery-banner-inner {
  width: 100%;
  max-width: 1600px;
  padding: 0 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  box-sizing: border-box;
}

.gallery-banner-inner span {
  color: #fff;
  font-family: Jost;
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.345rem;
  text-transform: uppercase;
}

.gallery-banner-inner h1 {
  color: #fff;
  font-family: "Cormorant Garamond", serif;
  font-size: 7.3125rem;
  font-style: italic;
  font-weight: 400;
  line-height: 7.375rem;
}

.gallery-banner p {
  color: #fff;
  font-family: Jost;
  font-size: 1.1875rem;
  font-weight: 300;
  line-height: 1.6;
  letter-spacing: 0.15438rem;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .gallery-banner h1 {
    font-size: 5rem;
    line-height: 5.5rem;
  }
}

@media (max-width: 768px) {
  .gallery-banner {
    height: auto;
    min-height: 80vh;
    padding: 4rem 0;
  }

  .gallery-banner h1 {
    font-size: 3.5rem;
    line-height: 4rem;
  }

  .gallery-banner p {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .gallery-banner h1 {
    font-size: 2.75rem;
    line-height: 3.2rem;
  }

  .gallery-banner p {
    font-size: 0.9rem;
  }
}

.gallery-catering-container {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 5rem 2rem;
}

.gallery-catering-inner {
  width: 100%;
  max-width: 1200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4rem;
}

.gallery-catering-inner span {
  font-family: "Jost", sans-serif;
  font-weight: 400;
  font-style: Regular;
  font-size: 1.5rem;
  line-height: 100%;
  letter-spacing: 46%;
  text-align: center;
  text-transform: uppercase;
  color: var(--accent-color);
}

.gallery-catering-inner h2 {
  color: var(--primary-color);
  text-align: center;
  font-family: "Cormorant Garamond";
  font-size: 3.6875rem;
  font-weight: 400;
  margin-bottom: 2.5rem;
}

.gallery-catering-inner p {
  color: var(--secondary-text-color);
  text-align: center;
  font-family: Jost;
  font-size: 1.1875rem;
  font-weight: 300;
  line-height: 1.6;
  letter-spacing: 0.15438rem;
}

hr {
  width: 100%;
  border: 0.5px solid #d2cecb52;
}

@media (max-width: 1024px) {
  .gallery-catering-container {
    padding: 4rem 2rem;
    margin-top: 4rem;
  }

  .gallery-catering-inner h2 {
    font-size: 3rem;
  }
}

@media (max-width: 768px) {
  .gallery-catering-inner {
    padding: 3rem 1.5rem;
    margin-top: 3rem;
  }

  .gallery-catering-inner h2 {
    font-size: 2.5rem;
    line-height: 2.8rem;
  }

  .gallery-catering-inner p {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .gallery-catering-inner {
    padding: 2rem 1rem;
  }

  .gallery-catering-inner h2 {
    font-size: 2rem;
    line-height: 2.2rem;
  }
}

/*GALLERY FILTER SECTION*/

.gallery-section {
  width: 100%;
  padding: 4rem 2rem 6rem;
  box-sizing: border-box;
}

.gallery-section-inner {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3rem;
}

.gallery-filters {
  display: flex;
  align-items: center;
  background: #ede9e6;
  padding: 0.6rem 1rem;
  width: 100%;
  max-width: 860px;
  border-radius: 4px;
  margin-bottom: 5rem;
  flex-wrap: wrap;
}

@media (max-width: 480px) {


.gallery-filters {
  display: flex;
  gap: 10px;
  margin-bottom: 0rem;
}

}

.gallery-filter-btn {
  flex: 1;
  background: transparent;
  border: none;
  padding: 0.74rem 2rem;
  font-family: "Jost", sans-serif;
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.18rem;
  text-transform: uppercase;
  color: var(--secondary-text-color);
  cursor: pointer;
  transition:
    color 0.2s ease,
    background 0.2s ease,
    box-shadow 0.2s ease;
  white-space: nowrap;
  text-align: center;
  border-radius: 4px;
}

.gallery-filter-btn:hover {
  color: var(--intro-text-color);
}

.gallery-filter-btn.active {
  background: var(--primary-color);
  color: var(--intro-text-color);
  border: 1px solid #d2cecb;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}

.gallery-grid {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.6rem;
}

/* Item base */
.gallery-item {
  position: relative;
  overflow: hidden;
  background: #e8e4e1;
  cursor: pointer;
  aspect-ratio: 4 / 3;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.38);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-item-overlay {
  opacity: 1;
}

.gallery-item.is-hidden {
  display: none;
}

.gallery-item.load-more-hidden {
  display: none;
}

.gallery-load-more-wrap {
  display: flex;
  justify-content: center;
  width: 100%;
  margin-top: 2rem;
}

.gallery-load-more-wrap.all-loaded {
  display: none;
}

.gallery-load-more-btn {
  background: transparent;
  color: var(--text-color);
  border: 1px solid var(--text-color);
  padding: 0.85rem 3.5rem;
  font-family: "Jost", sans-serif;
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.25rem;
  text-transform: uppercase;
  cursor: pointer;
  transition:
    background 0.25s ease,
    color 0.25s ease;
}

.gallery-load-more-btn:hover {
  background: var(--accent-color);
  color: #fff;
  border-color: var(--accent-color);
}

.gallery-lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9000;
  background: rgba(0, 0, 0, 0.92);
  align-items: center;
  justify-content: center;
}

.gallery-lightbox.open {
  display: flex;
}

.gallery-lightbox-img {
  max-width: 90vw;
  max-height: 88vh;
  object-fit: contain;
  display: block;
  user-select: none;
}

.gallery-lightbox-close {
  position: absolute;
  top: 1.25rem;
  right: 1.5rem;
  background: none;
  border: none;
  color: #fff;
  font-size: 2rem;
  line-height: 1;
  padding: 0.5rem;
  cursor: pointer;
  opacity: 0.75;
  transition: opacity 0.2s;
  z-index: 1;
}

.gallery-lightbox-close:hover {
  opacity: 1;
}

.gallery-lightbox-prev,
.gallery-lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.1);
  border: none;
  padding: 0.85rem;
  cursor: pointer;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.8;
  transition:
    opacity 0.2s,
    background 0.2s;
}

.gallery-lightbox-prev:hover,
.gallery-lightbox-next:hover {
  opacity: 1;
  background: rgba(255, 255, 255, 0.2);
}

.gallery-lightbox-prev {
  left: 1.5rem;
}
.gallery-lightbox-next {
  right: 1.5rem;
}

.gallery-lightbox-prev img,
.gallery-lightbox-next img {
  width: 28px;
  height: 28px;
  object-fit: contain;
  display: block;
  filter: brightness(0) invert(1);
}

@media (max-width: 768px) {
  .gallery-section {
    padding: 3rem 1.25rem 5rem;
  }
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
  }
  .gallery-filters {
    max-width: 100%;
  }
  .gallery-filter-btn {
    padding: 0.5rem 0.8rem;
    font-size: 0.68rem;
    letter-spacing: 0.12rem;
  }
  .gallery-lightbox-prev {
    left: 0.5rem;
  }
  .gallery-lightbox-next {
    right: 0.5rem;
  }
}

@media (max-width: 480px) {
  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }
}

.ready-to-slow-down {
  width: 100%;
  height: 100vh;
  background-image:
    linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.4) 100%),
    url("/images/home-cta-banner.webp");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 3rem;
}

.ready-to-slow-down > span {
  font-family: Jost;
  font-weight: 400;
  font-style: Regular;
  font-size: 0.688rem;
  line-height: 100%;
  letter-spacing: 59%;
  text-align: center;
  text-transform: uppercase;
  color: #fff;
}

.ready-to-slow-down > h2 {
  color: #fff;
  font-family: "Cormorant Garamond";
  font-size: 7.3125rem;
  font-style: italic;
  font-weight: 400;
  line-height: 7.375rem;
}

.ready-to-slow-down > p {
  color: #fff;
  text-align: center;
  font-family: Jost;
  font-size: 1.1875rem;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
  letter-spacing: 0.15438rem;
}

@media (max-width: 1024px) {
  .ready-to-slow-down {
    padding: 0 2rem;
    gap: 2rem;
  }

  .ready-to-slow-down > h2 {
    font-size: 5rem;
    line-height: 5.5rem;
  }
}

@media (max-width: 768px) {
  .ready-to-slow-down {
    height: auto;
    min-height: 80vh;
    padding: 4rem 1.5rem;
    gap: 1.5rem;
  }

  .ready-to-slow-down > h2 {
    font-size: 3.5rem;
    line-height: 4rem;
  }

  .ready-to-slow-down > p {
    font-size: 1rem;
  }

  .ready-to-slow-down .two-column-btn {
    flex-direction: column;
    gap: 1rem;
    width: 100%;
    max-width: 300px;
  }

  .ready-to-slow-down .two-column-btn button {
    width: 100%;
  }

  .carousel-arrow {
    opacity: 1;
  }
}

@media (max-width: 480px) {
  .ready-to-slow-down > h2 {
    font-size: 2.75rem;
    line-height: 3.2rem;
  }

  .ready-to-slow-down > p {
    font-size: 0.9rem;
  }
}
