:root {
  --saffron: #d4621a;
  --deep-red: #8b1a1a;
  --gold: #c9933a;
  --cream: #faf5ec;
  --warm-white: #fdf8f0;
  --brown: #4a2c0a;
  --light-brown: #7a5230;
  --ink: #2a1a08;
  --muted: #8c7355;
  --lotus-pink: #c2748a;
  --sage: #6b7c5a;
  --divider: rgba(201, 147, 58, 0.35);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Tiro Devanagari Hindi", serif;
  background: var(--warm-white);
  color: var(--ink);
  overflow-x: hidden;
}

/* ---- SCROLLBAR ---- */
::-webkit-scrollbar {
  width: 6px;
}
::-webkit-scrollbar-track {
  background: var(--cream);
}
::-webkit-scrollbar-thumb {
  background: var(--gold);
  border-radius: 3px;
}

/* ---- NAV ---- */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 5vw;
  background: rgba(250, 245, 236, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--divider);
  animation: slideDown 0.7s ease forwards;
}

@keyframes slideDown {
  from {
    transform: translateY(-100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.nav-logo {
  font-size: 1.25rem;
  color: var(--deep-red);
  font-weight: 600;
  letter-spacing: 0.02em;
}

.nav-links {
  display: flex;
  gap: 28px;
  list-style: none;
}
.nav-links a {
  text-decoration: none;
  color: var(--light-brown);
  font-size: 0.95rem;
  transition: color 0.2s;
  position: relative;
}
.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--saffron);
  transform: scaleX(0);
  transition: transform 0.25s;
}
.nav-links a:hover {
  color: var(--saffron);
}
.nav-links a:hover::after {
  transform: scaleX(1);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}
.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--brown);
  transition: 0.3s;
}

/* ---- HERO ---- */
#hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 100px 5vw 60px;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(
      ellipse 70% 60% at 80% 50%,
      rgba(212, 98, 26, 0.06) 0%,
      transparent 70%
    ),
    radial-gradient(
      ellipse 50% 80% at 10% 80%,
      rgba(201, 147, 58, 0.07) 0%,
      transparent 60%
    );
}

.mandala-bg {
  position: absolute;
  right: -5%;
  top: 50%;
  transform: translateY(-50%);
  width: 55vw;
  height: 55vw;
  max-width: 650px;
  max-height: 650px;
  opacity: 0.045;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 200'%3E%3Ccircle cx='100' cy='100' r='95' stroke='%23C9933A' stroke-width='1' fill='none'/%3E%3Ccircle cx='100' cy='100' r='75' stroke='%23C9933A' stroke-width='1' fill='none'/%3E%3Ccircle cx='100' cy='100' r='55' stroke='%23C9933A' stroke-width='1' fill='none'/%3E%3Ccircle cx='100' cy='100' r='35' stroke='%23C9933A' stroke-width='1' fill='none'/%3E%3Ccircle cx='100' cy='100' r='15' stroke='%23C9933A' stroke-width='1' fill='none'/%3E%3Cline x1='5' y1='100' x2='195' y2='100' stroke='%23C9933A' stroke-width='0.5'/%3E%3Cline x1='100' y1='5' x2='100' y2='195' stroke='%23C9933A' stroke-width='0.5'/%3E%3Cline x1='30' y1='30' x2='170' y2='170' stroke='%23C9933A' stroke-width='0.5'/%3E%3Cline x1='170' y1='30' x2='30' y2='170' stroke='%23C9933A' stroke-width='0.5'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  animation: rotateSlow 80s linear infinite;
}

@keyframes rotateSlow {
  from {
    transform: translateY(-50%) rotate(0);
  }
  to {
    transform: translateY(-50%) rotate(360deg);
  }
}

