/* =====================================================
   KHRA – SALKKAR 2027 Landing Page Styles
   Color Palette:
     Dark Brown  : #2B1D18
     Gold        : #D4A017
     White       : #FFFFFF
     Light Cream : #F7F4EE
   ===================================================== */

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

:root {
  --brown:      #1976D2;
  --brown-deep: #1976D2;
  --brown-mid:  #E3F2FD;
  --brown-lt:   #BBDEFB;
  --gold:       #1976D2;
  --gold-lt:    #42A5F5;
  --gold-dk:    #1565C0;
  --white:      #FFFFFF;
  --cream:      #FFFFFF;
  --cream-dk:   #F5F5F5;
  --text-dark:  #333333;
  --text-mid:   #555555;
  --text-light: #777777;
  --success:    #2d7a4f;
  --radius:     12px;
  --shadow:     0 8px 32px rgba(43,29,24,.15);
  --shadow-lg:  0 20px 60px rgba(43,29,24,.22);
  --transition: 0.35s cubic-bezier(.4,0,.2,1);
}

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

body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--cream);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
}

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

h1,h2,h3,h4 { font-family: 'Playfair Display', Georgia, serif; line-height: 1.2; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

.gold { color: var(--gold); }
.text-center { text-align: center; }

/* ---------- Loader ---------- */
#loader {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--brown-deep);
  display: flex; align-items: center; justify-content: center;
  transition: opacity .6s, visibility .6s;
}
#loader.hidden { opacity: 0; visibility: hidden; }
.loader-inner { text-align: center; }
.loader-logo {
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem; font-weight: 700;
  color: var(--gold);
  letter-spacing: 6px;
  margin-bottom: 24px;
  animation: pulse 1.4s ease-in-out infinite;
}
.loader-bar {
  width: 200px; height: 3px;
  background: rgba(255,255,255,.15);
  border-radius: 2px; overflow: hidden;
}
.loader-bar span {
  display: block; height: 100%;
  background: var(--gold);
  animation: load 1.8s ease-in-out infinite;
}
@keyframes load { 0%{width:0} 60%{width:100%} 100%{width:100%} }
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:.6} }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 28px;
  border-radius: 6px;
  font-family: 'Inter', sans-serif;
  font-size: .92rem; font-weight: 600;
  letter-spacing: .5px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-gold {
  background: var(--gold); color: var(--white);
  border-color: var(--gold);
}
.btn-gold:hover {
  background: var(--gold-lt); border-color: var(--gold-lt);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(212,160,23,.4);
}
.btn-outline {
  background: transparent; color: var(--white);
  border-color: rgba(255,255,255,.7);
}
.btn-outline:hover {
  background: rgba(255,255,255,.12);
  border-color: var(--white);
  transform: translateY(-2px);
}
.btn-outline-dark {
  background: transparent; color: var(--brown);
  border-color: var(--brown);
}
.btn-outline-dark:hover {
  background: var(--brown); color: var(--white);
  transform: translateY(-2px);
}
.btn-full { width: 100%; justify-content: center; }

/* ---------- Section Commons ---------- */
.section-eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: .78rem; font-weight: 600;
  letter-spacing: 3px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 10px;
}
.section-title {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  color: var(--brown); margin-bottom: 18px;
}
.section-sub { color: var(--text-light); max-width: 600px; margin: 0 auto 48px; }
.section-body { color: var(--text-mid); line-height: 1.75; margin-bottom: 24px; }

