*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  /*font-family:Poppins, Arial;*/
}

body{background:#f5f5f5
font-family: Inter, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;}

/* TITLE */
.page-title{
  margin-top:90px;
  padding:60px 20px;
  background: linear-gradient(180deg, #5a3a2e, #3e261d);
  color:#fff;
  text-align:center;
}
/*pintrest*/
.pinterest-section {
  text-align: center;
  margin: 60px auto;
}

.pinterest-btn {
  display: inline-block;
  padding: 14px 30px;
  background: #E60023;
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  border-radius: 8px;
  transition: 0.3s ease;
}

.pinterest-btn:hover {
  background: #b8001b;
}


/*control*/

.controls{
  padding:20px;
  text-align:center;
}
/*searchBox*/
#searchBox{
  padding:10px;
  width:250px;
  margin-bottom:15px;
  background: linear-gradient(180deg, #5a3a2e, #3e261d);
  color: white;
}

.filter-buttons{
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  gap:10px;
}

.filter-btn{
  padding:8px 15px;
  border:none;
  cursor:pointer;
  border-radius:20px;
}

.filter-btn.active{
  background: linear-gradient(180deg, #5a3a2e, #3e261d);
  color:#fff;
}

/* GALLERY */
.gallery-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
  gap:20px;
  padding:20px;
}

.gallery-item{
  position:relative;
  overflow:hidden;
  border-radius:10px;
  cursor:pointer;
  transition:0.4s;
}

.gallery-item img{
  width:100%;
  height:220px;
  object-fit:cover;
}

.gallery-item span{
  position:absolute;
  bottom:0;
  width:100%;
  padding:10px;
  background:rgba(0,0,0,0.6);
  color:#fff;
}

.gallery-item.hide{
  display:none;
}

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.9);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.lightbox.show {
  display: flex;
}

/* IMAGE */
#lightbox-img {
  max-width: 90%;
  max-height: 85%;
  border-radius: 8px;
}

/* CLOSE BUTTON */
.lightbox .close {
  position: absolute;
  top: 20px;
  right: 25px;
  font-size: 35px;
  color: #fff;
  cursor: pointer;
  z-index: 10000;
}

/* PREV / NEXT */
.lightbox .prev,
.lightbox .next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 45px;
  color: #5a3a2e;
  cursor: pointer;
  padding: 10px;
  user-select: none;
}

.lightbox .prev { left: 20px; }
.lightbox .next { right: 20px; }
@media (max-width:768px){
  .page-title img{
    padding:0px 0px;
    padding-left: 2%;
    padding-right:2%;
    margin-left: 0px;
  width: 50vh;
  height: 50vh;
}
}