.about-banner {
  width: 100%;
  height: 420px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.banner-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgb(144 110 12 / 0.32),
    rgb(237 206 23 / 0.12)
  );
  z-index: 1;
}

.banner-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.banner-content h1 {
  font-size: 72px;
  color: #fff;
  font-weight: 700;
  margin-top: 10px;
  text-shadow: 0 10px 25px rgb(0 0 0 / 0.25);
}

.banner-subtitle {
  color: #fff7cf;
  font-size: 15px;
  letter-spacing: 4px;
  text-transform: uppercase;
  font-weight: 500;
}

@media (max-width: 768px) {
  .about-banner {
    height: 320px;
  }

  .banner-content h1 {
    font-size: 48px;
  }

  .banner-subtitle {
    font-size: 13px;
    letter-spacing: 3px;
  }
}

@media (max-width: 520px) {
  .about-banner {
    height: 270px;
  }

  .banner-content h1 {
    font-size: 38px;
  }

  .banner-subtitle {
    font-size: 12px;
    letter-spacing: 2px;
  }
}

/* GALLERY SECTION */
/* =========================
   GALLERY SECTION
========================= */

.gallery-section {
  width: 100%;

  padding: 85px 20px;

  background: linear-gradient(180deg, #fffdf7, #ffffff);

  overflow: hidden;
}

/* =========================
   TITLE
========================= */

.gallery-title-box {
  max-width: 850px;

  margin: auto;

  text-align: center;

  margin-bottom: 60px;
}

.gallery-small-title {
  color: #edce17;

  letter-spacing: 4px;

  font-size: 13px;

  font-weight: 700;

  margin-bottom: 16px;
}

.gallery-title-box h2 {
  color: #906e0c;

  font-size: 54px;

  line-height: 1.2;

  margin-bottom: 22px;
}

.gallery-description {
  color: #666;

  line-height: 1.9;

  font-size: 16px;
}

/* =========================
   GRID
========================= */

.gallery-grid {
  max-width: 1300px;

  margin: auto;

  display: grid;

  grid-template-columns: repeat(3, 1fr);

  grid-auto-rows: 280px;

  gap: 24px;
}

/* LARGE ITEMS */

.gallery-item.large {
  grid-column: span 2;
}

/* =========================
   ITEM
========================= */

.gallery-item {
  position: relative;

  overflow: hidden;

  border-radius: 30px;

  cursor: pointer;

  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.08);
}

.gallery-item img {
  width: 100%;

  height: 100%;

  object-fit: cover;

  transition: 0.5s;
}

/* OVERLAY */

.gallery-overlay {
  position: absolute;

  inset: 0;

  display: flex;

  align-items: flex-end;

  padding: 28px;

  background: linear-gradient(
    to top,
    rgba(144, 110, 12, 0.65),
    rgba(237, 206, 23, 0.06)
  );
}

.gallery-overlay h3 {
  color: white;

  font-size: 28px;

  line-height: 1.3;
}

/* HOVER */

.gallery-item:hover img {
  transform: scale(1.08);
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 992px) {
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }

  .gallery-item.large {
    grid-column: span 2;
  }
}

@media (max-width: 768px) {
  .gallery-section {
    padding: 65px 18px;
  }

  .gallery-title-box {
    margin-bottom: 45px;
  }

  .gallery-title-box h2 {
    font-size: 38px;
  }

  .gallery-grid {
    grid-template-columns: 1fr;

    grid-auto-rows: 240px;
  }

  .gallery-item.large {
    grid-column: span 1;
  }
}

@media (max-width: 520px) {
  .gallery-title-box h2 {
    font-size: 30px;
  }

  .gallery-description {
    font-size: 14px;
  }

  .gallery-overlay {
    padding: 20px;
  }

  .gallery-overlay h3 {
    font-size: 22px;
  }
}
