.hero-video{
  position:relative;
  width:100%;
  height:100vh;
  overflow:hidden;
}

.hero-video__bg{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
}

.hero-video__overlay{
  position:absolute;
  inset:0;
  background:rgba(0,0,0,0.45);
}

.hero-video__content{
  position:absolute;
  top:50%;
  left:50%;
  transform:translate(-50%,-50%);
  text-align:center;
  color:#fff;
  max-width:820px;
  padding:20px;
}

.hero-video__content h1{
  font-size:52px;
  margin-bottom:16px;
  text-shadow:0 6px 18px rgba(0,0,0,.6);
}

.hero-video__content p{
  font-size:18px;
  line-height:1.6;
  text-shadow:0 4px 12px rgba(0,0,0,.6);
}

@media(max-width:768px){
  .hero-video__content h1{font-size:34px;}
  .hero-video__content p{font-size:15px;}
}

/*portfolio-section*/
.portfolio-section{
  max-width:1200px;
  margin:60px auto;
  border-radius:16px;
  overflow:hidden;
  box-shadow:0 10px 40px rgba(0,0,0,.08);
}

.portfolio-hero{
  background:#5a3a2e center/cover no-repeat;
  position:relative;
  padding:60px;
  min-height:420px;
  display:flex;
  align-items:center;
}


.portfolio-hero::before{
  content:"";
  position:absolute;
  inset:0;
  background:#5a3a2e;
}

.portfolio-content{
  position:relative;
  display:flex;
  justify-content:space-between;
  gap:30px;
  color:#fff;
}

.portfolio-text{
  max-width:60%;
}

.eyebrow{
  font-size:13px;
  letter-spacing:.15em;
  text-transform:uppercase;
  opacity:.85;
}



@media(max-width:768px){
  .portfolio-content{flex-direction:column;}
  .portfolio-text{max-width:100%;}
}
/*colleection*/
.collections{
  padding:80px 0;
  background:#f5f7fb;
}

.wrap{
  max-width:1200px;
  margin:auto;
  padding:0 20px;
}

/* Heading */
.section-head{
  margin-bottom:32px;
}

.section-head h2{
  font-size:28px;
  font-weight:700;
}

/* GRID */
.gallery-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
  gap:22px;
}

/* ITEM */
.gallery-item{
  position:relative;
  overflow:hidden;
  border-radius:18px;
  cursor:pointer;
}

/* IMAGE */
.gallery-item img{
  width:100%;
  height:320px;
  object-fit:cover;
  transition:transform .4s ease;
}

/* OVERLAY */
.gallery-item .overlay{
  position:absolute;
  inset:0;
  background:rgba(0,0,0,0.55);
  display:flex;
  align-items:center;
  justify-content:center;
  opacity:0;
  transition:opacity .3s ease;
}

.gallery-item h3{
  color:#fff;
  font-size:22px;
  font-weight:600;
  text-align:center;
  padding:0 20px;
}

/* HOVER EFFECT */
.gallery-item:hover img{
  transform:scale(1.08);
}

.gallery-item:hover .overlay{
  opacity:1;
}

/* MOBILE */
@media(max-width:600px){
  .gallery-item img{height:240px;}
  .gallery-item h3{font-size:18px;}
}
