.gallery-banner {
  position: relative;
  width: 100%;
  height: 75vh;
  min-height: 500px;
  background: url('../img/gallery-banner.png') bottom center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
}

.gallery-banner::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0, 0, 0, 0.2); /* Slight overlay if needed */
}

.gallery-banner-content {
  position: absolute;
  bottom: 12%;
  right: 12%;
  z-index: 1;
}

.gallery-banner-content h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin: 0 0 10px 0;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-align: center;
}

.gallery-banner-content hr {
  width: 60%;
  border: none;
  border-top: 2px solid #fff;
  margin: 0 auto 15px auto;
}

.gallery-banner-content p {
  font-size: 1.1rem;
  margin: 0;
  text-align: center;
}

.gallery-filters {
  padding: 40px 20px 20px 20px;
  background-color: #f7f7f7;
}

.gallery-filters ul {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 1200px;
  display: flex;
  justify-content: flex-start;
  gap: 20px;
  flex-wrap: wrap;
}

.gallery-filters li {
  font-size: 0.8rem;
  font-weight: 600;
  color: #666;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: color 0.3s;
}

.gallery-filters li.active,
.gallery-filters li:hover {
  color: #000;
}

.gallery-grid-section {
  background-color: #f7f7f7;
  padding: 0 20px 60px 20px;
}

.gallery-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.gallery-col-left {
  display: flex;
  flex-direction: column;
}

.gallery-col-right {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.gallery-row-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-item-video::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 0; 
  height: 0; 
  border-top: 15px solid transparent;
  border-bottom: 15px solid transparent;
  border-left: 25px solid #fff;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
  pointer-events: none;
}

.gallery-icon-top-right {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 20px;
  height: 20px;
  background: transparent;
  border: 1.5px solid #fff;
  border-radius: 3px;
  opacity: 0.8;
}

.gallery-item.hidden {
  display: none !important;
}

@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }
}