/* ---------- Scroll Reveal ---------- */
.reveal { opacity: 0; transform: translateY(36px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: none; }
.fade-in-left { opacity: 0; transform: translateX(-48px); transition: opacity .8s .2s ease, transform .8s .2s ease; }
.fade-in-right { opacity: 0; transform: translateX(48px); transition: opacity .8s .4s ease, transform .8s .4s ease; }
.fade-in-left.visible, .fade-in-right.visible { opacity: 1; transform: none; }

/* ---------- Top Bar ---------- */
.top-bar {
  background: var(--brown-deep);
  color: rgba(255,255,255,.75);
  font-size: .82rem;
  padding: 8px 0;
  z-index: 1000;
}
.top-bar-inner {
  display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap;
}
.top-bar-left { display: flex; gap: 20px; flex-wrap: wrap; }
.top-bar-left a, .top-bar-left span {
  display: flex; align-items: center; gap: 6px;
  color: rgba(255,255,255,.75);
  transition: color .25s;
}
.top-bar-left a:hover { color: var(--gold); }
.top-bar-left i { color: var(--gold); font-size: .75rem; }
.top-bar-right { display: flex; gap: 14px; }
.top-bar-right a {
  width: 28px; height: 28px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  color: rgba(255,255,255,.75);
  font-size: .75rem;
  transition: var(--transition);
}
.top-bar-right a:hover { background: var(--gold); color: var(--brown-deep); }

/* ---------- Navbar ---------- */
#navbar {
  position: sticky; top: 0; z-index: 999;
  background: rgba(255,255,255,0.98);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0,0,0,0.05);
  transition: background .35s, box-shadow .35s;
}
#navbar.scrolled { box-shadow: 0 4px 24px rgba(0,0,0,.1); }
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 70px; gap: 24px;
}
.nav-logo {
  display: flex; align-items: center; gap: 10px;
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem; font-weight: 700;
  color: var(--gold);
  flex-shrink: 0;
}
.logo-icon {
  width: 38px; height: 38px;
  background: var(--gold);
  color: var(--brown-deep);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: .9rem;
}
.nav-links {
  display: flex; align-items: center; gap: 6px; flex-wrap: wrap;
}
.nav-links li a {
  padding: 8px 12px;
  color: #1976D2;
  font-size: .88rem; font-weight: 500;
  border-radius: 6px;
  transition: var(--transition);
}
.nav-links li a:hover { color: var(--gold); background: rgba(25, 118, 210, 0.08); }
.nav-links li a.btn-register {
  background: var(--gold); color: var(--white);
  padding: 9px 20px; border-radius: 6px;
  font-weight: 600;
}
.nav-links li a.btn-register:hover { background: var(--gold-lt); }
.nav-toggle {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.nav-toggle span {
  display: block; width: 24px; height: 2px;
  background: var(--white); border-radius: 2px;
  transition: var(--transition);
}

/* ---------- Hero ---------- */
.hero {
  position: relative; min-height: 100vh;
  display: flex; flex-direction: column; justify-content: center;
  overflow: hidden;
}
.hero-slider {
  position: absolute; inset: 0; z-index: 0;
}
.slide {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0; transition: opacity 1.2s ease;
}
.slide.active { opacity: 1; }
.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.4) 100%);
}
.hero-content {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1fr 420px; gap: 60px;
  align-items: center; padding-top: 60px; padding-bottom: 140px;
}
.hero-tag {
  font-family: 'Inter', sans-serif;
  font-size: .78rem; font-weight: 600;
  letter-spacing: 3px; text-transform: uppercase;
  color: var(--white); margin-bottom: 8px;
}
.hero-sub {
  font-size: .95rem; color: rgba(255,255,255,.75);
  margin-bottom: 20px; font-style: italic;
}
.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3.5rem, 8vw, 6rem);
  font-weight: 800; color: var(--white);
  margin-bottom: 12px; line-height: 1.1;
  letter-spacing: 2px;
  text-shadow: none;
}
.hero-conf {
  font-family: 'Inter', sans-serif;
  font-size: 1.1rem; color: var(--white);
  font-weight: 500; margin-bottom: 10px;
}
.hero-theme {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem; color: rgba(255,255,255,.9);
  font-style: italic; margin-bottom: 20px;
}
.hero-date {
  display: flex; align-items: center; gap: 10px;
  color: rgba(255,255,255,.8); font-size: .95rem;
  margin-bottom: 36px;
}
.hero-date i { color: var(--white); }
.hero-buttons { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-right { display: flex; justify-content: center; }
.hero-poster {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0,0,0,.5), 0 0 0 3px rgba(212,160,23,.3);
  width: 100%;
}
.hero-poster img { width: 100%; height: auto; object-fit: contain; }

/* Countdown Timer */
.countdown-bar {
  position: absolute; bottom: 0; left: 0; right: 0; z-index: 5;
  background: rgba(43, 29, 24, 0.4);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 20px 0;
}
.countdown-inner {
  display: flex; align-items: center; gap: 32px; flex-wrap: wrap;
}
.countdown-label {
  font-family: 'Inter', sans-serif;
  font-size: .85rem; font-weight: 600;
  letter-spacing: 1px; text-transform: uppercase;
  color: var(--gold); white-space: nowrap;
}
.countdown-items { display: flex; align-items: center; gap: 8px; }
.countdown-item {
  text-align: center; min-width: 64px;
}
.countdown-item span {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 2rem; font-weight: 700; color: var(--white); line-height: 1;
}
.countdown-item small {
  font-size: .68rem; color: rgba(255,255,255,.6);
  letter-spacing: 1.5px; text-transform: uppercase;
}
.countdown-sep { font-size: 1.6rem; color: var(--gold); font-weight: 700; margin-bottom: 14px; }

