/* ============================================
   TAMOHARA DASA — ISKCON-Inspired Design System
   ============================================ */

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;0,800;1,400;1,600&family=Inter:wght@300;400;500;600;700&display=swap');

/* ---- CSS Custom Properties ---- */
:root {
  --saffron: #FF9933;
  --saffron-dark: #E07A1F;
  --saffron-light: #FFB366;
  --gold: #D4A843;
  --gold-light: #F0D78C;
  --gold-dark: #B8922E;
  --deep-blue: #1a237e;
  --deep-blue-light: #3949ab;
  --cream: #FFF8F0;
  --cream-dark: #F5EDE0;
  --white: #ffffff;
  --text-dark: #2c2216;
  --text-medium: #5a4e3e;
  --text-light: #8a7e6e;
  --border: rgba(212, 168, 67, 0.2);
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.12);
  --shadow-gold: 0 4px 20px rgba(212, 168, 67, 0.15);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 30px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --max-width: 1200px;
  --nav-height: 72px;
}

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--cream);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
ul, ol { list-style: none; }

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* ---- Animated Background Particles ---- */
body::before {
  content: '';
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(2px 2px at 10% 20%, rgba(255,153,51,0.12) 50%, transparent 50%),
    radial-gradient(2px 2px at 30% 70%, rgba(212,168,67,0.08) 50%, transparent 50%),
    radial-gradient(3px 3px at 50% 10%, rgba(255,153,51,0.06) 50%, transparent 50%),
    radial-gradient(2px 2px at 70% 50%, rgba(212,168,67,0.1) 50%, transparent 50%),
    radial-gradient(2px 2px at 90% 80%, rgba(255,153,51,0.08) 50%, transparent 50%),
    radial-gradient(3px 3px at 20% 90%, rgba(212,168,67,0.06) 50%, transparent 50%),
    radial-gradient(2px 2px at 80% 30%, rgba(255,153,51,0.1) 50%, transparent 50%);
  animation: floatParticles 25s ease-in-out infinite alternate;
}

@keyframes floatParticles {
  0% { transform: translateY(0) scale(1); }
  100% { transform: translateY(-30px) scale(1.05); }
}

/* ---- Typography ---- */
h1, h2, h3, h4, h5, h6 { font-family: var(--font-heading); font-weight: 700; line-height: 1.25; }
h1 { font-size: clamp(2.2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); }
h3 { font-size: clamp(1.3rem, 3vw, 1.8rem); }
h4 { font-size: 1.2rem; }
p { margin-bottom: 1em; }

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--saffron);
  margin-bottom: 12px;
}

.section-label::before {
  content: '';
  width: 30px;
  height: 2px;
  background: var(--saffron);
}

.section-title {
  margin-bottom: 20px;
  color: var(--text-dark);
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-medium);
  max-width: 700px;
  line-height: 1.8;
}

/* ---- Navigation ---- */
.navbar {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  height: var(--nav-height);
  z-index: 1000;
  background: rgba(255,248,240,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}

.navbar.scrolled {
  box-shadow: var(--shadow-md);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.nav-brand {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text-dark);
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-brand .brand-icon {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, var(--saffron), var(--gold));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: white;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-links a {
  padding: 8px 16px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-medium);
  border-radius: var(--radius-sm);
  transition: var(--transition);
  position: relative;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--saffron-dark);
  background: rgba(255,153,51,0.08);
}

.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 2px;
  background: var(--saffron);
  border-radius: 1px;
}

/* Mobile Menu */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: var(--transition);
}

@media (max-width: 900px) {
  .nav-toggle { display: flex; }
  .nav-links {
    position: fixed;
    top: 0; right: -100%;
    width: 280px;
    height: 100vh;
    flex-direction: column;
    background: var(--cream);
    padding: 100px 30px 40px;
    gap: 4px;
    box-shadow: var(--shadow-lg);
    transition: var(--transition-slow);
    align-items: stretch;
  }
  .nav-links.open { right: 0; }
  .nav-links a { padding: 12px 16px; font-size: 1rem; }
}

