/* Section Navbar Styles */
#section-navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  width: 100%;
  background: linear-gradient(90deg, #a8005a 0%, #ff4f81 100%);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 2px 16px 0 rgba(168,0,90,0.12);
  scrollbar-width: none;
}
#section-navbar .section-link {
  color: #f3f3f3;
  font-size: 1.05rem;
  font-family: 'Oswald', Arial Narrow, Arial, sans-serif;
  font-weight: 500;
  letter-spacing: 0.02em;
  padding: 0.45rem 1.1rem;
  border-radius: 999px;
  transition: background 0.18s, color 0.18s;
  text-decoration: none;
  white-space: nowrap;
  margin-right: 2px;
}
#section-navbar .section-link:hover, #section-navbar .section-link.active {
  background: linear-gradient(90deg, #fbbf24 0%, #f59e42 100%);
  color: #222;
}
.no-scrollbar {
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.no-scrollbar::-webkit-scrollbar {
  display: none;
}

html {
  scroll-behavior: smooth;
}
/* Restore gradient text + shine animation (broken by inline style using fake -webkit-text-fill-animation) */
[style*="BF953F"],
[style*="bf953f"] {
  -webkit-text-fill-color: transparent !important;
  color: transparent !important;
  animation: shine 12s linear infinite !important;
}
[style*="94a3b8"] {
  -webkit-text-fill-color: transparent !important;
  color: transparent !important;
  animation: shine 12s linear infinite !important;
}

/* Bhuj Hero */
#bhuj-hero {
  position: relative;
  min-height: clamp(600px, 90vh, 1000px);
  display: flex;
  align-items: center;
  justify-content: flex-start;
  overflow: hidden;
  padding-top: 80px;
}
#bhuj-hero .hero-bg {
  position: absolute;
  inset: -8%;
  background: url('../../images/bhuj/bhuj-hero.webp') center center / cover no-repeat;
  animation: bhujKenBurns 18s ease-in-out infinite alternate;
  z-index: 0;
}
@keyframes bhujKenBurns {
  0%   { transform: scale(1.0) translate(0, 0); }
  33%  { transform: scale(1.06) translate(-1%, 0.5%); }
  66%  { transform: scale(1.04) translate(1%, -0.5%); }
  100% { transform: scale(1.08) translate(-0.5%, 1%); }
}
#bhuj-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  background:
    linear-gradient(to right, rgba(10,10,11,0.78) 0%, rgba(10,10,11,0.38) 42%, rgba(10,10,11,0.08) 62%, transparent 100%),
    linear-gradient(to top, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.12) 30%, transparent 70%);
}
#bhuj-hero .hero-inner {
  position: relative;
  z-index: 2;
  padding: 2rem 1.25rem;
  max-width: 100%;
  width: 100%;
}
#bhuj-hero .hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1.2rem;
  background: rgba(180,120,20,0.18);
  border: 1px solid rgba(214,167,86,0.35);
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #d4a84b;
  margin-bottom: 1.25rem;
}
#bhuj-hero .bhuj-hero-title {
  font-family: 'EB Garamond', serif;
  font-size: 6rem;
  font-weight: 700;
  line-height: 1.05;
  margin-bottom: 0;
  text-align: left;
  letter-spacing: 0.01em;
  background: linear-gradient(92deg, #FFD700 0%, #FFF6B7 25%, #B38728 50%, #FBF5B7 75%, #AA771C 100%);
  background-size: 300% 300%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  filter: drop-shadow(0 4px 16px rgba(255, 215, 0, 0.25));
  animation: bhuj-gold-shine 4s linear infinite;
}