/* Slider Dots */
.slider-dots {
  position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%);
  z-index: 4; display: flex; gap: 8px;
}
.dot {
  width: 8px; height: 8px; border-radius: 4px;
  background: rgba(255,255,255,.4);
  border: none; cursor: pointer;
  transition: width .3s, background .3s;
  padding: 0;
}
.dot.active { width: 24px; background: var(--gold); }

/* Scroll Down */
.scroll-down {
  position: absolute; bottom: 18px; right: 40px; z-index: 4;
  display: flex; flex-direction: column; align-items: center; gap: 4px;
  color: rgba(255,255,255,.5); font-size: .7rem; letter-spacing: 2px;
  text-transform: uppercase;
  animation: bounce 2s infinite;
}
.scroll-down i { font-size: .8rem; }
@keyframes bounce { 0%,100%{transform:translateY(0)} 50%{transform:translateY(6px)} }

/* ---------- About Section ---------- */
.section-about {
  padding: 100px 0;
  background: var(--white);
}
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
}
.about-image {
  position: relative;
  width: 80%;
  margin: 0 auto;
}
.about-image img {
  width: 100%; height: 380px; object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}
.about-image-badge {
  position: absolute; bottom: -24px; right: -24px;
  background: var(--gold); color: var(--brown-deep);
  padding: 20px 28px; border-radius: var(--radius);
  text-align: center;
  box-shadow: var(--shadow);
}
.about-image-badge strong { display: block; font-size: .7rem; letter-spacing: 2px; text-transform: uppercase; }
.about-image-badge span { font-family: 'Playfair Display', serif; font-size: 2.2rem; font-weight: 700; }

.about-points { margin-bottom: 40px; display: flex; flex-direction: column; gap: 10px; }
.about-points li {
  display: flex; align-items: flex-start; gap: 10px;
  color: var(--text-mid); font-size: .95rem;
}
.about-points li i { color: var(--gold); flex-shrink: 0; margin-top: 3px; }

.stats-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
}
.stat-card {
  background: var(--cream); border-radius: var(--radius);
  padding: 24px; text-align: center;
  border-bottom: 3px solid var(--gold);
  transition: var(--transition);
}
.stat-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.stat-num {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 2.4rem; font-weight: 700; color: var(--gold); line-height: 1;
  margin-bottom: 6px;
}
.stat-label { font-size: .82rem; color: var(--text-mid); font-weight: 500; letter-spacing: .5px; }

/* ---------- Vision & Mission ---------- */
.section-vm {
  padding: 100px 0;
  background: var(--cream);
}
.vm-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 32px; margin-top: 48px;
}
.vm-card {
  background: var(--white); border-radius: var(--radius);
  padding: 48px 40px;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border-top: 4px solid var(--gold);
}
.vm-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.vm-icon {
  width: 64px; height: 64px;
  background: linear-gradient(135deg, var(--gold), var(--gold-lt));
  color: var(--brown-deep);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 24px;
}
.vm-card h3 { font-size: 1.5rem; color: var(--brown); margin-bottom: 16px; }
.vm-card p { color: var(--text-mid); line-height: 1.75; }
.vm-card ul { display: flex; flex-direction: column; gap: 10px; }
.vm-card ul li { display: flex; align-items: flex-start; gap: 10px; color: var(--text-mid); }
.vm-card ul li i { color: var(--gold); flex-shrink: 0; margin-top: 4px; }

/* ---------- SALKKAR Section ---------- */
.section-salkkar {
  padding: 100px 0;
  background: var(--brown);
  position: relative;
  overflow: hidden;
}
.section-salkkar::before {
  content: ''; position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23D4A017' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.salkkar-grid {
  display: grid; grid-template-columns: 420px 1fr; gap: 80px; align-items: center;
  position: relative; z-index: 1;
}
.salkkar-poster img {
  width: 100%; border-radius: var(--radius);
  box-shadow: 0 24px 64px rgba(0,0,0,.5);
  border: 2px solid rgba(212,160,23,.3);
}
.section-salkkar .section-eyebrow { color: var(--gold); }
.section-salkkar .section-title { color: var(--white); }
.section-salkkar .section-body { color: rgba(255,255,255,.75); }

.salkkar-highlights {
  display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 32px;
}
.salk-item {
  display: flex; align-items: center; gap: 12px;
  color: rgba(255,255,255,.85); font-size: .9rem;
}
.salk-item i { color: var(--gold); font-size: 1rem; flex-shrink: 0; }

.salkkar-meta { display: flex; gap: 32px; margin-bottom: 36px; flex-wrap: wrap; }
.salk-meta-item {
  display: flex; align-items: flex-start; gap: 12px;
  color: rgba(255,255,255,.85);
}
.salk-meta-item i { color: var(--gold); font-size: 1.1rem; flex-shrink: 0; margin-top: 2px; }
.salk-meta-item div { display: flex; flex-direction: column; gap: 2px; }
.salk-meta-item strong { font-size: .78rem; letter-spacing: 1px; text-transform: uppercase; color: var(--gold); }
.salk-meta-item span { font-size: .95rem; }
.salkkar-btns { display: flex; gap: 14px; flex-wrap: wrap; }