.hero-text {
  position: relative;
  z-index: 1;
  animation: fadeUp 1s ease 0.3s both;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-tagline {
  font-family: "Crimson Pro", serif;
  font-style: italic;
  color: var(--saffron);
  font-size: 1.1rem;
  letter-spacing: 0.05em;
  margin-bottom: 16px;
}

.hero-name {
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  line-height: 1.1;
  color: var(--deep-red);
  font-weight: 600;
  margin-bottom: 12px;
}

.hero-name span {
  display: block;
  font-family: "Crimson Pro", serif;
  font-style: italic;
  font-size: 0.45em;
  color: var(--light-brown);
  font-weight: 300;
  letter-spacing: 0.08em;
  margin-bottom: 4px;
}

.hero-roles {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 24px 0 32px;
}

.role-badge {
  padding: 6px 16px;
  border: 1px solid var(--divider);
  border-radius: 100px;
  font-size: 0.85rem;
  color: var(--muted);
  background: rgba(201, 147, 58, 0.07);
  animation: fadeUp 1s ease both;
}
.role-badge:nth-child(1) {
  animation-delay: 0.5s;
}
.role-badge:nth-child(2) {
  animation-delay: 0.65s;
}
.role-badge:nth-child(3) {
  animation-delay: 0.8s;
}
.role-badge:nth-child(4) {
  animation-delay: 0.95s;
}

.hero-quote {
  font-family: "Crimson Pro", serif;
  font-style: italic;
  font-size: 1.15rem;
  color: var(--light-brown);
  line-height: 1.7;
  max-width: 480px;
  border-left: 3px solid var(--gold);
  padding-left: 18px;
  margin-bottom: 36px;
}

.hero-cta {
  display: inline-block;
  padding: 14px 36px;
  background: var(--saffron);
  color: white;
  text-decoration: none;
  border-radius: 4px;
  font-size: 1rem;
  transition:
    background 0.25s,
    transform 0.2s;
  letter-spacing: 0.03em;
}
.hero-cta:hover {
  background: var(--deep-red);
  transform: translateY(-2px);
}

.hero-image-col {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: fadeUp 1s ease 0.6s both;
}

.avatar-frame {
  position: relative;
  width: clamp(240px, 30vw, 380px);
  height: clamp(300px, 38vw, 480px);
  filter: drop-shadow(0 20px 40px rgba(139, 26, 26, 0.15))
    drop-shadow(0 8px 16px rgba(201, 147, 58, 0.2));
  transition: filter 0.3s ease;
}

.avatar-frame:hover {
  filter: drop-shadow(0 30px 50px rgba(139, 26, 26, 0.2))
    drop-shadow(0 12px 24px rgba(201, 147, 58, 0.3));
}

.avatar-bg-shape {
  position: absolute;
  inset: 0;
  border-radius: 60% 40% 55% 45% / 50% 55% 45% 50%;
  background: linear-gradient(
    135deg,
    rgba(212, 98, 26, 0.12),
    rgba(201, 147, 58, 0.18)
  );
  border: 2px solid rgba(201, 147, 58, 0.4);
  box-shadow:
    inset 0 0 30px rgba(212, 98, 26, 0.08),
    0 0 50px rgba(201, 147, 58, 0.15);
  animation: morphShape 8s ease-in-out infinite;
  z-index: 1;
}

@keyframes morphShape {
  0%,
  100% {
    border-radius: 60% 40% 55% 45% / 50% 55% 45% 50%;
  }
  50% {
    border-radius: 45% 55% 45% 55% / 55% 45% 55% 45%;
  }
}

.avatar-placeholder {
  position: absolute;
  inset: 20px;
  border-radius: inherit;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  overflow: hidden;
  z-index: 0;
}

.avatar-icon {
  width: 100%;
  height: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.avatar-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: inherit;
  filter: brightness(1.05) contrast(1.1) sepia(0.15);
  transition: filter 0.3s ease;
  display: block;
}

.avatar-icon img:hover {
  filter: brightness(1.15) contrast(1.15) sepia(0.1);
}

.avatar-ornament {
  position: absolute;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  opacity: 0.6;
  box-shadow:
    0 0 15px rgba(201, 147, 58, 0.3),
    inset 0 0 15px rgba(201, 147, 58, 0.1);
  transition: all 0.3s ease;
  z-index: 2;
}

.avatar-ornament:nth-child(2) {
  top: -15px;
  right: -15px;
  animation: float 4s ease-in-out infinite;
}

.avatar-ornament:nth-child(3) {
  bottom: 20px;
  left: -20px;
  width: 45px;
  height: 45px;
  animation: float 5s ease-in-out infinite reverse;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}

/* ---- SECTION COMMONS ---- */
section {
  padding: 90px 5vw;
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-eyebrow {
  font-family: "Crimson Pro", serif;
  font-style: italic;
  color: var(--saffron);
  font-size: 1rem;
  letter-spacing: 0.1em;
  display: block;
  margin-bottom: 10px;
}

.section-title {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  color: var(--deep-red);
  font-weight: 600;
  line-height: 1.2;
}

.ornament-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: center;
  margin: 16px 0;
}
.ornament-divider::before,
.ornament-divider::after {
  content: "";
  flex: 1;
  max-width: 80px;
  height: 1px;
  background: var(--divider);
}
.ornament-divider span {
  color: var(--gold);
  font-size: 1.2rem;
}

/* ---- ABOUT ---- */
#parichaya {
  background: var(--cream);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 60px;
  align-items: start;
  max-width: 1100px;
  margin: 0 auto;
}

