    /* =====================================================
   ROOT
===================================================== */

:root{

  --bg:#F6F1E8;
  --bg-soft:#EFE4D1;
  --card:#FFFDF9;

  --saffron:#DC2F02;
  --gold:#C59B45;
  --earth:#8B7355;

  --text:#1D1A17;
  --muted:#6A645D;

  --line:rgba(0,0,0,.08);

  --shadow:
  0 25px 80px rgba(0,0,0,.08);

  --ease:
  cubic-bezier(.22,1,.36,1);

}

h2 {
    
}

*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
}

body{

  background:var(--bg);
  color:var(--text);

  font-family:'Manrope',sans-serif;
  font-size: 1.1rem;
  font-weight: 500;
  overflow-x:hidden;
  line-height:1.8;

  -webkit-font-smoothing:antialiased;
}

img{
  width:100%;
  display:block;
  object-fit:cover;
}

a{
  text-decoration:none;
}

section{
  position:relative;
  padding:120px 7%;
}

.container{
  max-width:1450px;
  margin:auto;
}

/* =====================================================
   GRAIN
===================================================== */

.grain{

  position:fixed;
  inset:0;

  pointer-events:none;

  z-index:9999;

  opacity:.045;

  background-image:
  url("https://www.transparenttextures.com/patterns/paper-fibers.png");

}

/* =====================================================
   FLOATING DIYA PARTICLES
===================================================== */

.particles{

  position:fixed;
  inset:0;

  overflow:hidden;

  pointer-events:none;

  z-index:3;
}

.particles span{

  position:absolute;

  bottom:-120px;

  width:6px;
  height:6px;

  border-radius:50%;

  background:
  radial-gradient(circle,
  #ffd27d,
  rgba(255,210,125,0));

  filter:blur(.5px);

  animation:
  floatUp linear infinite;
}

.particles span:nth-child(1){
  left:8%;
  animation-duration:18s;
}

.particles span:nth-child(2){
  left:24%;
  animation-duration:22s;
  animation-delay:2s;
}

.particles span:nth-child(3){
  left:40%;
  animation-duration:15s;
  animation-delay:3s;
}

.particles span:nth-child(4){
  left:58%;
  animation-duration:25s;
  animation-delay:1s;
}

.particles span:nth-child(5){
  left:76%;
  animation-duration:17s;
  animation-delay:4s;
}

.particles span:nth-child(6){
  left:92%;
  animation-duration:21s;
  animation-delay:2s;
}

@keyframes floatUp{

  from{
    transform:
    translateY(0)
    scale(.5);

    opacity:0;
  }

  15%{
    opacity:1;
  }

  to{
    transform:
    translateY(-120vh)
    scale(1.8);

    opacity:0;
  }

}

/* =====================================================
   NAVBAR
===================================================== */

nav{

  position:fixed;
  width:100%;

  top:0;
  z-index:1000;

  padding:24px 7%;

  transition:.45s var(--ease);

}

nav.scrolled{

  background:
  rgba(246,241,232,.85);

  backdrop-filter:blur(16px);

  border-bottom:
  1px solid rgba(0,0,0,.05);

}

.nav-inner{

  display:flex;
  justify-content:space-between;
  align-items:center;

}

.logo{

  color:white;

  font-family:'Cormorant Garamond',serif;

  font-size:2.2rem;
  font-weight:700;
}

nav.scrolled .logo{
  color:var(--text);
}

.nav-links{

  display:flex;
  gap:42px;
  align-items:center;

}

.nav-links a{

  color:white;
  position:relative;

  transition:.3s;
}

nav.scrolled .nav-links a{
  color:var(--text);
}

.nav-links a::after{

  content:"";

  position:absolute;

  left:0;
  bottom:-8px;

  width:0%;
  height:1px;

  background:var(--gold);

  transition:.4s ease;
}

.nav-links a:hover::after{
  width:100%;
}

.lang{

  color:white;

  border:
  1px solid rgba(255,255,255,.15);

  padding:10px 16px;

  border-radius:999px;

  cursor:pointer;

  transition:.4s;
}

nav.scrolled .lang{

  color:var(--text);

  border-color:
  rgba(0,0,0,.1);

}

/* =====================================================
   HERO
===================================================== */

.hero{

  min-height:100vh;

  display:flex;
  align-items:center;

  overflow:hidden;

  background:
  linear-gradient(
  to bottom,
  rgba(0,0,0,.45),
  rgba(0,0,0,.72)
  ),
  url('ghats-varanasi.jpg')
  center/cover fixed;

}

.hero::before{

  content:"";

  position:absolute;
  inset:0;

  background:
  radial-gradient(circle at top right,
  rgba(255,183,77,.16),
  transparent 35%);

  animation:
  sacredGlow 8s ease-in-out infinite;

}

@keyframes sacredGlow{

  0%{
    transform:scale(1);
    opacity:.7;
  }

  50%{
    transform:scale(1.08);
    opacity:1;
  }

  100%{
    transform:scale(1);
    opacity:.7;
  }

}

.hero-grid{

  display:grid;
  grid-template-columns:1.2fr .8fr;

  gap:80px;
  align-items:center;

  width:100%;

  position:relative;
  z-index:2;

}

.eyebrow{

  color:#f5d7af;

  letter-spacing:5px;

  text-transform:uppercase;

  margin-bottom:24px;

  font-size:.82rem;
}

