/* ===== GALLERY HERO ===== */
.gallery-hero {
  position: relative;
  height: 65vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

/* BACKGROUND */
.gallery-hero .hero-bg {
  position: absolute;
  inset: 0;
  background: url('../images/hero.png') center/cover no-repeat;
  filter: brightness(0.35);
  z-index: 1;
}

/* OVERLAY */
.gallery-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(0,0,0,0.4), #000);
  z-index: 2;
}

/* CONTENT GLASS CARD */
.gallery-hero-content {
  position: relative;
  z-index: 3;
  padding: 35px 45px;

  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(20px);

  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px;

  max-width: 700px;
  width: 90%;

  animation: fadeUp 1s ease;
}

/* HEADING */
.gallery-hero-content h1 {
  font-size: 48px;
  color: #fff;
  margin-bottom: 10px;
}

.gallery-hero-content span {
  color: #d4af37;
}

/* SUBTEXT */
.hero-subtitle {
  color: #ccc;
  font-size: 15px;
  margin-top: 10px;
}

/* BREADCRUMB */
.breadcrumb {
  margin-top: 10px;
  font-size: 14px;
}

.breadcrumb a {
  color: #aaa;
  text-decoration: none;
  transition: 0.3s;
}

.breadcrumb a:hover {
  color: #d4af37;
}

.breadcrumb span {
  margin: 0 6px;
  color: #666;
}

.breadcrumb .active {
  color: #d4af37;
}

/* ANIMATION */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (max-width: 768px) {

  .gallery-hero {
    height: 45vh;
    padding: 20px;
  }

  .gallery-hero-content {
    padding: 20px;
  }

  .gallery-hero-content h1 {
    font-size: 28px;
  }

  .hero-subtitle {
    font-size: 13px;
  }

  .breadcrumb {
    font-size: 12px;
  }

}


/* gallery section  */

/* ===== SECTION ===== */
.gallery-section {
  padding: 100px 20px;
  background: #020617;
  text-align: center;
}

/* HEADER */
.gallery-header .gallery-tag {
  color: #d4af37;
  font-weight: 600;
  margin-bottom: 12px;

}
.gallery-header h2 {
  font-size: 36px;
  color: #fff;
  margin-bottom: 12px;
}
.gallery-header span {
  color: #d4af37;
}
.gallery-header p {
  color: #aaa;
  margin-top: 10px;
}

/* FILTER BUTTONS */
.gallery-filters {
  margin: 30px 0;
}

.filter-btn {
  background: transparent;
  border: 1px solid #d4af37;
  color: #d4af37;
  padding: 8px 18px;
  margin: 5px;
  border-radius: 20px;
  cursor: pointer;
  transition: 0.3s;
}

.filter-btn.active,
.filter-btn:hover {
  background: #d4af37;
  color: #000;
}

/* GRID (MASONRY STYLE) */
.gallery-grid {
  column-count: 3;
  column-gap: 15px;
}

/* ITEM */
.gallery-item {
  position: relative;
  margin-bottom: 15px;
  overflow: hidden;
  border-radius: 15px;
  cursor: pointer;
}

/* IMAGE */
.gallery-item img {
  width: 100%;
  display: block;
  border-radius: 15px;
  transition: 0.4s;
  cursor: pointer;
}

/* HOVER ZOOM */
.gallery-item:hover img {
  transform: scale(1.1);
}

/* OVERLAY */
.overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.6);
  display: flex;
  align-items: center;
  justify-content: center;
pointer-events: none;
  opacity: 0;
  transition: 0.3s;
}

.overlay span {
  color: #d4af37;
  font-weight: bold;
  border: 1px solid #d4af37;
  padding: 8px 18px;
  border-radius: 20px;
}

.gallery-item:hover .overlay {
  opacity: 1;
}

/* ===== MODAL ===== */
.gallery-modall {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.95);
  backdrop-filter: blur(10px);

  display: none;
  justify-content: center;
  align-items: center;

  z-index: 9999;
}

/* IMAGE */
.modal-imgg {
  max-width: 900px;
  max-height: 900px;
  object-fit: contain;

  border-radius: 12px;
  box-shadow: 0 0 40px rgba(0,0,0,0.8);

  animation: zoomIn 0.4s ease;
}

/* CLOSE BUTTON */
.close-modall {
  position: absolute;
  top: 25px;
  right: 35px;

  font-size: 35px;
  color: #fff;
  cursor: pointer;

  transition: 0.3s;
}

.close-modal:hover {
  color: #d4af37;
  transform: rotate(90deg);
}

/* ANIMATION */
@keyframes zoomIn {
  from {
    transform: scale(0.7);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

 
@media(max-width:768px){

  .gallery-grid {
    column-count: 1;
  }
 .modal-imgg {
    max-width: 95%;
    max-height: 80%;
  }

  .close-modall {
    top: 15px;
    right: 20px;
    font-size: 28px;
  }
}

/* feature section  */
/* SECTION */
.featured-gallery {
  padding: 80px 5%;
  background: #020617;
  text-align: center;
}

/* HEADER */
.featured-header .featured-tag{
  color: #d4af37;
  font-weight: 600;
}

.featured-header h2 {
  font-size: 38px;
  color: #fff;
}

.featured-header span {
  color: #d4af37;
}

.featured-header p {
  color: #aaa;
  margin-top: 10px;
}
 

/* WRAPPER */
.featured-wrapper {
  overflow: hidden;
  margin-top: 50px;
  position: relative;
}

/* TRACK */
.featured-track {
  display: flex;
  gap: 25px;
  animation: scroll 20s linear infinite;
}

/* PAUSE ON HOVER */
.featured-wrapper:hover .featured-track {
  animation-play-state: paused;
}

/* ITEMS */
.featured-item {
  min-width: 320px;
  height: 220px;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  cursor: pointer;

  border: 1px solid rgba(255,255,255,0.08);
  transition: 0.4s;
}

.featured-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.5s;
}

/* HOVER EFFECT */
.featured-item:hover img {
  transform: scale(1.1);
}

.featured-item:hover {
  box-shadow: 0 0 30px rgba(212,175,55,0.3);
}

/* SCROLL ANIMATION */
@keyframes scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
@media (max-width: 768px) {

  .featured-item {
    min-width: 250px;
    height: 180px;
  }

  .featured-header h2 {
    font-size: 26px;
  }

}