/* ---------- Why Attend ---------- */
.section-why {
  padding: 100px 0;
  background: var(--cream);
}
.why-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 48px;
}
.why-card {
  background: var(--white); border-radius: var(--radius);
  padding: 40px 32px; text-align: center;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border-bottom: 3px solid transparent;
}
.why-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-bottom-color: var(--gold);
}
.why-icon {
  width: 72px; height: 72px;
  background: linear-gradient(135deg, var(--brown), var(--brown-mid));
  color: var(--gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem;
  margin: 0 auto 24px;
  transition: var(--transition);
}
.why-card:hover .why-icon { background: linear-gradient(135deg, var(--gold), var(--gold-lt)); color: var(--brown-deep); }
.why-card h3 { font-size: 1.2rem; color: var(--brown); margin-bottom: 12px; }
.why-card p { color: var(--text-light); font-size: .92rem; line-height: 1.7; }

/* ---------- Schedule ---------- */
.section-schedule {
  padding: 100px 0;
  background: var(--white);
}
.schedule-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 48px;
}
.schedule-card {
  background: var(--cream); border-radius: var(--radius);
  overflow: hidden; transition: var(--transition);
  box-shadow: var(--shadow);
}
.schedule-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.schedule-card.featured { background: var(--brown); }
.sched-day {
  background: var(--gold); color: var(--brown-deep);
  padding: 14px 28px;
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem; font-weight: 700; letter-spacing: 1px;
  text-transform: uppercase;
}
.sched-date {
  padding: 14px 28px 0;
  font-size: .85rem; font-weight: 600;
  color: var(--text-light);
}
.schedule-card.featured .sched-date { color: rgba(255,255,255,.6); }
.sched-items { padding: 20px 28px 28px; display: flex; flex-direction: column; gap: 14px; }
.sched-items li {
  display: flex; gap: 14px; align-items: flex-start;
  font-size: .9rem; color: var(--text-mid);
}
.schedule-card.featured .sched-items li { color: rgba(255,255,255,.85); }
.sched-time {
  min-width: 46px; font-weight: 600;
  color: var(--gold); font-size: .82rem;
}