.hero h1{

  color:white;

  font-family:'Tiro Devanagari Hindi',serif;

  font-size:clamp(4rem,9vw,8rem);

  line-height:1.2;

  letter-spacing:-.03em;

  margin-bottom:28px;

  animation:
  titleReveal 1.8s var(--ease);

}

@keyframes titleReveal{

  from{

    opacity:0;

    transform:
    translateY(80px)
    scale(.95);

    filter:blur(10px);
  }

  to{

    opacity:1;

    transform:none;

    filter:blur(0);
  }

}

.hero p{

  color:rgba(255,255,255,.8);

  max-width:680px;

  margin-bottom:40px;

  font-size:1.1rem;

  animation:
  fadeUp 1.4s ease forwards;

  animation-delay:.4s;

  opacity:0;

}

@keyframes fadeUp{

  to{
    opacity:1;
    transform:none;
  }

}

.hero-actions{

  display:flex;
  gap:18px;
  flex-wrap:wrap;

  opacity:0;

  animation:
  fadeUp 1.5s ease forwards;

  animation-delay:.7s;
}

.btn{

  display:inline-flex;
  align-items:center;
  justify-content:center;

  padding:16px 30px;

  border-radius:999px;

  font-weight:600;

  transition:.45s var(--ease);
}

.btn-primary{

  background:var(--saffron);

  color:white;

  position:relative;

  overflow:hidden;

  box-shadow:
  0 15px 40px rgba(220,47,2,.35);

}

.btn-primary::before{

  content:"";

  position:absolute;
  inset:0;

  background:
  linear-gradient(
  120deg,
  transparent,
  rgba(255,255,255,.35),
  transparent);

  transform:translateX(-120%);
}

.btn-primary:hover::before{

  animation:
  shine 1s ease;
}

@keyframes shine{

  to{
    transform:translateX(120%);
  }

}

.btn-primary:hover{
  transform:translateY(-4px);
}

.btn-outline{

  color:white;

  border:
  1px solid rgba(255,255,255,.2);

  backdrop-filter:blur(10px);
}

.btn-outline:hover{

  background:white;
  color:black;

}

.hero-card{

  background:
  rgba(255,255,255,.08);

  border:
  1px solid rgba(255,255,255,.08);

  border-radius:32px;

  backdrop-filter:blur(14px);

  padding:52px;

  animation:
  cardReveal 1.8s var(--ease);

}

@keyframes cardReveal{

  from{

    opacity:0;

    transform:
    translateY(90px)
    rotateY(8deg);
  }

  to{

    opacity:1;

    transform:none;
  }

}

.hero-card h3{

  color:white;

  font-family:'Cormorant Garamond',serif;

  font-size:2.5rem;

  margin-bottom:18px;
}

.hero-card p{

  color:rgba(255,255,255,.72);

  margin:0;
}

/* =====================================================
   SECTION INTRO
===================================================== */

.section-intro{

  text-align:center;

  margin-bottom:90px;
}

.section-intro span{

  display:inline-block;

  color:var(--saffron);

  letter-spacing:4px;

  text-transform:uppercase;

  margin-bottom:20px;

  font-size:.8rem;
}

.section-intro h2{

  font-family:'Cormorant Garamond',serif;

  font-size:clamp(3rem,5vw,5.5rem);

  line-height:.95;

  margin-bottom:22px;

  position:relative;
}

.section-intro h2::after{

  content:"";

  position:absolute;

  left:50%;
  bottom:-18px;

  width:90px;
  height:1px;

  background:var(--gold);

  transform:
  translateX(-50%)
  scaleX(0);

  animation:
  lineReveal 1.5s ease forwards;

  animation-delay:.4s;
}

@keyframes lineReveal{

  to{
    transform:
    translateX(-50%)
    scaleX(1);
  }

}

.section-intro p{

  max-width:760px;

  margin:auto;

  color:var(--muted);
}

/* =====================================================
   HISTORY
===================================================== */

.history{
  background:var(--bg-soft);
}

.timeline{

  max-width:1200px;
  margin:auto;

  position:relative;
}

.timeline::before{

  content:"";

  position:absolute;

  left:50%;

  width:2px;
  height:100%;

  background:
  linear-gradient(
  to bottom,
  var(--gold),
  transparent);

  animation:
  timelineGlow 4s ease infinite;
}

@keyframes timelineGlow{

  0%{
    opacity:.4;
  }

  50%{
    opacity:1;
  }

  100%{
    opacity:.4;
  }

}

.timeline-item{

  width:50%;

  padding:60px;

  position:relative;
}

.timeline-item:nth-child(odd){

  left:0;

  text-align:right;
}

.timeline-item:nth-child(even){
  left:50%;
}

.timeline-dot{

  width:18px;
  height:18px;

  border-radius:50%;

  background:var(--gold);

  position:absolute;

  top:78px;
  right:-10px;

  z-index:2;

  animation:
  pulseDot 3s ease infinite;

}

.timeline-item:nth-child(even) .timeline-dot{
  left:-10px;
}

@keyframes pulseDot{

  0%{
    box-shadow:
    0 0 0 0 rgba(197,155,69,.35);
  }

  70%{
    box-shadow:
    0 0 0 18px rgba(197,155,69,0);
  }

  100%{
    box-shadow:
    0 0 0 0 rgba(197,155,69,0);
  }

}