/* ---- Hero Section ---- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: calc(var(--nav-height) + 40px) 24px 60px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: 0;
}

.hero-bg::before {
  content: '';
  position: absolute;
  width: 100%; height: 100%;
  background: linear-gradient(180deg,
    rgba(255,248,240,0.3) 0%,
    rgba(255,153,51,0.06) 30%,
    rgba(212,168,67,0.04) 60%,
    rgba(255,248,240,0.9) 100%
  );
  z-index: 1;
}

.hero-bg-image {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.35;
}

.hero-bg-gradient {
  width: 100%; height: 100%;
  background: linear-gradient(135deg,
    #FFF8F0 0%,
    #FFE8CC 25%,
    #FFD4A8 50%,
    #FFE0B8 75%,
    #FFF8F0 100%
  );
  background-size: 400% 400%;
  animation: gradientFlow 12s ease infinite;
}

@keyframes gradientFlow {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

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

.hero-content .section-label { justify-content: center; }

.hero-title {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 800;
  margin-bottom: 20px;
  background: linear-gradient(135deg, var(--text-dark) 0%, var(--saffron-dark) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: fadeInUp 1s ease forwards;
}

.hero-description {
  font-size: 1.15rem;
  color: var(--text-medium);
  max-width: 600px;
  margin: 0 auto 32px;
  animation: fadeInUp 1s ease 0.2s forwards;
  opacity: 0;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeInUp 1s ease 0.4s forwards;
  opacity: 0;
}

/* ---- Decorative Elements ---- */
.lotus-divider {
  text-align: center;
  margin: 50px 0;
  font-size: 1.5rem;
  color: var(--saffron-light);
  opacity: 0.6;
}

.ornament-line {
  display: flex;
  align-items: center;
  gap: 16px;
  justify-content: center;
  margin: 40px 0;
}

.ornament-line::before,
.ornament-line::after {
  content: '';
  width: 80px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-light), transparent);
}

.ornament-line span {
  color: var(--gold);
  font-size: 1.2rem;
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 600;
  border: none;
  border-radius: var(--radius-xl);
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: linear-gradient(135deg, var(--saffron), var(--saffron-dark));
  color: white;
  box-shadow: 0 4px 15px rgba(255,153,51,0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(255,153,51,0.4);
}

.btn-secondary {
  background: transparent;
  color: var(--saffron-dark);
  border: 2px solid var(--saffron-light);
}

.btn-secondary:hover {
  background: rgba(255,153,51,0.08);
  border-color: var(--saffron);
}

/* ---- Sections ---- */
.section {
  position: relative;
  padding: 100px 0;
  z-index: 1;
}

.section-alt {
  background: linear-gradient(180deg, var(--cream-dark) 0%, var(--cream) 100%);
}

.section-blue {
  background: linear-gradient(135deg, var(--deep-blue) 0%, #283593 100%);
  color: var(--white);
}

.section-blue .section-label { color: var(--gold-light); }
.section-blue .section-label::before { background: var(--gold-light); }
.section-blue .section-title { color: var(--white); }
.section-blue .section-subtitle { color: rgba(255,255,255,0.7); }

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

.section-header .section-subtitle {
  margin: 0 auto;
}

/* ---- Cards ---- */
.card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: var(--transition);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-gold);
  border-color: rgba(212,168,67,0.35);
}

.card-icon {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, rgba(255,153,51,0.1), rgba(212,168,67,0.1));
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 20px;
}

.card-title {
  font-size: 1.15rem;
  margin-bottom: 12px;
  font-family: var(--font-heading);
}

.card-text {
  color: var(--text-medium);
  font-size: 0.95rem;
  line-height: 1.7;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

/* ---- Page Hero (Inner Pages) ---- */
.page-hero {
  position: relative;
  padding: calc(var(--nav-height) + 60px) 0 80px;
  text-align: center;
  overflow: hidden;
}

.page-hero-bg {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: 0;
}

.page-hero-bg-gradient {
  width: 100%; height: 100%;
  background: linear-gradient(135deg,
    var(--cream) 0%,
    #FFE8CC 40%,
    #FFDDB3 60%,
    var(--cream) 100%
  );
}

.page-hero-bg::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 100%; height: 60%;
  background: linear-gradient(to top, var(--cream), transparent);
  z-index: 1;
}

.page-hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  margin: 0 auto;
  padding: 0 24px;
}

.page-hero-title {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 800;
  margin-bottom: 16px;
  background: linear-gradient(135deg, var(--text-dark) 0%, var(--saffron-dark) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.page-hero-text {
  font-size: 1.1rem;
  color: var(--text-medium);
  line-height: 1.8;
}

/* ---- Content Blocks ---- */
.content-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 80px;
}

.content-block.reverse { direction: rtl; }
.content-block.reverse > * { direction: ltr; }

.content-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  position: relative;
}

.content-image img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  transition: var(--transition-slow);
}

.content-image:hover img {
  transform: scale(1.03);
}

.content-image-placeholder {
  width: 100%;
  height: 350px;
  background: linear-gradient(135deg, #FFE0B8, #FFD4A8, #FFECD0);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
}

.content-text h3 {
  margin-bottom: 16px;
}

.content-text p {
  color: var(--text-medium);
  line-height: 1.8;
}

@media (max-width: 768px) {
  .content-block { grid-template-columns: 1fr; gap: 30px; }
  .content-block.reverse { direction: ltr; }
}

/* ---- Timeline ---- */
.timeline {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  padding-left: 40px;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 12px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--saffron), var(--gold), var(--deep-blue-light));
}

