 /* GALLERY HERO */
.gallery-hero {
  position: relative;
  min-height: 95vh;
  background:
    linear-gradient(rgba(0,0,0,0.75), rgba(0,0,0,0.92)),
    url('../../assets/images/about-us.png') center/cover no-repeat;
  background-attachment: fixed;
  display: flex;
  align-items: center;
  padding: 0 8%;
  overflow: hidden;
  color: #fff;
}

/* DARK OVERLAY */
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.65);
  z-index: 1;
}

/* GOLD FLOW ANIMATION */
.gold-flow {
  position: absolute;
  inset: -50%;
  background: linear-gradient(
    120deg,
    rgba(255,204,0,0.08),
    rgba(255,215,0,0.02),
    rgba(255,204,0,0.08)
  );
  animation: goldMove 20s linear infinite;
  z-index: 2;
}

@keyframes goldMove {
  from { transform: translateX(-30%) rotate(0deg); }
  to { transform: translateX(30%) rotate(360deg); }
}

/* CONTENT */
.gallery-hero-content {
  position: relative;
  z-index: 3;
  max-width: 720px;
}

/* TAG */
.hero-tag {
  display: inline-block;
  padding: 8px 20px;
  border-radius: 30px;
  background: rgba(255,204,0,0.15);
  color: #ffcc00;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

/* TITLE */
.gallery-hero-content h1 {
  font-size: 56px;
  line-height: 1.2;
  margin-bottom: 22px;
}

.gallery-hero-content h1 span {
  background: linear-gradient(90deg, #ffcc00, #ffd700, #fff2a6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: goldShine 4s linear infinite;
}

@keyframes goldShine {
  0% { background-position: 0%; }
  100% { background-position: 200%; }
}

/* TEXT */
.gallery-hero-content p {
  font-size: 18px;
  color: #ddd;
  line-height: 1.7;
  margin-bottom: 35px;
}

/* BUTTONS */
.hero-actions {
  display: flex;
  gap: 20px;
}

/* SCROLL INDICATOR */
.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  width: 30px;
  height: 50px;
  border: 2px solid rgba(255,204,0,0.7);
  border-radius: 25px;
  display: flex;
  justify-content: center;
  z-index: 3;
}

.scroll-indicator span {
  width: 6px;
  height: 6px;
  background: #ffcc00;
  border-radius: 50%;
  margin-top: 10px;
  animation: scrollDown 2s infinite;
}

@keyframes scrollDown {
  0% { opacity: 0; transform: translateY(0); }
  30% { opacity: 1; }
  100% { opacity: 0; transform: translateY(18px); }
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .gallery-hero-content h1 {
    font-size: 38px;
  }

  .hero-actions {
    flex-direction: column;
  }
}

#gallery {
  padding: 60px 8%;
  text-align: center;
}

#gallery h2 {
  font-size: 42px;
  color: #ffd700;
  margin-bottom: 30px;
}

.gallery-filters {
  margin-bottom: 40px;
}

  .gallery-filters button {
  background: #002147; /* Dark luxury blue */
  border: 1px solid rgba(255, 204, 0, 0.5); /* Subtle gold border */
  color: #fff; /* White text for contrast */
  padding: 10px 18px;
  margin: 5px;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.gallery-filters button.active,
.gallery-filters button:hover {
  background: #003a8f; /* Slightly brighter blue on hover/active */
  color: #ffd700; /* Gold text on hover/active */
  border-color: #ffd700; /* Gold border on hover/active */
}


.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 14px;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.gallery-item img {
  width: 100%;
  display: block;
  transition: transform 0.5s ease;
}

.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 2px solid rgba(255, 215, 0, 0.2);
  pointer-events: none;
  transition: all 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-item:hover::after {
  border-color: #ffd700;
  box-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
}

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.9);
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.lightbox img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 8px;
}

.lightbox .close {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 48px;
  color: #ffd700;
  cursor: pointer;
}

 
.gallery-story {
  padding: 100px 8%;
  background: #0b0b0b;
  text-align: center;
}

.gallery-story h2 {
  font-size: 36px;
  color: #ffcc00;
  margin-bottom: 20px;
}

.gallery-story p {
  color: #ccc;
  max-width: 700px;
  margin: auto;
  line-height: 1.7;
}
.gallery-cta {
  padding: 120px 8%;
  background:
    linear-gradient(rgba(0,0,0,0.85), rgba(0,0,0,0.95)),
    url('../../assets/images/about-us.png') center/cover no-repeat;
  text-align: center;
}

.gallery-cta h2 {
  font-size: 40px;
  color: #fff;
  margin-bottom: 20px;
}

.gallery-cta p {
  color: #ddd;
  margin-bottom: 35px;
}

.gallery-cta .cta-btn {
  padding: 16px 40px;
  background: linear-gradient(90deg, #ffcc00, #ffd700);
  color: #000;
  border-radius: 40px;
  text-decoration: none;
  font-weight: 600;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 14px;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

 /* Circular Badge */
.gallery-item .badge {
  position: absolute;
  top: 15px;
  left: 15px;
  width: 40px;
  height: 40px;
  background: radial-gradient(circle, #ffd700, #ffcc00);
  color: #000;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(0,0,0,0.5);
  z-index: 2;
  cursor: default;
  transition: all 0.4s ease;
}
/* Tiny Label (hidden by default) */
.gallery-item .badge-label {
  position: absolute;
  top: 45px; /* Below the badge */
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0,0,0,0.75);
  color: #ffd700;
  font-size: 10px;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 12px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease;
}
/* Hover Glow / Shine Animation */
.gallery-item:hover .badge {
  transform: scale(1.1) rotate(10deg);
  box-shadow: 0 8px 20px rgba(255,215,0,0.7);
  background: radial-gradient(circle, #fff3a0, #ffd700, #ffcc00);
}

/* Optional: small shine effect on hover */
@keyframes badgeShine {
  0% { background-position: 0% 50%; }
  100% { background-position: 200% 50%; }
}
/* Show label on hover */
.gallery-item:hover .badge-label {
  opacity: 1;
  top: 50px; /* Slightly lower for a smooth slide-in effect */
}