.blob-mask {
  mask-image: radial-gradient(
    circle at center,
    rgba(0, 0, 0, 1) 55%,
    rgba(0, 0, 0, 0) 85%
  );
  -webkit-mask-image: radial-gradient(
    circle at center,
    rgba(0, 0, 0, 1) 55%,
    rgba(0, 0, 0, 0) 85%
  );
}

/* Gallery transition styles */
.gallery-content {
  transition: opacity 0.3s ease-in-out;
}

.gallery-content.hidden {
  display: none;
}

/* Gallery Images - 16:9 aspect ratio */
.gallery-item img {
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background-color: #0a0a0a;
  width: 100%;
  height: auto;
}

/* Active button state */
.show-btn.active {
  border-color: #d4af37;
  color: #d4af37;
}

.show-year {
  color: #d4af37;
}

/* Fade in animation */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in {
  opacity: 0;
  transition: opacity 0.6s ease-out, transform 0.8s ease-out;
  transform: translateY(30px);
}

.fade-in.visible {
  animation: fadeInUp 0.8s ease-out forwards;
}

/* Lightbox overlay */
.lightbox-overlay {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(8px);
}

.lightbox-overlay.active {
  display: flex;
}

.lightbox-image {
  max-width: 80vw;
  max-height: 85vh;
  width: auto;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
}

.lightbox-close {
  position: absolute;
  top: 34px;
  right: 34px;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.6);
  color: #d4af37a1;
  border: 2px solid #d4af37a1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
  font-size: 24px;
  font-weight: bold;
}

.lightbox-close:hover {
  background: rgba(212, 175, 55, 0.2);
  transform: scale(1.05);
  border-color: #d4af37;
  color: #d4af37;
}

/* Lightbox navigation buttons */
.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 144px;
  height: 144px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.6);
  color: #d4af37;
  border: 2px solid #d4af37;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;  
}

.lightbox-nav:hover {
  background: rgba(212, 175, 55, 0.2);
  transform: translateY(-50%) scale(1.05);
}

.lightbox-prev {
  left: 24px;
  margin: 20px;
  font-size: 40px;
  color: #d4af37a1;
}

.lightbox-next {
  right: 24px;
  margin: 20px;
  font-size: 40px;
  color: #d4af37a1;
}

.lightbox-prev:hover, .lightbox-next:hover {
  color: #d4af37;
  transform: scale(1.05);
  transition: transform 0.2s ease;
}

.contact-text {
  color: #d4af37
}


/* Hero Layout */
.hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
  background: #0f172a;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
}

/* Content */
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

/* Blob Container */
.blobs {
  position: absolute;
  width: 140%;
  height: 140%;
  left: -20%;
  top: -20%;
  z-index: 1;
  filter: blur(80px);
}

/* Blob Base */
.blob {
  position: absolute;
  width: clamp(320px, 50vw, 1000px);
  height: clamp(320px, 50vw, 1000px);
  opacity: 0.7;

  animation-name: float, blobMorph;
  animation-timing-function: ease-in-out, ease-in-out;
  animation-iteration-count: infinite, infinite;
  animation-direction: alternate, alternate;

  will-change: transform, border-radius;
}

/* Individual Blobs */

.blob1 {
  top: 5%;
  left: 15%;
  background: radial-gradient(circle at 30% 30%, #8c31a3, #6365f100);
  animation-duration: 18s, 11s;
  animation-delay: -4s, -2s;
}

.blob2 {
  top: 5%;
  left: 60%;
  background: radial-gradient(circle at 70% 70%, #862757, #f43f5d00);
  animation-duration: 26s, 14s;
  animation-delay: -10s, -6s;
}

.blob3 {
  top: 40%;
  left: 50%;
  background: radial-gradient(circle at 50% 50%, #6366f1, #8a5cf600);
  animation-duration: 32s, 18s;
  animation-delay: 1s, -11s;
}

.blob4 {
  top: 20%;
  left: 30%;
  background: radial-gradient(circle at 40% 60%, #0c5985, #0ea4e900);
  animation-duration: 24s, 13s;
  animation-delay: -7s, -1s;
}

.blob5 {
  top: 50%;
  left: 20%;
  background: radial-gradient(circle at 40% 60%, #352383, #f18b6300);
  animation-duration: 38s, 21s;
  animation-delay: -20s, -18s;
}

/* Floating Animation */
@keyframes float {
  0% {
    transform: translate(0px, 0px) scale(1);
  }
  50% {
    transform: translate(40px, -60px) scale(1.1);
  }
  100% {
    transform: translate(-30px, 50px) scale(0.9);
  }
}

/* Dramatic Morph Animation */
@keyframes blobMorph {
  0% {
    border-radius: 20% 80% 60% 40% / 30% 70% 30% 70%;
  }
  33% {
    border-radius: 75% 25% 35% 65% / 65% 35% 65% 35%;
  }
  66% {
    border-radius: 40% 60% 80% 20% / 20% 80% 20% 80%;
  }
  100% {
    border-radius: 20% 80% 60% 40% / 30% 70% 30% 70%;
  }
}