.timeline-card{

  background:var(--card);

  border-radius:30px;

  padding:42px;

  box-shadow:var(--shadow);

  border:
  1px solid rgba(0,0,0,.04);

  transition:
  transform .6s var(--ease),
  box-shadow .6s ease;

}

.timeline-card:hover{

  transform:
  translateY(-10px);

  box-shadow:
  0 35px 100px rgba(0,0,0,.12);
}

.timeline-year{

  color:var(--saffron);

  font-weight:700;

  letter-spacing:2px;

  margin-bottom:14px;
}

.timeline-card h3{

  font-family:'Cormorant Garamond',serif;

  font-size:2.3rem;

  margin-bottom:14px;
}

.timeline-card p{
  color:var(--muted);
}

/* =====================================================
   ABOUT
===================================================== */

.about-grid{

  display:grid;
  grid-template-columns:1fr 440px;

  gap:90px;
}

.about h2{

  font-family:'Cormorant Garamond',serif;

  font-size:5rem;

  line-height:.95;

  margin-bottom:28px;
}

.about p{

  color:var(--muted);

  margin-bottom:24px;
}

.quote{

  margin-top:40px;

  border-left:
  3px solid var(--gold);

  padding-left:30px;

  font-family:'Tiro Devanagari Hindi',serif;

  color:var(--earth);

  font-size:1.5rem;
}

.darshan-card{

  background:var(--card);

  border-radius:32px;

  padding:50px;

  box-shadow:var(--shadow);

  position:sticky;
  top:120px;
}

.darshan-card h3{

  font-family:'Cormorant Garamond',serif;

  font-size:2.5rem;

  margin-bottom:30px;
}

.timing{

  display:flex;
  justify-content:space-between;

  padding:20px 0;

  border-bottom:
  1px solid rgba(0,0,0,.06);
}

.timing:last-child{
  border:none;
}

/* =====================================================
   GALLERY CATEGORY
===================================================== */

.gallery-category{
  margin-bottom:90px;
}

.gallery-title{

  font-family:'Tiro Devanagari Hindi',serif;

  font-size:2.3rem;

  margin-bottom:35px;

  color:var(--saffron);

}

.gallery-message{

  margin-top:40px;

  text-align:center;

}

/* =====================================================
   PREMIUM GALLERY
===================================================== */

.gallery-category{
  margin-bottom:100px;
}

.gallery-header{
  margin-bottom:35px;
}

.gallery-header h3{

  font-family:'Tiro Devanagari Hindi',serif;

  font-size:2.4rem;

  color:var(--saffron);

  margin-bottom:12px;

}

.gallery-header p{

  color:var(--muted);

  max-width:700px;

}

/* CAROUSEL */

.gallery-carousel{

  position:relative;

  overflow:hidden;

}

.gallery-track{

  display:flex;

  gap:24px;

  overflow-x:auto;

  scroll-behavior:smooth;

  scrollbar-width:none;

  padding:10px 6px;

}

.gallery-track::-webkit-scrollbar{
  display:none;
}

.gallery-slide{

  min-width:420px;

  height:520px;

  position:relative;

  overflow:hidden;

  border-radius:30px;

  flex-shrink:0;

  box-shadow:
  0 25px 80px rgba(0,0,0,.12);

  transition:
  transform .6s var(--ease);

}

.gallery-slide:hover{
  transform:translateY(-10px);
}

.gallery-slide img{

  width:100%;
  height:100%;

  object-fit:cover;

  transition:
  transform 1.2s var(--ease);

}

.gallery-slide:hover img{
  transform:scale(1.08);
}

.gallery-slide::after{

  content:"";

  position:absolute;
  inset:0;

  background:
  linear-gradient(
  to top,
  rgba(0,0,0,.82),
  transparent 55%);

}

.gallery-slide .caption{

  position:absolute;

  left:28px;
  bottom:24px;

  z-index:2;

  color:white;

  font-size:1.05rem;

  font-weight:600;

}

/* NAV BUTTONS */

.gallery-nav{

  position:absolute;

  top:50%;

  transform:translateY(-50%);

  width:58px;
  height:58px;

  border:none;

  border-radius:50%;

  background:
  rgba(255,255,255,.92);

  backdrop-filter:blur(10px);

  box-shadow:
  0 15px 40px rgba(0,0,0,.14);

  font-size:1.4rem;

  cursor:pointer;

  z-index:10;

  transition:.4s ease;

}

.gallery-nav:hover{

  transform:
  translateY(-50%)
  scale(1.08);

}

.gallery-nav.prev{
  left:18px;
}

.gallery-nav.next{
  right:18px;
}

/* MESSAGE */

.gallery-message{

  text-align:center;

  margin-top:30px;

}

/* MOBILE */

@media(max-width:700px){

  .gallery-header h3{
    font-size:1.8rem;
  }

  .gallery-slide{

    min-width:88%;

    height:420px;

  }

  .gallery-nav{

    width:48px;
    height:48px;

    font-size:1.1rem;

  }

}

/* =====================================================
   GALLERY
===================================================== */

.gallery{
  background:var(--bg-soft);
}

.gallery-grid{

  display:grid;

  grid-template-columns:
  repeat(4,1fr);

  grid-auto-rows:260px;

  gap:18px;
}