/* ---------- Sponsorship ---------- */
.section-sponsors {
  padding: 100px 0;
  background: var(--cream);
}
.sponsor-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 48px;
}
.sponsor-grid .title-card { grid-column: 1 / -1; max-width: 500px; margin: 0 auto; }
.sponsor-card {
  background: var(--white); border-radius: var(--radius);
  padding: 36px 32px; text-align: center;
  box-shadow: var(--shadow);
  transition: var(--transition);
  position: relative; overflow: hidden;
}
.sponsor-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.sponsor-badge {
  display: inline-block;
  background: var(--brown); color: var(--gold);
  padding: 4px 14px; border-radius: 20px;
  font-size: .72rem; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  margin-bottom: 16px;
}
.sponsor-badge.platinum { background: #8B8B9E; color: var(--white); }
.sponsor-badge.gold { background: var(--gold-dk); color: var(--white); }
.sponsor-badge.cultural { background: #8B4A5C; color: var(--white); }
.sponsor-badge.stall { background: var(--brown-mid); color: var(--gold); }
.title-card .sponsor-badge { background: var(--gold); color: var(--brown-deep); font-size: .85rem; padding: 6px 20px; }
.sponsor-icon {
  font-size: 2rem; color: var(--gold); margin-bottom: 16px;
}
.title-card .sponsor-icon { font-size: 2.8rem; }
.sponsor-card h3 { font-size: 1.3rem; color: var(--brown); margin-bottom: 20px; }
.title-card h3 { font-size: 1.6rem; }
.sponsor-card ul { text-align: left; display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; }
.sponsor-card ul li {
  font-size: .88rem; color: var(--text-mid);
  display: flex; align-items: flex-start; gap: 8px;
}
.sponsor-card ul li::before { content: '✓'; color: var(--gold); font-weight: 700; flex-shrink: 0; }

/* ---------- Downloads ---------- */
.section-downloads {
  padding: 100px 0;
  background: var(--white);
}
.downloads-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 48px;
}
.download-card {
  background: var(--cream); border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}
.download-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.download-img {
  position: relative; overflow: hidden; height: 240px;
}
.download-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .5s ease;
}
.download-card:hover .download-img img { transform: scale(1.06); }
.download-overlay {
  position: absolute; inset: 0;
  background: rgba(43,29,24,.6);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity .35s;
}
.download-overlay i { font-size: 2.4rem; color: var(--gold); }
.download-card:hover .download-overlay { opacity: 1; }
.download-info { padding: 28px 24px; }
.download-info h3 { font-size: 1.2rem; color: var(--brown); margin-bottom: 8px; }
.download-info p { color: var(--text-light); font-size: .9rem; margin-bottom: 16px; line-height: 1.6; }
.download-meta {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 20px;
}
.download-meta span {
  display: flex; align-items: center; gap: 6px;
  font-size: .8rem; color: var(--text-light);
}
.download-meta span i { color: #c0392b; }

/* ---------- Gallery ---------- */
.section-gallery {
  padding: 100px 0;
  background: var(--brown);
}
.section-gallery .section-eyebrow { color: var(--gold); }
.section-gallery .section-title { color: var(--white); }
.gallery-filters {
  display: flex; justify-content: center; gap: 10px; flex-wrap: wrap;
  margin-bottom: 40px; margin-top: 36px;
}
.gallery-filter {
  padding: 9px 22px; border-radius: 24px;
  background: transparent; color: rgba(255,255,255,.7);
  border: 1px solid rgba(255,255,255,.2);
  cursor: pointer; font-size: .88rem; font-family: 'Inter', sans-serif;
  transition: var(--transition);
}
.gallery-filter.active, .gallery-filter:hover {
  background: var(--gold); color: var(--brown-deep);
  border-color: var(--gold);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 220px;
  gap: 12px;
}
.gallery-item {
  position: relative; overflow: hidden; border-radius: 8px; cursor: pointer;
}
.gallery-item.tall { grid-row: span 2; }
.gallery-item.wide { grid-column: span 2; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.gallery-item:hover img { transform: scale(1.08); }
.gallery-overlay {
  position: absolute; inset: 0;
  background: rgba(43,29,24,.7);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity .35s;
  color: var(--gold); font-size: 1.6rem;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-item.hidden { display: none; }

/* Lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 9000;
  background: rgba(0,0,0,.92);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden; transition: opacity .3s;
}
.lightbox.active { opacity: 1; visibility: visible; }
.lightbox img { max-width: 90vw; max-height: 85vh; border-radius: 8px; box-shadow: 0 32px 80px rgba(0,0,0,.8); }
.lightbox-close {
  position: absolute; top: 24px; right: 32px;
  background: rgba(255,255,255,.1); border: none; color: var(--white);
  width: 44px; height: 44px; border-radius: 50%;
  font-size: 1.1rem; cursor: pointer; transition: var(--transition);
  display: flex; align-items: center; justify-content: center;
}
.lightbox-close:hover { background: var(--gold); color: var(--brown-deep); }

/* ---------- Testimonials ---------- */
.section-testimonials {
  padding: 100px 0;
  background: var(--cream);
}
.testi-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 48px;
}
.testi-card {
  background: var(--white); border-radius: var(--radius);
  padding: 40px 32px;
  box-shadow: var(--shadow);
  transition: var(--transition);
  position: relative;
}
.testi-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.testi-quote {
  font-size: 2rem; color: var(--gold);
  margin-bottom: 20px; opacity: .8;
}
.testi-card p { color: var(--text-mid); font-style: italic; line-height: 1.75; margin-bottom: 28px; }
.testi-author { display: flex; align-items: center; gap: 14px; }
.testi-author img {
  width: 52px; height: 52px; border-radius: 50%;
  object-fit: cover; border: 2px solid var(--gold);
}
.testi-author strong { display: block; color: var(--brown); font-size: .95rem; }
.testi-author span { font-size: .8rem; color: var(--text-light); }

/* ---------- Registration ---------- */
.section-register {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--brown-deep) 0%, var(--brown) 50%, var(--brown-mid) 100%);
}
.register-inner {
  display: grid; grid-template-columns: 1fr 1.3fr; gap: 80px; align-items: start;
}
.section-register .section-eyebrow { color: var(--gold); }
.section-register .section-title { color: var(--white); }
.section-register .section-body { color: rgba(255,255,255,.75); }
.register-highlights {
  display: flex; flex-direction: column; gap: 12px; margin-top: 32px;
}
.register-highlights div {
  display: flex; align-items: center; gap: 12px;
  color: rgba(255,255,255,.85); font-size: .95rem;
}
.register-highlights div i { color: var(--gold); }

.register-form {
  background: var(--white); border-radius: var(--radius);
  padding: 44px 40px;
  box-shadow: var(--shadow-lg);
}
.register-form h3 {
  font-size: 1.4rem; color: var(--brown);
  margin-bottom: 28px; padding-bottom: 16px;
  border-bottom: 2px solid var(--cream-dk);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-bottom: 18px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: .82rem; font-weight: 600; color: var(--brown); letter-spacing: .3px; }