.about-stats {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.stat-card {
  background: white;
  border: 1px solid var(--divider);
  border-left: 4px solid var(--gold);
  padding: 20px 24px;
  border-radius: 4px;
  transition:
    box-shadow 0.2s,
    transform 0.2s;
}
.stat-card:hover {
  box-shadow: 0 4px 20px rgba(201, 147, 58, 0.15);
  transform: translateX(4px);
}
.stat-number {
  font-size: 2.2rem;
  font-weight: 600;
  color: var(--saffron);
}
.stat-label {
  color: var(--muted);
  font-size: 0.9rem;
  margin-top: 2px;
}

.about-text {
}
.about-text p {
  color: var(--light-brown);
  line-height: 2;
  font-size: 1.05rem;
  margin-bottom: 18px;
}

.about-text ul {
  list-style: none;
  padding-left: 0;
  margin: 20px 0;
}

.about-text > ul > li {
  color: var(--ink);
  font-size: 1.05rem;
  padding-left: 32px;
  margin-bottom: 16px;
  position: relative;
  line-height: 1.8;
}

.about-text > ul > li::before {
  content: "✦";
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 0.85rem;
  font-weight: bold;
}

.about-text > ul > li strong {
  color: var(--saffron);
  font-weight: 600;
}

/* Nested lists */
.about-text ul ul {
  list-style: none;
  padding-left: 0;
  margin: 8px 0 12px 0;
}

.about-text ul ul li {
  color: var(--light-brown);
  font-size: 1rem;
  padding-left: 28px;
  margin-bottom: 8px;
  position: relative;
  line-height: 1.7;
}

.about-text ul ul li::before {
  content: "—";
  position: absolute;
  left: 8px;
  color: var(--muted);
}

.about-text ul ul li strong {
  color: var(--deep-red);
  font-weight: 600;
}

.highlight-box {
  background: linear-gradient(
    135deg,
    rgba(212, 98, 26, 0.05),
    rgba(201, 147, 58, 0.08)
  );
  border: 1px solid var(--divider);
  border-radius: 6px;
  padding: 24px 28px;
  margin-top: 28px;
}
.highlight-box p {
  font-family: "Crimson Pro", serif;
  font-style: italic;
  font-size: 1.2rem;
  color: var(--brown);
  margin: 0;
}

/* ---- WRITINGS ---- */
#lekhana {
  background: white;
}

.books-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 28px;
  max-width: 1100px;
  margin: 0 auto;
}

.book-card {
  background: var(--cream);
  border: 1px solid var(--divider);
  border-radius: 8px;
  overflow: hidden;
  transition:
    transform 0.25s,
    box-shadow 0.25s;
  cursor: pointer;
}
.book-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(212, 98, 26, 0.12);
}

.book-cover {
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.5rem;
  position: relative;
  overflow: hidden;
}
.book-cover::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 50%, rgba(0, 0, 0, 0.15));
}