.gallery-item{

  border-radius:28px;

  overflow:hidden;

  position:relative;

  cursor:pointer;

  transition:
  transform .7s var(--ease);
}

.gallery-item:hover{
  transform:translateY(-10px);
}

.gallery-item img{

  height:100%;

  transition:
  transform 1.5s var(--ease),
  filter 1.5s ease;
}

.gallery-item:hover img{

  transform:scale(1.1);

  filter:
  contrast(1.05)
  saturate(1.08);
}

.gallery-item::after{

  content:"";

  position:absolute;
  inset:0;

  background:
  linear-gradient(
  to top,
  rgba(0,0,0,.65),
  transparent 55%);

  transition:.7s ease;
}

.gallery-item:hover::after{

  background:
  linear-gradient(
  to top,
  rgba(0,0,0,.82),
  rgba(0,0,0,.08));
}

.caption{

  position:absolute;

  left:24px;
  bottom:22px;

  color:white;

  z-index:2;

  font-weight:600;
}

.wide{
  grid-column:span 2;
}

.tall{
  grid-row:span 2;
}

/* =====================================================
   EVENTS
===================================================== */

.events-grid{

  display:grid;

  grid-template-columns:
  repeat(3,1fr);

  gap:28px;
}

.event-card{

  background:var(--card);

  border-radius:30px;

  overflow:hidden;

  box-shadow:var(--shadow);

  transition:
  transform .6s var(--ease),
  box-shadow .6s ease;
}

.event-card:hover{

  transform:
  translateY(-12px);

  box-shadow:
  0 35px 100px rgba(0,0,0,.12);
}

.event-card img{
  height:340px;
}

.event-body{
  padding:34px;
}

.event-date{

  color:var(--saffron);

  font-weight:700;

  margin-bottom:12px;
}

.event-body h3{

  font-family:'Cormorant Garamond',serif;

  font-size:2.2rem;

  margin-bottom:14px;
}

.event-body p{
  color:var(--muted);
}

/* =====================================================
TEMPLE SECTION
===================================================== */

.temple-section {

    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;

    display: flex;
    align-items: center;
    justify-content: center;

}

/* =====================================================
BACKGROUND
===================================================== */

.temple-bg {

    position: absolute;
    inset: 0;
    z-index: 1;

}

.temple-bg img {

    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.05);

}

.temple-overlay {

    position: absolute;
    inset: 0;
    z-index: 2;

    background:
        linear-gradient(
            to bottom,
            rgba(0,0,0,.8),
            rgba(0,0,0,.35),
            rgba(0,0,0,.85)
        );

}

/* =====================================================
DIVINE LIGHT
===================================================== */

.divine-light {

    position: absolute;
    width: 850px;
    height: 850px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(255,190,70,.7) 0%,
            rgba(255,145,0,.2) 40%,
            transparent 70%
        );

    z-index: 3;

    animation: divineGlow 4s infinite alternate;

}

@keyframes divineGlow {

    from {

        transform: scale(.9);
        opacity: .6;

    }

    to {

        transform: scale(1.1);
        opacity: 1;

    }

}

/* =====================================================
CONTENT
===================================================== */

.temple-content {

    position: relative;
    z-index: 4;
    text-align: center;
    padding: 20px;

}

.temple-content span {

    display: inline-block;

    margin-bottom: 20px;

    color: #f3c57a;
    letter-spacing: 4px;
    text-transform: uppercase;
    font-size: 14px;

}

.temple-content h1 {

    font-size: clamp(46px, 8vw, 110px);
    line-height: 1.1;

    margin-bottom: 25px;

    color: #fff3d4;

    font-family: 'Cormorant Garamond', serif;

    text-shadow:
        0 0 40px rgba(255,170,0,.45);

}

.temple-content p {

    max-width: 700px;
    margin: auto;

    line-height: 1.9;
    color: #f0dfc0;

    font-size: 18px;

    font-family: 'Tiro Devanagari Hindi', serif;

}

/* =====================================================
TEMPLE DOORS
===================================================== */

.door-wrapper {

    position: absolute;
    inset: 0;
    display: flex;
    z-index: 10;
    perspective: 2400px;

}

.door {

    width: 50%;
    height: 100%;

    position: relative;

    transition:
        transform 2.5s cubic-bezier(.77,0,.175,1);

    background:
        linear-gradient(
            to bottom,
            #6a3200,
            #341400
        );

    border: 3px solid rgba(255,190,90,.4);

    overflow: hidden;

    box-shadow:
        inset 0 0 60px rgba(0,0,0,.45),
        inset 0 0 15px rgba(255,180,80,.15);

}

.left-door {

    transform-origin: left center;

}

.right-door {

    transform-origin: right center;

}

/* =====================================================
DOOR DESIGN
===================================================== */

.door::before {

    content: '';
    position: absolute;
    inset: 0;

    background:
        repeating-linear-gradient(
            to right,
            rgba(255,255,255,.03) 0px,
            rgba(255,255,255,.03) 2px,
            transparent 2px,
            transparent 55px
        );

}

.door-design {

    position: absolute;
    inset: 40px;

    border: 2px solid rgba(255,210,120,.2);

    display: flex;
    align-items: center;
    justify-content: center;

}