.form-group input, .form-group select {
  padding: 12px 16px;
  border: 1.5px solid var(--cream-dk);
  border-radius: 8px;
  font-family: 'Inter', sans-serif; font-size: .92rem;
  color: var(--text-dark);
  background: var(--cream);
  transition: border-color .25s, box-shadow .25s;
  outline: none;
}
.form-group input:focus, .form-group select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(212,160,23,.15);
  background: var(--white);
}
.register-form .btn-gold { margin-top: 8px; font-size: 1rem; padding: 15px 32px; }
.form-note { font-size: .76rem; color: var(--text-light); text-align: center; margin-top: 14px; }
.form-success {
  margin-top: 16px; padding: 16px 20px;
  background: #e8f5e9; border: 1px solid #a5d6a7;
  border-radius: 8px; color: var(--success);
  display: flex; align-items: center; gap: 10px; font-size: .9rem;
}

/* ---------- Contact ---------- */
.section-contact {
  padding: 100px 0;
  background: var(--white);
}
.contact-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start;
}
.contact-items { display: flex; flex-direction: column; gap: 28px; margin-top: 36px; margin-bottom: 36px; }
.contact-item { display: flex; align-items: flex-start; gap: 18px; }
.contact-icon {
  width: 46px; height: 46px; flex-shrink: 0;
  background: var(--cream); color: var(--gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
}
.contact-item strong { display: block; font-size: .78rem; letter-spacing: 1.5px; text-transform: uppercase; color: var(--brown); margin-bottom: 4px; }
.contact-item p { margin: 0; color: var(--text-mid); font-size: .92rem; }
.contact-item a { color: var(--text-mid); transition: color .25s; }
.contact-item a:hover { color: var(--gold); }
.contact-social { display: flex; gap: 12px; }
.contact-social a {
  width: 40px; height: 40px;
  background: var(--cream); color: var(--brown);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
}
.contact-social a:hover { background: var(--gold); color: var(--brown-deep); }
.map-placeholder {
  background: var(--white); border-radius: 12px;
  height: 100%; min-height: 400px;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 16px;
  border: 1px solid #e0e0e0;
  box-shadow: var(--shadow-lg);
  padding: 40px;
}
.map-placeholder i {
  font-size: 3.5rem;
  color: var(--gold);
  margin-bottom: 10px;
}
.map-placeholder p { color: var(--text-mid); font-size: .95rem; }

/* ---------- Footer ---------- */
.footer { background: var(--brown-deep); color: rgba(255,255,255,.75); }
.footer-top { padding: 72px 0 48px; border-bottom: 1px solid rgba(255,255,255,.08); }
.footer-top-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 48px;
}
.footer-logo {
  display: flex; align-items: center; gap: 10px;
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem; font-weight: 700; color: var(--gold);
  margin-bottom: 16px;
}
.footer-brand p { font-size: .9rem; line-height: 1.7; max-width: 300px; margin-bottom: 24px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 36px; height: 36px;
  background: rgba(255,255,255,.08); color: rgba(255,255,255,.7);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: .8rem; transition: var(--transition);
}
.footer-social a:hover { background: var(--gold); color: var(--brown-deep); }
.footer-links-col h4 {
  font-family: 'Playfair Display', serif;
  color: var(--white); font-size: 1rem; margin-bottom: 20px;
}
.footer-links-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-links-col ul li a {
  font-size: .88rem; color: rgba(255,255,255,.65); transition: color .25s;
}
.footer-links-col ul li a:hover { color: var(--gold); }
.footer-newsletter h4 { font-family: 'Playfair Display', serif; color: var(--white); font-size: 1rem; margin-bottom: 16px; }
.footer-newsletter p { font-size: .88rem; margin-bottom: 16px; line-height: 1.6; }
.newsletter-form {
  display: flex; border-radius: 6px; overflow: hidden;
  border: 1px solid rgba(255,255,255,.15);
}
.newsletter-form input {
  flex: 1; padding: 11px 14px;
  background: rgba(255,255,255,.06); border: none;
  color: var(--white); font-family: 'Inter', sans-serif; font-size: .88rem;
  outline: none;
}
.newsletter-form input::placeholder { color: rgba(255,255,255,.35); }
.newsletter-form button {
  padding: 11px 16px;
  background: var(--gold); color: var(--brown-deep);
  border: none; cursor: pointer; font-size: .9rem;
  transition: background .25s;
}
.newsletter-form button:hover { background: var(--gold-lt); }
.footer-bottom {
  padding: 24px 0;
}
.footer-bottom-inner {
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px;
}
.footer-bottom p { font-size: .82rem; color: rgba(255,255,255,.45); }

