body{
  font-family:'Poppins',sans-serif;
  background:#f8fafc;
}

/* ================= HERO ================= */
.gallery-hero{
  background:
    linear-gradient(120deg,
      rgba(0,0,0,.65),
      rgba(231,111,45,.85)
    ),
    url("/img/picture.jpg") center/cover no-repeat;
  padding:130px 20px;
  text-align:center;
  color:#fff;
}
.gallery-hero h1{
  font-family:'Merriweather',serif;
  font-size:52px;
}
.gallery-hero p{
  max-width:760px;
  margin:16px auto 0;
  font-size:18px;
  opacity:.95;
}

/* ================= CONTAINER ================= */
.container{
  max-width:1200px;
  margin:auto;
  padding:80px 20px;
}

/* ================= TITLE ================= */
.section-title{
  text-align:center;
  margin-bottom:60px;
}
.section-title h2{
  font-family:'Merriweather',serif;
  font-size:36px;
}
.section-title span{
  display:block;
  width:80px;
  height:4px;
  background:linear-gradient(90deg,#e76f2d,#f4c430);
  margin:15px auto;
  border-radius:10px;
}
.section-title p{
  color:#64748b;
}

/* ================= GALLERY ================= */
.gallery-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
  gap:26px;
}

/* ================= CARD ================= */
.gallery-item{
  position:relative;
  border-radius:22px;
  overflow:hidden;
  background:#fff;
  box-shadow:0 20px 45px rgba(0,0,0,.12);
  transition:.45s ease;
}
.gallery-item:hover{
  transform:translateY(-10px);
  box-shadow:0 30px 65px rgba(231,111,45,.35);
}

/* IMAGE */
.gallery-item img{
  width:100%;
  height:280px;
  object-fit:cover;
  transition:.6s ease;
}
.gallery-item:hover img{
  transform:scale(1.15);
}

/* OVERLAY */
.gallery-overlay{
  position:absolute;
  inset:0;
  background:
    linear-gradient(
      to top,
      rgba(0,0,0,.75),
      rgba(0,0,0,.1)
    );
  display:flex;
  align-items:flex-end;
  padding:25px;
  opacity:0;
  transition:.4s;
}
.gallery-item:hover .gallery-overlay{
  opacity:1;
}
.gallery-overlay h3{
  color:#fff;
  font-weight:600;
  font-size:18px;
}

/* ================= CTA ================= */
.gallery-cta{
  margin-top:90px;
  background:
    linear-gradient(
      120deg,
      rgba(0,0,0,.7),
      rgba(231,111,45,.9)
    ),
    url("/img/picture.jpg") center/cover;
  padding:80px 20px;
  border-radius:30px;
  text-align:center;
  color:#fff;
}
.gallery-cta h2{
  font-family:'Merriweather',serif;
  font-size:36px;
}
.gallery-cta p{
  max-width:650px;
  margin:15px auto 25px;
  opacity:.95;
}
.gallery-cta a{
  display:inline-block;
  background:#fff;
  color:#e76f2d;
  padding:15px 40px;
  border-radius:40px;
  font-weight:600;
  transition:.3s;
}
.gallery-cta a:hover{
  background:#f4c430;
  color:#fff;
}