.door-symbol {

    font-size: 90px;
    color: #f4c26f;

    text-shadow:
        0 0 30px rgba(255,180,0,.45);

    font-family: 'Cormorant Garamond', serif;

}

/* =====================================================
OPEN EFFECT
===================================================== */

.temple-section.open .left-door {

    transform: rotateY(-115deg);

}

.temple-section.open .right-door {

    transform: rotateY(115deg);

}

/* =====================================================
BUTTON
===================================================== */

.open-btn {

    position: absolute;
    bottom: 60px;
    left: 50%;

    transform: translateX(-50%);

    z-index: 50;

    border: none;
    cursor: pointer;

    padding: 18px 38px;

    border-radius: 100px;

    background:
        linear-gradient(
            135deg,
            #ffcf7b,
            #ff9800
        );

    color: #2f1400;

    font-size: 16px;
    font-weight: 700;

    transition: .4s;

    box-shadow:
        0 15px 40px rgba(255,145,0,.3);

}

.open-btn:hover {

    transform:
        translateX(-50%)
        translateY(-3px);

}

/* =====================================================
   DONATION
===================================================== */

.donation{

  text-align:center;

  overflow:hidden;

  color:white;

  background:
  linear-gradient(
  rgba(0,0,0,.72),
  rgba(0,0,0,.74)
  ),
  url('https://gospiritualindia.in/wp-content/uploads/2024/03/hindu-and-spirituality-780x470.jpg?q=80&w=2200&auto=format&fit=crop')
  center/cover fixed;
}

.donation::before{

  content:"";

  position:absolute;

  width:800px;
  height:800px;

  border-radius:50%;

  background:
  radial-gradient(circle,
  rgba(255,183,77,.14),
  transparent 70%);

  top:-250px;
  right:-200px;

  animation:
  donationGlow 10s ease infinite;
}

@keyframes donationGlow{

  0%{
    transform:scale(1);
  }

  50%{
    transform:scale(1.12);
  }

  100%{
    transform:scale(1);
  }

}

.donation h2{

  font-family:'Cormorant Garamond',serif;

  font-size:clamp(3rem,7vw,4.5rem);

  margin-bottom:24px;
}

.donation p{

  max-width:820px;

  margin:auto;

  color:rgba(255,255,255,.78);

  margin-bottom:40px;
}

/* =====================================================
   CONTACT
===================================================== */

.contact-grid{

  display:grid;

  grid-template-columns:
  1fr 1fr;

  gap:60px;
}

.contact h2{

  font-family:'Cormorant Garamond',serif;

  font-size:5rem;

  line-height:.95;

  margin-bottom:28px;
}

.contact-block{
  margin-bottom:30px;
}

.contact-block h4{

  color:var(--saffron);

  margin-bottom:10px;
}

.contact-block p{
  color:var(--muted);
}

/* =====================================================
   FOOTER
===================================================== */

footer{

  background:#171411;

  color:white;

  text-align:center;

  overflow:hidden;

  padding:90px 7%;

  position:relative;
}

footer::before{

  content:"";

  position:absolute;

  width:500px;
  height:500px;

  border-radius:50%;

  background:
  radial-gradient(circle,
  rgba(255,183,77,.12),
  transparent 70%);

  left:50%;
  bottom:-250px;

  transform:translateX(-50%);

  animation:
  footerGlow 8s ease infinite;
}

@keyframes footerGlow{

  0%{
    opacity:.4;
  }

  50%{
    opacity:1;
  }

  100%{
    opacity:.4;
  }

}

footer h3{

  font-family:'Tiro Devanagari Hindi',serif;

  font-size:3rem;

  margin-bottom:16px;
}

footer p{

  color:rgba(255,255,255,.58);
}

/* =====================================================
   REVEAL
===================================================== */

.reveal{

  opacity:0;

  transform:
  translateY(80px);

  transition:
  1.2s var(--ease);
}

.reveal.active{

  opacity:1;

  transform:none;
}

/* =====================================================
   About HERO
===================================================== */

.about-hero{

  min-height:100vh;

  display:flex;
  align-items:center;
  justify-content:center;

  overflow:hidden;

  background:
  linear-gradient(
  rgba(0,0,0,.58),
  rgba(0,0,0,.75)
  ),
  url('https://images.pexels.com/photos/7919685/pexels-photo-7919685.jpeg?q=80&w=2000&auto=format&fit=crop')
  center/cover fixed;

}

.about-hero::before{

  content:"";

  position:absolute;
  inset:0;

  background:
  radial-gradient(circle at top right,
  rgba(255,183,77,.18),
  transparent 40%);
}

.hero-content{

  position:relative;
  z-index:2;

  text-align:center;

  max-width:1000px;
}

.hero-content h1{

  color:white;

  font-family:'Tiro Devanagari Hindi',serif;

  font-size:clamp(4rem,9vw,8rem);

  line-height:1;

  margin-bottom:30px;
}

.hero-content p{

  color:rgba(255,255,255,.82);

  font-size:1.15rem;
}

/* =====================================================
   ABOUT INTRO
===================================================== */

.about-intro{
  background:var(--bg-soft);
}

.about-card{

  max-width:1000px;

  margin:auto;

  background:var(--card);

  padding:80px;

  border-radius:40px;

  box-shadow:var(--shadow);

  text-align:center;
}