.bc-1 {
  background: linear-gradient(135deg, #8b1a1a, #c9933a);
}
.bc-2 {
  background: linear-gradient(135deg, #2c5f2e, #6b9e3e);
}
.bc-3 {
  background: linear-gradient(135deg, #1a3a6b, #3a78c9);
}
.bc-4 {
  background: linear-gradient(135deg, #6b2a6b, #c978c9);
}

.book-info {
  padding: 20px;
}
.book-title {
  font-size: 1.05rem;
  color: var(--deep-red);
  font-weight: 600;
  margin-bottom: 6px;
}
.book-year {
  font-size: 0.82rem;
  color: var(--muted);
  margin-bottom: 10px;
  font-family: "Crimson Pro", serif;
}
.book-desc {
  font-size: 0.88rem;
  color: var(--light-brown);
  line-height: 1.7;
}

.book-card-link {
  text-decoration: none;
  color: inherit;
  display: block;
}

/* ---- GALLERY ---- */
#gallery {
  background: var(--cream);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
}

.gallery-item {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 1;
  cursor: pointer;
  group: "gallery";
}

.gallery-image-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #8b1a1a 0%, #c9933a 100%);
  border: 1px solid var(--divider);
  border-radius: 8px;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  overflow: hidden;
}

.gallery-item:hover .gallery-image-wrapper {
  transform: scale(1.05);
  box-shadow: 0 16px 40px rgba(212, 98, 26, 0.2);
}

.gallery-placeholder {
  font-size: 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 1;
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  padding: 20px;
  background: linear-gradient(
    to top,
    rgba(42, 26, 8, 0.8) 0%,
    rgba(42, 26, 8, 0.4) 50%,
    rgba(42, 26, 8, 0) 100%
  );
  opacity: 1;
  transition: opacity 0.3s ease;
  z-index: 2;
}

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

.gallery-label {
  color: white;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.03em;
}

/* ---- SOCIAL WORK ---- */
#samajik {
  background: var(--cream);
}

.work-timeline {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}

.work-timeline::before {
  content: "";
  position: absolute;
  left: 28px;
  top: 0;
  bottom: 0;
  width: 1px;
  background: var(--divider);
}

.work-item {
  display: flex;
  gap: 28px;
  margin-bottom: 40px;
  animation: fadeUp 0.6s ease both;
}

.work-dot {
  width: 56px;
  height: 56px;
  min-width: 56px;
  border-radius: 50%;
  background: white;
  border: 2px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  position: relative;
  z-index: 1;
  box-shadow: 0 0 0 6px var(--cream);
}

.work-content {
  background: white;
  border: 1px solid var(--divider);
  border-radius: 8px;
  padding: 22px 26px;
  flex: 1;
  transition: box-shadow 0.2s;
}
.work-content:hover {
  box-shadow: 0 4px 20px rgba(201, 147, 58, 0.1);
}

.work-title {
  font-size: 1.05rem;
  color: var(--deep-red);
  font-weight: 600;
  margin-bottom: 4px;
}
.work-org {
  font-size: 0.85rem;
  color: var(--saffron);
  margin-bottom: 10px;
  font-family: "Crimson Pro", serif;
  font-style: italic;
}
.work-desc {
  font-size: 0.92rem;
  color: var(--light-brown);
  line-height: 1.75;
}

/* ---- SPIRITUAL ---- */
#adhyatmik {
  background: white;
}

.thoughts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 28px;
  max-width: 1100px;
  margin: 0 auto;
}

.thought-card {
  background: linear-gradient(145deg, var(--cream), rgba(201, 147, 58, 0.04));
  border: 1px solid var(--divider);
  border-radius: 10px;
  padding: 32px 28px;
  position: relative;
  overflow: hidden;
  transition:
    transform 0.25s,
    box-shadow 0.25s;
}
.thought-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(212, 98, 26, 0.1);
}

.thought-card::before {
  content: '"';
  position: absolute;
  top: -10px;
  left: 16px;
  font-size: 8rem;
  color: rgba(201, 147, 58, 0.1);
  font-family: "Crimson Pro", serif;
  line-height: 1;
}

.thought-icon {
  font-size: 1.8rem;
  margin-bottom: 16px;
}
.thought-text {
  font-family: "Crimson Pro", serif;
  font-style: italic;
  font-size: 1.12rem;
  color: var(--brown);
  line-height: 1.8;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}
.thought-source {
  font-size: 0.82rem;
  color: var(--muted);
  letter-spacing: 0.05em;
}

/* ---- CONTACT ---- */
#sampark {
  background: linear-gradient(135deg, var(--deep-red) 0%, #5a0f0f 100%);
  color: white;
  text-align: center;
}

#sampark .section-title {
  color: var(--gold);
}
#sampark .section-eyebrow {
  color: rgba(255, 255, 255, 0.6);
}
#sampark .ornament-divider::before,
#sampark .ornament-divider::after {
  background: rgba(201, 147, 58, 0.3);
}

.contact-intro {
  color: rgba(255, 255, 255, 0.75);
  font-family: "Crimson Pro", serif;
  font-style: italic;
  font-size: 1.1rem;
  margin-bottom: 48px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.8;
}

