.collection-section {
  display: flex;
  width: 100%;
  height: 100vh;
  flex-direction: row;
}
.collection-padding{
  padding-bottom: 50px;
}
.collection-item {
  flex: 1;
  position: relative;
  overflow: hidden;
}
.collection-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
/* Overlay covers image */
.overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 30px;
  color: white;
  background: rgba(0, 0, 0, 0);
  transition: background 0.4s ease;
  pointer-events: none;
}
/* Content inside overlay */
.overlay-content {
  position: absolute;
  bottom: 30px;
  left: 30px;
  right: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
}
/* Title always visible */
.overlay-content h2 {
  opacity: 1;
  transform: translateY(0);
  transition: all 0.4s ease;
  margin: 0;
}
/* p and button hidden initially (desktop only) */
.overlay-content p,
.overlay-content .explore-btn {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s ease;
  pointer-events: none;
  margin-top: 10px;
}
.tlt-clr{
  font-size:20px;
}
.cnt-clr{
  font-size: 18px;
}
/* Desktop hover */
@media (min-width: 768px) {
  .collection-item:hover .overlay {
    background: rgba(0, 0, 0, 0.7);
    pointer-events: auto;
  }
  .collection-item:hover .overlay-content h2 {
    transform: translateY(-10px);
  }
  .collection-item:hover .overlay-content p,
  .collection-item:hover .overlay-content .explore-btn {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }
}
/* Mobile view: always show content */
@media (max-width: 767px) {
  .collection-section {
    flex-direction: column;
    height: auto;
    gap: 50px
  }
  .collection-item {
    width: 100%;
    height: 60vh;
  }
 .overlay {
    background: transparent;
    pointer-events: auto;
    color: #000 !important;
  }
  .overlay .cnt-clr, .overlay .tlt-clr{
    color: #000 !important;
  } 
  .overlay-content {
    position: initial;
    bottom: 0;
    top: auto;
    left: auto;
    width: 100%;
  }
  .overlay{
     position: relative;
    bottom: 0;
    top: auto;
    left: auto;
  }
  .overlay-content p,
  .overlay-content .explore-btn {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }
  .tlt-clr {
    font-size: 18px;
  }
  .cnt-clr {
    font-size: 16px;
  }
  .explore-btn {
    font-size: 14px;
  }
}
/* Extra small phones */
@media (max-width: 480px) {
  .collection-item {
    height: 50vh;
  }
  .tlt-clr {
    font-size: 16px;
  }
  .cnt-clr {
    font-size: 14px;
  }
  .explore-btn {
    font-size: 13px;
  }
}
/* Button style */
.explore-btn {
  color: white;
  text-decoration: none;
  font-weight: bold;
  display: inline-block;
  border-bottom: 1px solid white;
  margin-top: 10px;
}
/* Text styles */
.tlt-clr {
  color: #fff;
  font-weight: 600;
}
.cnt-clr {
  color: #fff;
  font-weight: 200;
}