.timeline-item {
  position: relative;
  margin-bottom: 40px;
  padding: 24px 28px;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: var(--transition);
}

.timeline-item:hover {
  transform: translateX(4px);
  box-shadow: var(--shadow-gold);
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -34px;
  top: 30px;
  width: 14px;
  height: 14px;
  background: linear-gradient(135deg, var(--saffron), var(--gold));
  border-radius: 50%;
  border: 3px solid var(--cream);
}

.timeline-year {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--saffron-dark);
  margin-bottom: 6px;
}

.timeline-title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.timeline-text {
  color: var(--text-medium);
  font-size: 0.92rem;
  line-height: 1.7;
}

/* ---- Gallery ---- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  aspect-ratio: 4/3;
}

.gallery-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}

.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-item .gallery-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 20px;
  background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
  color: white;
  transform: translateY(100%);
  transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
  transform: translateY(0);
}

.gallery-overlay h4 { font-size: 1rem; margin-bottom: 4px; }
.gallery-overlay p { font-size: 0.82rem; opacity: 0.85; margin: 0; }

.gallery-item-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: rgba(255,153,51,0.3);
}

.gallery-item-placeholder.g1 { background: linear-gradient(135deg, #FFE0B8, #FFD4A8); }
.gallery-item-placeholder.g2 { background: linear-gradient(135deg, #FFECD0, #FFE0B8); }
.gallery-item-placeholder.g3 { background: linear-gradient(135deg, #FFD4A8, #FFCB99); }
.gallery-item-placeholder.g4 { background: linear-gradient(135deg, #E8D5B0, #F5E6CC); }
.gallery-item-placeholder.g5 { background: linear-gradient(135deg, #D4C4A8, #E8D8C0); }
.gallery-item-placeholder.g6 { background: linear-gradient(135deg, #FFE8CC, #FFD9B0); }
.gallery-item-placeholder.g7 { background: linear-gradient(135deg, #FFF0DC, #FFE8CC); }
.gallery-item-placeholder.g8 { background: linear-gradient(135deg, #E8D0A8, #F0DCC0); }
.gallery-item-placeholder.g9 { background: linear-gradient(135deg, #FFD0A0, #FFE0C0); }
.gallery-item-placeholder.g10 { background: linear-gradient(135deg, #FFECD0, #FFDDB3); }
.gallery-item-placeholder.g11 { background: linear-gradient(135deg, #F5DDB8, #FFE8CC); }
.gallery-item-placeholder.g12 { background: linear-gradient(135deg, #FFE0B8, #FFF0DC); }

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.92);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  padding: 40px;
}

.lightbox.active { display: flex; }

.lightbox-content {
  max-width: 900px;
  max-height: 80vh;
  border-radius: var(--radius-md);
  overflow: hidden;
}

.lightbox-content img {
  width: 100%;
  height: auto;
  max-height: 80vh;
  object-fit: contain;
}

.lightbox-close {
  position: absolute;
  top: 24px; right: 30px;
  font-size: 2rem;
  color: white;
  cursor: pointer;
  width: 48px; height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  transition: var(--transition);
}

.lightbox-close:hover { background: rgba(255,255,255,0.2); }

.lightbox-caption {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  color: white;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  text-align: center;
}

/* ---- Contact Form ---- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: start;
}

@media (max-width: 768px) {
  .contact-grid { grid-template-columns: 1fr; }
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--white);
  color: var(--text-dark);
  transition: var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--saffron);
  box-shadow: 0 0 0 3px rgba(255,153,51,0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 130px;
}

.form-submit {
  width: 100%;
  padding: 16px;
  font-size: 1rem;
}

.contact-info-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  margin-bottom: 20px;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
}

.contact-info-item:last-child { margin-bottom: 0; }

.contact-info-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, rgba(255,153,51,0.1), rgba(212,168,67,0.1));
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.contact-info-text h4 {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 4px;
}

.contact-info-text p {
  color: var(--text-medium);
  font-size: 0.9rem;
  margin: 0;
}

.social-links {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}

.social-link {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(255,153,51,0.1), rgba(212,168,67,0.1));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: var(--transition);
}

.social-link:hover {
  background: linear-gradient(135deg, var(--saffron), var(--saffron-dark));
  color: white;
  transform: translateY(-3px);
}

/* ---- Stats Section ---- */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

@media (max-width: 768px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}

.stat-item {
  text-align: center;
  padding: 32px 16px;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 8px;
}

.stat-text {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
}

/* ---- Quote Block ---- */
.quote-block {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 40px;
  text-align: center;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}