.about-card p{

  color:var(--muted);

  font-size:1.15rem;

  line-height:2.1;

  margin-bottom:28px;
}

/* =====================================================
   STORY
===================================================== */

.story-grid{

  display:grid;

  grid-template-columns:
  1fr 420px;

  gap:60px;
}

.story-main{

  display:flex;
  flex-direction:column;
  gap:40px;
}

.story-block{

  background:var(--card);

  padding:55px;

  border-radius:34px;

  box-shadow:var(--shadow);
}

.story-block h3{

  font-family:'Cormorant Garamond',serif;

  font-size:3rem;

  margin-bottom:24px;
}

.story-block p{

  color:var(--muted);

  margin-bottom:24px;

  line-height:2;
}

/* =====================================================
   SIDEBAR
===================================================== */

.sidebar{

  position:sticky;
  top:120px;

  height:fit-content;

  display:flex;
  flex-direction:column;
  gap:30px;
}

.timeline-card,
.founder-card{

  background:var(--card);

  border-radius:32px;

  padding:40px;

  box-shadow:var(--shadow);
}

.timeline-card h3,
.founder-card h3{

  font-family:'Cormorant Garamond',serif;

  font-size:2.3rem;

  margin-bottom:26px;
}

.abt-timeline-item{

  padding:20px 0;

  border-bottom:
  1px solid rgba(0,0,0,.06);
}

.abt-timeline-item:last-child{
  border:none;
}

.abt-timeline-item span{

  color:var(--saffron);

  font-weight:700;

  display:block;

  margin-bottom:8px;
}

.abt-timeline-item p{
  color:var(--muted);
}

.founder-label{

  color:var(--saffron);

  letter-spacing:3px;

  text-transform:uppercase;

  margin-bottom:16px;
}

.founder-card p{

  color:var(--muted);

  margin-bottom:10px;
}

.founder-card span{
  color:var(--earth);
}

/* =========================
   CONTACT HERO
========================= */

.contact-hero{

  min-height:100vh;

  display:flex;
  align-items:center;
  justify-content:center;

  background:
  linear-gradient(
  rgba(0,0,0,.58),
  rgba(0,0,0,.72)
  ),
  url('https://images.pexels.com/photos/7919685/pexels-photo-7919685.jpeg?q=80&w=1800&auto=format&fit=crop')
  center/cover fixed;

  overflow:hidden;
}

.contact-hero::before{

  content:"";

  position:absolute;
  inset:0;

  background:
  radial-gradient(circle at top right,
  rgba(255,183,77,.18),
  transparent 40%);

}

.contact-hero span{

  color:#f7d7a6;

  letter-spacing:4px;

  text-transform:uppercase;

  font-size:.85rem;

  display:inline-block;

  margin-bottom:25px;
}

.contact-hero h1{

  font-family:'Tiro Devanagari Hindi',serif;

  font-size:clamp(4rem,9vw,7rem);

  line-height:1;

  color:white;

  margin-bottom:30px;
}

.contact-hero p{

  color:rgba(255,255,255,.82);

  font-size:1.1rem;

  max-width:700px;
}

/* =========================
   CONTACT SECTION
========================= */

.section-title{

  margin-bottom:40px;
}

h2.section-title, .section-title h2{

  font-family:'Cormorant Garamond',serif;

  font-size: 4.5rem ;

  line-height:1;

  margin-bottom:20px;
}

.section-title p{

  color:var(--muted);

  max-width:700px;
}

.info-card{

  background:var(--card);

  border-radius:32px;

  padding:45px;

  margin-bottom:30px;

  box-shadow:var(--shadow);

  border:
  1px solid rgba(0,0,0,.04);

  transition:
  transform .5s var(--ease);
}

.info-card:hover{
  transform:translateY(-6px);
}

.info-card h3{

  font-family:'Cormorant Garamond',serif;

  font-size:2rem;

  margin-bottom:20px;

  color:var(--saffron);
}

.info-card p{

  color:var(--muted);

  margin-bottom:10px;
}

.highlight{

  color:var(--text);

  font-weight:600;
}

/* =========================
   FORM
========================= */

.form-card{

  background:var(--card);

  border-radius:32px;

  padding:50px;

  box-shadow:var(--shadow);

  position:sticky;
  top:120px;
}

.form-card h3{

  font-family:'Cormorant Garamond',serif;

  font-size:2.5rem;

  margin-bottom:30px;
}

.input-group{
  margin-bottom:28px;
}

.input-group input,
.input-group textarea{

  width:100%;

  border:none;

  background:transparent;

  border-bottom:
  1px solid rgba(0,0,0,.1);

  padding:18px 0;

  outline:none;

  font-family:'Manrope',sans-serif;

  transition:.4s;
}

.input-group input:focus,
.input-group textarea:focus{

  border-color:var(--saffron);

  transform:translateX(4px);
}

textarea{

  resize:none;
  min-height:130px;
}

/* =========================
   MAP
========================= */

.map-box{

  border-radius:30px;

  overflow:hidden;

  box-shadow:var(--shadow);
}