@keyframes bhuj-gold-shine {
  0% {
    background-position: 0% 50%;
  }
  100% {
    background-position: 100% 50%;
  }
}
#bhuj-hero .bhuj-hero-title .hero-subtitle {
  display: block;
  font-family: 'EB Garamond', serif;
  font-style: italic;
  font-size: 2.5rem;
  font-weight: 400;
  margin-top: 0.6rem;
  margin-bottom: 1.25rem;
  text-align: left;
  color: #f5eddc;
  letter-spacing: 0.01em;
}
#bhuj-hero p {
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  color: rgba(209,213,219,0.9);
  font-weight: 500;
  line-height: 1.75;
  max-width: 520px;
  text-align: left;
  animation: fadeSlideUp 0.9s cubic-bezier(0.22,1,0.36,1) 0.65s both;
}

/* 14" laptop (900px+) */
@media (min-width: 900px) {
  #bhuj-hero .hero-inner { padding: 2.5rem 3rem; max-width: 780px; }
  #bhuj-hero h1            { font-size: 4rem; }
  #bhuj-hero .hero-subtitle{ font-size: 1.4rem; }
  #bhuj-hero p             { font-size: 1.05rem; }
}

/* 15.6" laptop (1025px+) */
@media (min-width: 1025px) {
  #bhuj-hero .hero-inner { padding: 3rem 4rem; max-width: 860px; }
  #bhuj-hero h1            { font-size: 5.5rem; }
  #bhuj-hero .hero-subtitle{ font-size: 1.75rem; }
  #bhuj-hero p             { font-size: 1.1rem; }
}

/* 24" desktop (1367px+) */
@media (min-width: 1367px) {
  #bhuj-hero .hero-inner { padding: 3.5rem 5rem; max-width: 1000px; }
  #bhuj-hero h1            { font-size: 8rem; }
  #bhuj-hero .hero-subtitle{ font-size: 2.25rem; }
  #bhuj-hero p             { font-size: 1.25rem; max-width: 640px; }
}

/* Tablet (481px–899px) */
@media (min-width: 481px) and (max-width: 899px) {
  #bhuj-hero .hero-inner { padding: 2rem 2rem; }
  #bhuj-hero h1            { font-size: 3.5rem; }
  #bhuj-hero .hero-subtitle{ font-size: 1.25rem; }
  #bhuj-hero p             { font-size: 1rem; }
}
@keyframes heroZoom {
  0%   { transform: scale(1.08); }
  100% { transform: scale(1); }
}
@keyframes shine {
  from { background-position: 0% center; }
  to   { background-position: 200% center; }
}
@keyframes fadeSlideLeft {
  0%   { opacity: 0; transform: translateX(-24px); }
  100% { opacity: 1; transform: translateX(0); }
}
@keyframes fadeSlideUp {
  0%   { opacity: 0; transform: translateY(28px); }
  100% { opacity: 1; transform: translateY(0); }
}

/* Hero photo credit watermark */
.hero-photo-credit {
  position: absolute;
  bottom: 1rem;
  right: 1.25rem;
  z-index: 3;
  font-size: 0.65rem;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.55);
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.6);
  pointer-events: none;
  user-select: none;
}

/* Lightbox */
.lightbox-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(10px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.3s ease,
    visibility 0.3s ease;
}
.lightbox-overlay.active {
  opacity: 1;
  visibility: visible;
}
.lightbox-container {
  position: relative;
  max-width: 95vw;
  max-height: 95vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.lightbox-image {
  max-width: 100%;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  transform: scale(0.9);
  transition: transform 0.3s ease;
}
.lightbox-overlay.active .lightbox-image {
  transform: scale(1);
}
.lightbox-caption {
  color: white;
  text-align: center;
  margin-top: 1rem;
  font-size: 1rem;
  font-weight: 500;
  padding: 0 1rem;
}
.lightbox-close {
  position: absolute;
  top: -50px;
  right: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: white;
  font-size: 24px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    background 0.2s ease,
    transform 0.2s ease;
}
.lightbox-close:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: scale(1.1);
}
@media (max-width: 768px) {
  .lightbox-close {
    top: 20px;
    right: 20px;
    background: rgba(0, 0, 0, 0.5);
  }
  .lightbox-image {
    max-height: 80vh;
  }
}
/* Make gallery images clickable */
.gallery-grid img,
.grid img {
  cursor: zoom-in;
}