.quote-block::before {
  content: '"';
  font-family: var(--font-heading);
  font-size: 5rem;
  color: var(--saffron-light);
  opacity: 0.3;
  position: absolute;
  top: -10px; left: 30px;
  line-height: 1;
}

.quote-text {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-style: italic;
  color: var(--text-dark);
  line-height: 1.7;
  margin-bottom: 20px;
}

.quote-author {
  font-size: 0.9rem;
  color: var(--saffron-dark);
  font-weight: 600;
}

/* ---- Feature List ---- */
.feature-list {
  list-style: none;
  padding: 0;
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 16px;
  font-size: 0.95rem;
  color: var(--text-medium);
  line-height: 1.6;
}

.feature-list li::before {
  content: '✦';
  color: var(--saffron);
  font-size: 0.8rem;
  flex-shrink: 0;
  margin-top: 3px;
}

/* ---- Footer ---- */
.footer {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  color: rgba(255,255,255,0.7);
  padding: 60px 0 0;
  position: relative;
  z-index: 1;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr; }
}

.footer-brand {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
}

.footer-desc {
  font-size: 0.9rem;
  line-height: 1.8;
  max-width: 360px;
}

.footer-title {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 20px;
}

.footer-links a {
  display: block;
  padding: 6px 0;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--saffron);
  padding-left: 4px;
}

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.footer-social a {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  transition: var(--transition);
  font-size: 1rem;
}

.footer-social a:hover {
  background: var(--saffron);
  color: white;
  transform: translateY(-2px);
}

.footer-bottom {
  text-align: center;
  padding: 24px 0;
  font-size: 0.85rem;
}

.footer-bottom a {
  color: var(--saffron);
  font-weight: 600;
}

.footer-bottom a:hover {
  text-decoration: underline;
}

.footer-credits {
  margin-top: 8px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
}

/* ---- Gate / Password Page ---- */
.gate-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #1a237e 100%);
  position: relative;
  overflow: hidden;
}

.gate-page::before {
  content: '';
  position: absolute;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(255,153,51,0.08) 0%, transparent 70%);
  border-radius: 50%;
  top: -100px; right: -100px;
  animation: gateGlow 8s ease-in-out infinite alternate;
}

.gate-page::after {
  content: '';
  position: absolute;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(212,168,67,0.06) 0%, transparent 70%);
  border-radius: 50%;
  bottom: -100px; left: -100px;
  animation: gateGlow 10s ease-in-out infinite alternate-reverse;
}

@keyframes gateGlow {
  0% { transform: scale(1); opacity: 0.5; }
  100% { transform: scale(1.3); opacity: 1; }
}

.gate-card {
  position: relative;
  z-index: 1;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 52px 44px;
  text-align: center;
  max-width: 420px;
  width: 90%;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.gate-icon {
  width: 72px; height: 72px;
  margin: 0 auto 24px;
  background: linear-gradient(135deg, var(--saffron), var(--gold));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  box-shadow: 0 0 40px rgba(255,153,51,0.2);
}

.gate-title {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}

.gate-subtitle {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 32px;
}

.gate-input {
  width: 100%;
  padding: 16px 20px;
  font-family: var(--font-body);
  font-size: 1rem;
  border: 1.5px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.04);
  color: var(--white);
  text-align: center;
  outline: none;
  transition: var(--transition);
  margin-bottom: 16px;
}

.gate-input:focus {
  border-color: var(--saffron);
  box-shadow: 0 0 0 3px rgba(255,153,51,0.1);
}

.gate-input::placeholder {
  color: rgba(255,255,255,0.3);
}

.gate-btn {
  width: 100%;
  padding: 16px;
  background: linear-gradient(135deg, var(--saffron), var(--saffron-dark));
  color: white;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition);
}

.gate-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(255,153,51,0.3);
}

.gate-error {
  color: #ff6b6b;
  font-size: 0.85rem;
  margin-top: 12px;
  display: none;
}

.gate-error.show { display: block; }

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

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

.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Staggered animation delays */
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }

/* ---- Responsive ---- */
@media (max-width: 480px) {
  .section { padding: 60px 0; }
  .hero { min-height: 85vh; }
  .hero-title { font-size: 2rem; }
  .card { padding: 24px; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .gate-card { padding: 36px 28px; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
}

/* ---- Utility ---- */
.text-center { text-align: center; }
.text-saffron { color: var(--saffron); }
.text-gold { color: var(--gold); }
.mt-1 { margin-top: 10px; }
.mt-2 { margin-top: 20px; }
.mt-3 { margin-top: 30px; }
.mb-1 { margin-bottom: 10px; }
.mb-2 { margin-bottom: 20px; }
.mb-3 { margin-bottom: 30px; }