.map-placeholder{

  height:420px;

  display:flex;
  align-items:center;
  justify-content:center;

  background:
  linear-gradient(
  135deg,
  #f2e6d4,
  #fff8ef);

  color:var(--earth);

  font-size:1.2rem;

  text-align:center;

  padding:30px;
}

/* =========================================
   DONATION HERO
========================================= */

.donation-hero{

  min-height:100vh;

  display:flex;
  align-items:center;

  overflow:hidden;

  background:
  linear-gradient(
  rgba(0,0,0,.70),
  rgba(0,0,0,.78)
  ),
  url('https://images.pexels.com/photos/7919685/pexels-photo-7919685.jpeg?q=80&w=2000&auto=format&fit=crop')
  center/cover fixed;

}

.donation-hero::before{

  content:"";

  position:absolute;
  inset:0;

  background:
  radial-gradient(circle at top right,
  rgba(255,183,77,.16),
  transparent 35%);

  animation:
  glow 8s ease-in-out infinite;

}

@keyframes glow{

  0%{
    transform:scale(1);
    opacity:.7;
  }

  50%{
    transform:scale(1.08);
    opacity:1;
  }

  100%{
    transform:scale(1);
    opacity:.7;
  }

}

.hero-content{

  position:relative;
  z-index:2;

  max-width:950px;
}

.donation-hero h1{

  font-family:'Tiro Devanagari Hindi',serif;

  color:white;

  font-size:clamp(3.5rem,8vw,7rem);

  line-height:1.05;

  margin-bottom:30px;

}

.donation-hero p{

  color:rgba(255,255,255,.82);

  font-size:1.15rem;

  max-width:850px;

  margin-bottom:24px;

}

/* =========================================
   DONATION CONTENT
========================================= */

.donation-section{
  background:var(--bg-soft);
}

.section-grid{

  display:grid;

  grid-template-columns:1.1fr .9fr;

  gap:70px;

  align-items:start;

}

.content-box{

  background:var(--card);

  border-radius:36px;

  padding:55px;

  box-shadow:var(--shadow);

}

.content-box p{

  color:var(--muted);

  margin-bottom:24px;

  font-size:1.08rem;

}

.highlights{

  font-family:'Tiro Devanagari Hindi',serif;

  color:var(--earth);

  font-size:1.6rem;

  line-height:1.8;

  margin:40px 0;

  padding-left:28px;

  border-left:
  3px solid var(--gold);

}

/* =========================================
   METHODS
========================================= */

.methods{

  margin-top:45px;
}

.methods h3{

  font-family:'Cormorant Garamond',serif;

  font-size:2.5rem;

  margin-bottom:28px;

}

.method-grid{

  display:grid;

  grid-template-columns:repeat(3,1fr);

  gap:18px;

}

.method{

  background:rgba(255,255,255,.65);

  border:
  1px solid rgba(0,0,0,.05);

  border-radius:24px;

  padding:28px;

  text-align:center;

  transition:.4s var(--ease);

}

.method:hover{

  transform:translateY(-8px);

  background:white;

}

.method span{

  font-size:2rem;

  display:block;

  margin-bottom:14px;

}

.method h4{

  font-size:1rem;

  color:var(--text);

}

/* =========================================
   DONATION CARD
========================================= */

.donation-card{

  background:
  linear-gradient(
  180deg,
  #fff,
  #f9f2e6
  );

  border-radius:36px;

  padding:55px;

  box-shadow:var(--shadow);

  position:sticky;

  top:120px;

  overflow:hidden;

}

.donation-card::before{

  content:"";

  position:absolute;

  width:320px;
  height:320px;

  border-radius:50%;

  background:
  radial-gradient(circle,
  rgba(255,183,77,.20),
  transparent 70%);

  top:-140px;
  right:-120px;

}

.donation-card h3{

  position:relative;

  font-family:'Cormorant Garamond',serif;

  font-size:3rem;

  margin-bottom:20px;

}

.donation-card p{

  position:relative;

  color:var(--muted);

  margin-bottom:28px;

}

.donation-details{

  position:relative;

  background:white;

  border-radius:24px;

  padding:28px;

  border:
  1px solid rgba(0,0,0,.06);

  margin-bottom:26px;

}

.detail{

  padding:18px 0;

  border-bottom:
  1px solid rgba(0,0,0,.06);

}

.detail:last-child{
  border:none;
}

.detail strong{

  display:block;

  margin-bottom:8px;

  color:var(--saffron);

}

.qr-placeholder{

  margin-top:28px;

  border:
  2px dashed rgba(0,0,0,.12);

  border-radius:28px;

  padding:55px 30px;

  text-align:center;

  color:var(--muted);

  background:
  rgba(255,255,255,.55);

}

/* =========================
   MESSAGE SECTION
========================= */

.message-section{

  text-align:center;

  background:var(--bg-soft);
}

.message-box{

  max-width:900px;
  margin:auto;
}

.message-box h2{

  font-family:'Tiro Devanagari Hindi',serif;

  font-size:clamp(2.8rem,5vw,5rem);

  margin-bottom:30px;

  line-height:1.3;
}

.message-box p{

  color:var(--earth);

  font-size:1.25rem;

  line-height:2;
}

/* =====================================================
   MESSAGE
===================================================== */

.message{

  text-align:center;

  color:white;

  overflow:hidden;

  background:
  linear-gradient(
  rgba(0,0,0,.76),
  rgba(0,0,0,.82)
  ),
  url('https://images.pexels.com/photos/34325558/pexels-photo-34325558.jpeg?q=80&w=2000&auto=format&fit=crop')
  center/cover fixed;
}

.message-card{

  max-width:1050px;

  margin:auto;

  padding:90px;

  border-radius:42px;

  background:
  rgba(255,255,255,.08);

  border:
  1px solid rgba(255,255,255,.08);

  backdrop-filter:blur(16px);
}

.message-card h2{

  font-family:'Tiro Devanagari Hindi',serif;

  font-size:4rem;

  margin-bottom:28px;
}

.message-card p{

  color:rgba(255,255,255,.82);

  line-height:2;

  font-size:1.15rem;

  margin-bottom:20px;
}

.message-highlight{

  margin-top:40px;

  font-family:'Tiro Devanagari Hindi',serif;

  font-size:2rem;

  color:#ffd27d;
}

/* =====================================================
   MOBILE MENU
===================================================== */

.menu-toggle{

  width:54px;
  height:54px;

  border:none;

  display:none;

  background:
  rgba(255,255,255,.12);

  border:
  1px solid rgba(255,255,255,.15);

  border-radius:16px;

  backdrop-filter:blur(10px);

  cursor:pointer;

  position:relative;

  z-index:1200;

  transition:.4s ease;

}

nav.scrolled .menu-toggle{

  background:white;

  border-color:
  rgba(0,0,0,.08);

}

.menu-toggle span{

  position:absolute;

  left:15px;

  width:24px;
  height:2px;

  background:white;

  transition:.4s ease;

}

nav.scrolled .menu-toggle span{
  background:var(--text);
}

.menu-toggle span:nth-child(1){
  top:18px;
}

.menu-toggle span:nth-child(2){
  top:26px;
}

.menu-toggle span:nth-child(3){
  top:34px;
}

/* OFFCANVAS */

.mobile-menu{

  position:fixed;

  top:0;
  right:-100%;

  width:340px;
  max-width:90%;

  height:100vh;

  background:
  rgba(255,253,249,.96);

  backdrop-filter:blur(20px);

  z-index:2000;

  transition:
  right .7s var(--ease);

  box-shadow:
  -20px 0 60px rgba(0,0,0,.12);

}

.mobile-menu.active{
  right:0;
}

.mobile-menu-inner{

  padding:40px 32px;

  height:100%;

  display:flex;
  flex-direction:column;

}

.mobile-top{

  display:flex;
  justify-content:space-between;
  align-items:center;

  margin-bottom:70px;

}

.mobile-logo{

  font-family:'Cormorant Garamond',serif;

  font-size:2rem;
  font-weight:700;

}

.menu-close{

  width:46px;
  height:46px;

  border:none;

  border-radius:14px;

  background:var(--bg-soft);

  cursor:pointer;

  font-size:1.2rem;

}

.mobile-links{

  display:flex;
  flex-direction:column;

  gap:28px;

}

.mobile-links a{

  color:var(--text);

  font-size:1.2rem;

  font-weight:600;

  transition:.3s ease;

}

.mobile-links a:hover{

  color:var(--saffron);

  transform:translateX(6px);

}

.mobile-lang{

  margin-top:auto;

  padding-top:40px;

  font-weight:700;

  color:var(--earth);

}

/* OVERLAY */

.menu-overlay{

  position:fixed;
  inset:0;

  background:
  rgba(0,0,0,.45);

  backdrop-filter:blur(3px);

  opacity:0;
  visibility:hidden;

  transition:.5s ease;

  z-index:1500;

}

.menu-overlay.active{

  opacity:1;
  visibility:visible;

}

/* MOBILE */

@media(max-width:1100px){

  .desktop-lang, .daan-btn{
    display:none;
  }

  .menu-toggle{
    display:block;
  }

}

/* =====================================================
   RESPONSIVE
===================================================== */

@media(max-width:1100px){

  .hero-grid,
  .about-grid,
  .contact-grid,
  .events-grid,
  .section-grid,
  .method-grid,
  .story-grid{

    grid-template-columns:1fr;
  }

  .gallery-grid{
    grid-template-columns:1fr 1fr;
  }

  .timeline::before{
    left:28px;
  }

  .timeline-item{

    width:100%;

    left:0 !important;

    text-align:left !important;

    padding-left:90px;
  }

  .timeline-dot{
    left:20px !important;
  }

  .sidebar{
    position:relative;
    top:auto;
  }

  .nav-links{
    display:none;
  }
  
  .form-card,
  .donation-card{
    position:relative;
    top:0;
  }

}

@media(max-width:700px){

  section{
    padding:90px 6%;
  }

  .hero h1,
  .about h2,
  .contact h2,
  .contact-hero h1,
  .section-title h2{
    font-size:3.5rem;
  }

  .gallery-grid{
    grid-template-columns:1fr;
  }

  .wide,
  .tall{
    grid-column:auto;
    grid-row:auto;
  }

  .hero-card,
  .darshan-card,
  .about-card,
  .story-block,
  .founder-card,
  .message-card,
  .info-card,
  .form-card,
  .content-box,
  .donation-card{
    padding:36px;
  }
  
  .hero-content h1,
  .message-card h2,
  .donation-hero h1{
    font-size:3rem;
  }
  
  .timeline-item {
      padding-right: 0px;
      padding-left: 70px;
  }
  
  .timeline-card {
      padding: 18px 15px;
  }

}