/* ---------- Back to Top ---------- */
.back-to-top {
  position: fixed; bottom: 90px; right: 24px; z-index: 900;
  width: 44px; height: 44px;
  background: var(--brown); color: var(--gold);
  border: 2px solid var(--gold);
  border-radius: 50%; cursor: pointer; font-size: .9rem;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden;
  transform: translateY(16px);
  transition: var(--transition);
  box-shadow: var(--shadow);
}
.back-to-top.visible { opacity: 1; visibility: visible; transform: none; }
.back-to-top:hover { background: var(--gold); color: var(--brown-deep); }

/* ---------- WhatsApp ---------- */
.whatsapp-btn {
  position: fixed; bottom: 24px; right: 24px; z-index: 900;
  width: 52px; height: 52px;
  background: #25D366; color: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  box-shadow: 0 4px 20px rgba(37,211,102,.45);
  transition: var(--transition);
  animation: wa-pulse 2.5s infinite;
}
.whatsapp-btn:hover { transform: scale(1.12); box-shadow: 0 6px 28px rgba(37,211,102,.6); }
@keyframes wa-pulse {
  0%,100%{box-shadow:0 4px 20px rgba(37,211,102,.45)}
  50%{box-shadow:0 4px 32px rgba(37,211,102,.75)}
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .hero-content { grid-template-columns: 1fr 340px; gap: 30px; padding-bottom: 120px; }
  .hero-poster { max-width: 300px; }
  .hero-poster img { height: 420px; }
  .about-grid { grid-template-columns: 1fr; gap: 60px; }
  .about-image { display: none; }
  .vm-grid { grid-template-columns: 1fr; }
  .salkkar-grid { grid-template-columns: 1fr; gap: 48px; }
  .salkkar-poster { max-width: 360px; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .schedule-grid { grid-template-columns: 1fr; }
  .schedule-grid .schedule-card.featured { order: -1; }
  .sponsor-grid { grid-template-columns: 1fr 1fr; }
  .sponsor-grid .title-card { grid-column: 1 / -1; max-width: 100%; }
  .downloads-grid { grid-template-columns: 1fr; max-width: 480px; margin-left: auto; margin-right: auto; }
  .testi-grid { grid-template-columns: 1fr; max-width: 560px; margin-left: auto; margin-right: auto; }
  .register-inner { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-top-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .top-bar { display: none; }
  .nav-toggle { display: flex; }
  .nav-links {
    display: none; flex-direction: column;
    position: absolute; top: 70px; left: 0; right: 0;
    background: var(--brown-deep);
    padding: 16px 24px 24px;
    border-bottom: 2px solid rgba(212,160,23,.2);
    gap: 4px;
  }
  .nav-links.open { display: flex; }
  .nav-links li a { display: block; padding: 11px 16px; }
  .nav-links li a.btn-register { text-align: center; }
  #navbar { position: fixed; top: 0; width: 100%; }
  body { padding-top: 70px; }
  .hero { min-height: 100svh; }
  .hero-title { font-size: 2.8rem; }
  .countdown-inner { flex-direction: column; gap: 12px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item.wide, .gallery-item.tall { grid-column: auto; grid-row: auto; }
  .why-grid { grid-template-columns: 1fr; }
  .sponsor-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .register-form { padding: 32px 24px; }
  .footer-top-grid { grid-template-columns: 1fr; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .salkkar-highlights { grid-template-columns: 1fr; }
  .downloads-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 2.2rem; }
  .hero-buttons { flex-direction: column; }
  .hero-buttons .btn { text-align: center; justify-content: center; }
  .gallery-grid { grid-template-columns: 1fr; }
  .countdown-items { gap: 4px; }
  .countdown-item { min-width: 52px; }
  .countdown-item span { font-size: 1.5rem; }
}

/* Event Highlights Custom Layout */
.highlights-custom-grid {
    display: flex; gap: 80px; justify-content: center; max-width: 1000px; margin: 0 auto;
}
.highlights-col { display: flex; flex-direction: column; gap: 30px; flex: 1; }
.highlights-col-left { border-right: 1px solid var(--brown-lt); padding-right: 80px; }
.hl-item { display: flex; align-items: center; gap: 24px; }
.hl-icon { font-size: 2.8rem; color: var(--brown-deep); min-width: 60px; text-align: center; }
.hl-item p { font-size: 1.2rem; line-height: 1.4; color: var(--text-dark); font-style: italic; font-weight: 500; margin: 0; }

/* Expected Participation Custom Layout */
.participation-title {
    color: var(--brown-deep); text-transform: uppercase; font-weight: 800; font-size: 1.8rem; margin-bottom: 40px; text-align: center;
}
.participation-tags {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
}
.part-tag {
    background: var(--white);
    color: var(--brown-deep);
    font-weight: 700;
    font-size: 0.95rem;
    padding: 24px 20px;
    border-radius: 8px;
    text-transform: uppercase;
    text-align: center;
    line-height: 1.4;
    border: 1px solid #e0e0e0;
    box-shadow: none;
    transition: all 0.3s ease;
}
.part-tag:hover {
    background: var(--gold);
    color: var(--white);
    transform: translateY(-3px);
    border-color: var(--gold);
    box-shadow: var(--shadow);
}

/* Sponsor Benefits Custom Layout */
.sponsor-benefits-list {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}
.sponsor-benefit-item {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: flex-start;
    padding: 30px;
    background: var(--white);
    border-radius: 12px;
    box-shadow: var(--shadow);
    border-bottom: 4px solid var(--gold);
    transition: transform 0.3s ease;
}
.sponsor-benefit-item:hover {
    transform: translateY(-5px);
}
.sponsor-benefit-icon {
    font-size: 2rem; color: var(--gold); margin-bottom: 10px;
}
.sponsor-benefit-content h3 {
    color: var(--brown-deep); font-size: 1.4rem; font-weight: 800; text-transform: uppercase; margin-bottom: 16px;
}
.sponsor-benefit-content p { font-size: 1.05rem; color: var(--text-mid); margin-bottom: 0; }
.sponsor-benefit-content ul { list-style-type: disc; margin-left: 20px; }
.sponsor-benefit-content li { font-size: 1.05rem; color: var(--text-mid); line-height: 1.6; margin-bottom: 8px; }

@media (max-width: 768px) {
    .highlights-custom-grid { flex-direction: column; gap: 30px; }
    .highlights-col-left { border-right: none; padding-right: 0; border-bottom: 1px solid var(--brown-lt); padding-bottom: 30px; }
    .sponsor-benefit-item { flex-direction: column; gap: 20px; align-items: center; text-align: center; }
    .sponsor-benefit-content ul { text-align: left; margin: 0 auto; display: inline-block; }
}
.section-overview { padding: 100px 0; background: var(--white); }
.overview-layout { display: grid; grid-template-columns: 1fr 1.5fr; gap: 60px; align-items: center; }
.overview-heading h2 { font-size: 3.5rem; line-height: 1.1; margin-bottom: 20px; }
.overview-meta p { font-size: 1.2rem; color: var(--text-mid); margin-bottom: 10px; font-weight: 600; }
.overview-meta i { color: var(--gold); width: 24px; }
.overview-text .lead-text { font-size: 1.4rem; color: var(--brown-deep); font-weight: 700; margin-bottom: 20px; }
.overview-text p { font-size: 1.15rem; line-height: 1.9; color: var(--text-mid); }

.highlights-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 30px; }
.highlight-card { background: var(--white); padding: 40px 20px; border-radius: 12px; text-align: center; box-shadow: var(--shadow); border-bottom: 3px solid transparent; transition: all 0.3s ease; }
.highlight-card:hover { transform: translateY(-5px); border-bottom: 3px solid var(--gold); box-shadow: var(--shadow-lg); }
.highlight-card i { font-size: 1.8rem; color: var(--brown-deep); margin-bottom: 20px; transition: color 0.3s ease; }
.highlight-card:hover i { color: var(--gold); }
.highlight-card p { font-size: 1.1rem; color: var(--text-dark); font-weight: 600; margin: 0; line-height: 1.5; }

@media (max-width: 768px) {
    .overview-layout { grid-template-columns: 1fr; gap: 30px; }
}


.section-about, .section-vm, .section-overview, .section-why, .section-participation, .section-sponsors, .section-downloads, .section-gallery, .section-testimonials, .section-register, .section-contact {
    padding: 100px 0 !important;
}


body {
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%231976D2' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E") !important;
    background-attachment: fixed !important;
}

.section-about, .section-overview, .section-why, .section-sponsors, .section-contact {
    background-color: rgba(255, 255, 255, 0.8) !important;
}
.section-vm, .section-schedule, .section-participation, .section-downloads, .section-testimonials {
    background-color: rgba(245, 245, 245, 0.8) !important;
}

/* Add elegant decorative accents to titles */
.section-title::after, .participation-title::after {
    content: "";
    display: block;
    width: 60px;
    height: 3px;
    background: var(--gold-lt);
    margin: 15px auto 0;
    border-radius: 2px;
}
.section-title.text-left::after { margin: 15px 0 0; }