.contact-grid {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

.contact-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(201, 147, 58, 0.3);
  border-radius: 8px;
  padding: 28px 32px;
  min-width: 200px;
  transition:
    background 0.25s,
    transform 0.2s;
  cursor: pointer;
  text-decoration: none;
  color: white;
}
.contact-card:hover {
  background: rgba(255, 255, 255, 0.14);
  transform: translateY(-4px);
}
.contact-card-icon {
  font-size: 2rem;
  margin-bottom: 12px;
}
.contact-card-label {
  font-size: 0.8rem;
  color: var(--gold);
  letter-spacing: 0.1em;
  margin-bottom: 6px;
}
.contact-card-value {
  font-size: 0.98rem;
  color: rgba(255, 255, 255, 0.85);
}

.contact-form {
  max-width: 560px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-form input,
.contact-form textarea {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(201, 147, 58, 0.3);
  color: white;
  padding: 14px 18px;
  border-radius: 6px;
  font-family: "Tiro Devanagari Hindi", serif;
  font-size: 0.95rem;
  outline: none;
  transition:
    border-color 0.2s,
    background 0.2s;
  width: 100%;
}
.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.35);
}
.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--gold);
  background: rgba(255, 255, 255, 0.12);
}
.contact-form textarea {
  min-height: 130px;
  resize: vertical;
}

.submit-btn {
  padding: 14px 36px;
  background: var(--gold);
  color: var(--brown);
  border: none;
  border-radius: 6px;
  font-family: "Tiro Devanagari Hindi", serif;
  font-size: 1rem;
  cursor: pointer;
  font-weight: 600;
  transition:
    background 0.25s,
    transform 0.2s;
  align-self: center;
}
.submit-btn:hover {
  background: #e0a840;
  transform: translateY(-2px);
}

/* ---- FOOTER ---- */
footer {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.45);
  text-align: center;
  padding: 24px 5vw;
  font-size: 0.85rem;
  font-family: "Crimson Pro", serif;
}
footer span {
  color: var(--gold);
}

/* ---- SCROLL REVEAL ---- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---- RESPONSIVE ---- */
@media (max-width: 768px) {
  #hero {
    grid-template-columns: 1fr;
    text-align: center;
    padding-top: 90px;
  }
  .hero-image-col {
    order: -1;
  }
  .hero-roles {
    justify-content: center;
  }
  .hero-quote {
    text-align: left;
  }
  .about-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .work-timeline::before {
    left: 20px;
  }
  .work-dot {
    width: 40px;
    height: 40px;
    min-width: 40px;
    font-size: 1.1rem;
  }
  .nav-links {
    display: none;
  }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    background: var(--cream);
    padding: 20px;
    border-bottom: 1px solid var(--divider);
    gap: 16px;
  }
  .hamburger {
    display: flex;
  }
}

/* ---- LIGHTBOX MODAL ---- */
.lightbox-modal {
  display: none;
  position: fixed;
  z-index: 200;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(42, 26, 8, 0.95);
  backdrop-filter: blur(8px);
  animation: fadeInLightbox 0.3s ease;
}

.lightbox-modal.open {
  display: flex;
  align-items: center;
  justify-content: center;
}

@keyframes fadeInLightbox {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.lightbox-content {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: zoomInLightbox 0.3s ease;
}

@keyframes zoomInLightbox {
  from {
    transform: scale(0.8);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

#lightbox-image {
  max-width: 100%;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.lightbox-close {
  position: absolute;
  top: -45px;
  right: 0;
  background: none;
  border: none;
  color: white;
  font-size: 36px;
  cursor: pointer;
  transition: opacity 0.2s;
  z-index: 201;
}

.lightbox-close:hover {
  opacity: 0.7;
}

.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.2);
  border: none;
  color: white;
  font-size: 32px;
  cursor: pointer;
  padding: 16px 20px;
  transition:
    background 0.2s,
    transform 0.2s;
  border-radius: 4px;
  z-index: 201;
}

.lightbox-prev:hover,
.lightbox-next:hover {
  background: rgba(255, 255, 255, 0.35);
  transform: translateY(-50%) scale(1.1);
}

.lightbox-prev {
  left: 20px;
}

.lightbox-next {
  right: 20px;
}

.lightbox-caption {
  position: absolute;
  bottom: -40px;
  left: 0;
  right: 0;
  text-align: center;
  color: white;
  font-size: 1rem;
  font-family: "Tiro Devanagari Hindi", serif;
}
