/* ===============================
   GALLERY HERO SECTION
   =============================== */
.gallery-hero {
  background: url('../images/about_page.jpg') center center/cover no-repeat;
  min-height: 90vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;
  overflow: hidden;
}

.gallery-hero::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 1;
}

.gallery-hero .hero-overlay {
  position: relative;
  z-index: 2;
}

.gallery-hero h1 {
  font-size: 3rem;
  font-weight: 700;
  color: #fff;
}

.gallery-hero p {
  font-size: 1.1rem;
  color: #eee;
}

/* ===============================
   GALLERY GRID
   =============================== */
.gallery-section {
  background-color: #f8f8f6;
  animation: fadeSlide 0.5s ease-in-out;
}

.section-title {
  color: #b29a67;
}

.gallery-img {
  height: 230px;
  width: 100%;
  object-fit: cover;
  transition: transform 0.4s ease, filter 0.4s ease;
}

.hover-card:hover .gallery-img {
  transform: scale(1.05);
  filter: brightness(70%);
}

/* Overlay Effect */
.overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.45);
  opacity: 0;
  transition: opacity 0.4s ease;
}
.hover-card:hover .overlay {
  opacity: 1;
}

/* Fade-in Animation */
.fade-in {
  opacity: 0;
  transform: translateY(40px);
  transition: all 1s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Buttons */
.btn-light {
  background-color: #fff;
  color: #000;
  font-weight: 500;
  border: none;
  transition: all 0.3s ease;
}
.btn-light:hover {
  background-color: #b29a67;
  color: #fff;
}

/* Animation */
@keyframes fadeSlide {
  from {opacity: 0; transform: translateY(20px);}
  to {opacity: 1; transform: translateY(0);}
}


/* ===== HERO FADE-IN TEXT ANIMATION ===== */
.fade-text {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 1s ease forwards;
}

.fade-text.delay-1 {
  animation-delay: 0.4s;
}
.fade-text.delay-2 {
  animation-delay: 0.8s;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===== HERO BUTTON ===== */
.browse-btn {
  background-color: transparent;
  border: 2px solid #b29a67;
  color: #b29a67;
  font-weight: 600;
  border-radius: 50px;
  padding: 10px 25px;
  transition: all 0.3s ease;
  font-size: 1.05rem;
}

.browse-btn:hover {
  background-color: #b29a67;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 0 10px rgba(178, 154, 103, 0.4);
}


