/* ============================================================
   style.css — Sri Sri Sri Yogendra Avadhuta Guruji Website
   Premium Spiritual · Royal · Elegant · Timeless Design
   ============================================================ */

/* === Google Fonts Import === */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400;1,600&family=EB+Garamond:ital,wght@0,400;0,500;0,600;1,400&family=Poppins:wght@300;400;500;600;700&family=Montserrat:wght@400;600;700;800&family=Anek+Kannada:wght@100;200;300;400;500;600;700;800&display=swap');

/* ============================================================
   DESIGN TOKENS — SPIRITUAL COLOR SYSTEM
   ============================================================ */
:root {
  /* Core Brand Palette */
  --saffron:        #D35400;
  --saffron-light:  #E8681A;
  --saffron-dark:   #A84300;
  --gold:           #BF9B30;
  --gold-light:     #D4AF50;
  --gold-pale:      #E8D08A;
  --gold-dark:      #9A7D22;
  --cream:          #F5E6CC;
  --cream-light:    #FDF5E8;
  --cream-dark:     #EDD4A8;
  --brown:          #6D3E2A;
  --brown-light:    #8B5A3C;
  --brown-dark:     #4A2418;
  --ivory:          #FAF4EC;

  /* Semantic Aliases */
  --primary:        var(--saffron);
  --primary-light:  var(--saffron-light);
  --primary-dark:   var(--saffron-dark);
  --accent:         var(--gold);
  --accent-light:   var(--gold-light);
  --text:           var(--brown);
  --text-muted:     #9A7055;
  --text-light:     #C4956A;
  --bg-main:        var(--cream-light);
  --bg-section:     var(--cream);
  --bg-alt:         var(--ivory);
  --white:          #FFFFFF;
  --dark:           #2C1A0E;
  --dark-rich:      #1A0D05;

  /* Gradients */
  --gradient-gold:    linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 50%, var(--gold) 100%);
  --gradient-saffron: linear-gradient(135deg, var(--saffron) 0%, var(--saffron-light) 50%, var(--saffron-dark) 100%);
  --gradient-hero:    linear-gradient(160deg, var(--dark-rich) 0%, var(--brown-dark) 40%, var(--brown) 100%);
  --gradient-cream:   linear-gradient(180deg, var(--cream-light) 0%, var(--cream) 100%);
  --gradient-spiritual: linear-gradient(135deg, #3A6F75 0%, #2A5560 100%);
  --gradient-section: linear-gradient(180deg, var(--ivory) 0%, var(--cream) 100%);

  /* Shadows */
  --shadow-xs:      0 1px 4px rgba(109,62,42,0.08);
  --shadow-sm:      0 4px 16px rgba(109,62,42,0.10);
  --shadow-md:      0 8px 32px rgba(109,62,42,0.14);
  --shadow-lg:      0 16px 48px rgba(109,62,42,0.18);
  --shadow-xl:      0 24px 64px rgba(109,62,42,0.22);
  --shadow-gold:    0 6px 24px rgba(191,155,48,0.35);
  --shadow-gold-lg: 0 12px 40px rgba(191,155,48,0.45);

  /* Border Radius */
  --radius-xs:  4px;
  --radius-sm:  8px;
  --radius-md:  16px;
  --radius-lg:  24px;
  --radius-xl:  50px;
  --radius-full:50%;

  /* Spacing Scale */
  --space-xs:  8px;
  --space-sm:  16px;
  --space-md:  32px;
  --space-lg:  64px;
  --space-xl:  96px;
  --space-2xl: 128px;

  /* Typography */
  --font-serif: 'Cormorant Garamond', 'EB Garamond', Georgia, serif;
  --font-body:  'Poppins', sans-serif;
  --font-head:  'Montserrat', 'Poppins', sans-serif;
  --font-kn:    'Anek Kannada', sans-serif;


  /* Transition */
  --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg-main);
  overflow-x: hidden;
  line-height: 1.75;
}

body.lang-kn {
    font-family: var(--font-kn);
    letter-spacing: 0;
    word-spacing: 1px;
    line-height: 1.9;
}

img { max-width: 100%; height: auto; display: block; }
a  { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { font-family: inherit; }

/* ============================================================
   TYPOGRAPHY SYSTEM
   ============================================================ */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  font-weight: 600;
  line-height: 1.2;
  color: var(--primary);
  letter-spacing: 0.01em;
}

body.lang-kn h1, body.lang-kn h2,
body.lang-kn h3, body.lang-kn h4 {
  font-family: var(--font-kn);
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  color: var(--primary);
  margin-bottom: 1rem;
  position: relative;
  text-align: center;
  font-weight: 600;
  line-height: 1.2;
}
.section-title::after {
  content: '';
  display: block;
  width: 56px;
  height: 2px;
  background: var(--gradient-gold);
  margin: 16px auto 0;
  border-radius: 2px;
}
.section-title.left::after { margin-left: 0; }

.section-subtitle {
  color: var(--text-muted);
  font-size: 1.05rem;
  margin-bottom: 3.5rem;
  font-weight: 400;
  text-align: center;
  line-height: 1.8;
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
}

/* Ornamental divider */
.ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin: 20px 0;
}
.ornament::before,
.ornament::after {
  content: '';
  flex: 1;
  max-width: 80px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.ornament-symbol {
  color: var(--gold);
  font-size: 1rem;
}

/* ============================================================
   LAYOUT UTILITIES
   ============================================================ */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section          { padding: 96px 0; }
.section-sm       { padding: 64px 0; }
.section-lg       { padding: 120px 0; }
.section-cream    { background: var(--bg-section); }
.section-ivory    { background: var(--bg-alt); }
.section-white    { background: var(--white); }
.section-dark     { background: var(--gradient-hero); color: var(--white); }
.section-dark .section-title { color: var(--gold); }
.section-dark .section-subtitle { color: rgba(255,255,255,0.65); }
.section-saffron  { background: var(--gradient-saffron); color: var(--white); }

/* ============================================================
   BUTTON SYSTEM
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 36px;
  border-radius: var(--radius-xl);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.88rem;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  position: relative;
  overflow: hidden;
}
.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.3s ease;
  background: rgba(255,255,255,0.12);
}
.btn:hover::before { opacity: 1; }

.btn-primary {
  background: var(--gradient-saffron);
  color: var(--white);
  box-shadow: 0 6px 20px rgba(211,84,0,0.35);
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(211,84,0,0.45);
}

.btn-gold {
  background: var(--gradient-gold);
  color: var(--brown-dark);
  box-shadow: var(--shadow-gold);
}
.btn-gold:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-gold-lg);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.5);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

.btn-dark {
  background: var(--brown);
  color: var(--white);
}
.btn-dark:hover {
  background: var(--brown-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-outline-gold {
  background: transparent;
  color: var(--gold);
  border: 1.5px solid var(--gold);
}
.btn-outline-gold:hover {
  background: var(--gold);
  color: var(--brown-dark);
}

.btn-sm { padding: 10px 24px; font-size: 0.8rem; }
.btn-lg { padding: 18px 48px; font-size: 0.95rem; }

/* ============================================================
   NAVBAR
   ============================================================ */
#navbar{
    position:fixed;
    top:0;
    left:0;
    right:0;
    z-index:1000;

    background:#120804 !important;

    box-shadow:
    0 5px 25px rgba(0,0,0,.08);

    border-bottom:
    1px solid rgba(191,155,48,.25);
}

#navbar.transparent {
  background: transparent;
}

#navbar.scrolled{
    background:#120804;
    backdrop-filter:none;
    -webkit-backdrop-filter:none;

    border-bottom:1px solid rgba(191,155,48,.25);

    box-shadow:
    0 8px 25px rgba(0,0,0,.08);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 48px;
  max-width: 1400px;
  margin: 0 auto;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}
.nav-logo img {
  height: 52px;
  width: auto;
  filter: drop-shadow(0 2px 8px rgba(191,155,48,0.4));
  transition: var(--transition);
}
.nav-logo img:hover { transform: scale(1.05); }

.nav-logo-text {
  display: flex;
  flex-direction: column;
}
.nav-logo-text .name {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--gold);
  letter-spacing: 0.3px;
  line-height: 1.2;
}
body.lang-kn .nav-logo-text .name{
    font-family:'Anek Kannada', sans-serif;
    font-weight:700;
    line-height:1.25;
    letter-spacing:0;
}

body.lang-kn .nav-logo-text .subtitle{
    font-family:'Anek Kannada', sans-serif;
    font-weight:500;
}
.nav-logo-text .subtitle {
  font-size: 0.6rem;
  color: rgba(255,255,255,0.65);;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-top: 2px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-links a {
  color:  rgba(255,255,255,0.65);
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.85rem;
  padding: 8px 18px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  position: relative;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 1.5px;
  background: var(--gradient-gold);
  border-radius: 1px;
  transition: width 0.35s ease;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--gold);
}
.nav-links a:hover::after,
.nav-links a.active::after { width: 60%; }

.lang-switcher {
  display: flex;
  align-items: center;
  gap: 3px;
 background:#fff;
    border:1px solid rgba(191,155,48,.25);
  border-radius: var(--radius-xl);
  padding: 4px;
  border: 1px solid rgba(255,255,255,0.12);
}
.lang-btn {
  padding: 6px 14px;
  border-radius: var(--radius-xl);
  font-size: 0.75rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  background: transparent;
  color: #000;
  transition: var(--transition);
  letter-spacing: 0.5px;
}
.lang-btn.active {
  background: var(--gradient-gold);
  color: var(--brown-dark);
  box-shadow: 0 2px 8px rgba(191,155,48,0.4);
}
.lang-btn:hover:not(.active) { color: var(--gold); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 10px;
  background: #fff;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(191,155,48,0.25);
  transition: var(--transition);
}
.hamburger:hover {
  background: rgba(191,155,48,0.12);
  border-color: rgba(191,155,48,0.5);
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ============================================================
   MOBILE NAV
   ============================================================ */
.mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(160deg, rgba(26,10,3,0.98) 0%, rgba(74,36,24,0.99) 100%);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.mobile-nav.open {
  display: flex;
  opacity: 1;
  pointer-events: all;
}
.mobile-nav a {
  color: rgba(255,255,255,0.88);
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 500;
  transition: var(--transition);
  letter-spacing: 1px;
  position: relative;
}
.mobile-nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gradient-gold);
  transition: width 0.3s ease;
}
.mobile-nav a:hover {
  color: var(--gold);
  transform: translateX(12px);
}
.mobile-nav a:hover::after { width: 100%; }

.mobile-lang {
  display: flex;
  gap: 12px;
  margin-top: 8px;
  padding: 4px;
  background: rgba(255,255,255,0.06);
  border-radius: var(--radius-xl);
  border: 1px solid rgba(191,155,48,0.2);
}
.mobile-lang button {
  padding: 8px 24px;
  border-radius: var(--radius-xl);
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  background: transparent;
  color: rgba(255,255,255,0.65);
  transition: var(--transition);
}
.mobile-lang button.active {
  background: var(--gradient-gold);
  color: var(--brown-dark);
}

.mobile-close-btn {
  position: absolute;
  top: 24px;
  right: 24px;
  background: rgba(191,155,48,0.15);
  border: 1px solid rgba(191,155,48,0.4);
  color: var(--gold);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  font-size: 1.6rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  line-height: 1;
}
.mobile-close-btn:hover {
  background: rgba(191,155,48,0.3);
  transform: rotate(90deg);
}

/* ============================================================
   LIGHTBOX
   ============================================================ */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(20,8,2,0.96);
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  backdrop-filter: blur(12px);
}
.lightbox.active { display: flex; }
.lightbox-inner {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
}
.lightbox-inner img {
  max-width: 100%;
  max-height: 85vh;
  object-fit: contain;
  border-radius: var(--radius-md);
  box-shadow: 0 0 80px rgba(191,155,48,0.2);
}
.lightbox-close {
  position: absolute;
  top: -20px;
  right: -20px;
  width: 44px;
  height: 44px;
  background: var(--gradient-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.3rem;
  color: var(--brown-dark);
  font-weight: 700;
  transition: var(--transition);
  border: none;
}
.lightbox-close:hover { transform: scale(1.12); }
.lightbox-prev, .lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(191,155,48,0.85);
  border: none;
  border-radius: 50%;
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brown-dark);
  font-size: 1.3rem;
  cursor: pointer;
  transition: var(--transition);
}
.lightbox-prev { left: -64px; }
.lightbox-next { right: -64px; }
.lightbox-prev:hover, .lightbox-next:hover {
  background: var(--gold);
  transform: translateY(-50%) scale(1.1);
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero{
    position:relative;
    min-height:100vh;
    overflow:hidden;
    display:flex;
    align-items:center;
    justify-content:center;
}

.hero-bg{
    position:absolute;
    inset:0;
    z-index:1;
}

.hero-bg img{
    width:100%;
    height:100%;
    object-fit:cover;
    transform:scale(1.05);
}

.hero-bg::after{
    content:'';
    position:absolute;
    inset:0;

    background:
    linear-gradient(
        90deg,
        rgba(20,15,10,.75) 0%,
        rgba(20,15,10,.45) 35%,
        rgba(20,15,10,.15) 65%,
        rgba(20,15,10,.05) 100%
    );
}

/* Subtle texture overlay */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 20%, rgba(191,155,48,0.04) 1px, transparent 1px),
    radial-gradient(circle at 80% 80%, rgba(191,155,48,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.hero::before{
    content:'';

    position:absolute;

    width:600px;
    height:600px;

    right:-150px;
    top:50%;

    transform:translateY(-50%);

    background:
    radial-gradient(
    circle,
    rgba(191,155,48,.20),
    transparent 70%
    );

    z-index:1;
}


.hero-particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}
.particle {
  position: absolute;
  width: 3px;
  height: 3px;
  background: rgba(191,155,48,0.5);
  border-radius: 50%;
  animation: float-particle 10s infinite;
}
@keyframes float-particle {
  0%, 100% { transform: translateY(0) rotate(0deg); opacity: 0.4; }
  50% { transform: translateY(-50px) rotate(180deg); opacity: 0.9; }
}

.hero-content{
    display:flex;
    align-items:center;

    width:100%;
    max-width:1300px;

    padding:150px 80px;

    position:relative;
    z-index:10;
}

.hero-text { color: var(--white); }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(191,155,48,0.12);
  border: 1px solid rgba(191,155,48,0.35);
  color: var(--gold-light);
  padding: 8px 20px;
  border-radius: var(--radius-xl);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.hero-badge{
    margin-bottom:20px;
}



.hero-title{
    font-size:78px;
    line-height:1.05;
    font-weight:600;
    color:#fff;
}
.hero-title .gold{
    color:#D4AF37;
}
.hero-title .name-line {
  display: block;
  font-family: var(--font-body);
  font-size: clamp(0.8rem, 1.5vw, 1rem);
  color: rgba(255,255,255,0.6);
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 12px;
  font-style: normal;
}

.hero-desc{
    font-size:20px;
    line-height:1.9;
    color:rgba(255,255,255,.85);

    max-width:550px;

    margin-top:25px;
    margin-bottom:40px;
}

.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

.hero-stats{
    margin-top:50px;

    display:flex;
    gap:60px;

    border:none;
}
.stat-item { text-align: center; }
.stat-num{
    font-size:40px;
    color:#D4AF37;
}
.stat-label {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.45);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-top: 4px;
  display: block;
}

.hero-image-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-image-glow {
  position: absolute;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(191,155,48,0.25) 0%, transparent 70%);
  border-radius: 50%;
  animation: pulse-glow 4s ease-in-out infinite;
}
@keyframes pulse-glow {
  0%, 100% { transform: scale(1); opacity: 0.6; }
  50% { transform: scale(1.12); opacity: 1; }
}

.hero-image-frame {
  position: relative;
  width: 440px;
  height: 440px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid rgba(191,155,48,0.4);
  box-shadow:
    0 0 60px rgba(191,155,48,0.2),
    0 0 120px rgba(109,62,42,0.4),
    inset 0 0 60px rgba(191,155,48,0.05);
}
.hero-image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-image-ring {
  position: absolute;
  inset: -24px;
  border-radius: 50%;
  border: 1.5px dashed rgba(191,155,48,0.25);
  animation: spin-ring 24s linear infinite;
}
@keyframes spin-ring {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Second decorative ring */
.hero-image-wrap::after {
  content: '';
  position: absolute;
  inset: -48px;
  border-radius: 50%;
  border: 1px dashed rgba(191,155,48,0.12);
  animation: spin-ring 40s linear infinite reverse;
}

.hero-logo-overlay {
  position: absolute;
  bottom: -16px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(26,10,3,0.92);
  border: 1.5px solid rgba(191,155,48,0.4);
  border-radius: var(--radius-lg);
  padding: 12px 28px;
  text-align: center;
}
.hero-logo-overlay img { height: 36px; width: auto; margin: 0 auto 4px; }
.hero-logo-overlay span {
  display: block;
  font-size: 0.6rem;
  color: var(--gold);
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 600;
}

/* ============================================================
   PAGE HERO (Inner Pages)
   ============================================================ */
.page-hero {
  background: var(--gradient-hero);
  padding: 148px 0 84px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at center, rgba(191,155,48,0.10) 0%, transparent 65%),
    radial-gradient(ellipse at 20% 80%, rgba(211,84,0,0.15) 0%, transparent 50%);
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-gold);
  opacity: 0.5;
}
.page-hero-content { position: relative; z-index: 1; }
.page-hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 5vw, 3.6rem);
  color: var(--gold-light);
  margin-bottom: 16px;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.page-hero p {
  color: rgba(255,255,255,0.6);
  font-size: 1rem;
  margin-top: 8px;
}

.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: rgba(255,255,255,0.45);
  font-size: 0.82rem;
  margin-top: 14px;
  letter-spacing: 0.5px;
}
.breadcrumb a { color: var(--gold); transition: color 0.3s; }
.breadcrumb a:hover { color: var(--gold-light); }
.breadcrumb-sep { color: rgba(191,155,48,0.4); }

/* ============================================================
   SECTION DECORATORS
   ============================================================ */
.section-badge {
  display: inline-block;
  background: transparent;
  color: var(--gold-dark);
  padding: 6px 20px;
  border-radius: var(--radius-xl);
  border: 1px solid var(--gold);
  font-weight: 600;
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.section-badge.gold {
  background: var(--gradient-gold);
  color: var(--brown-dark);
  border-color: transparent;
}
.section-tag {
  display: inline-block;
  padding: 7px 22px;
  background: var(--gradient-gold);
  color: var(--brown-dark);
  border-radius: var(--radius-xl);
  margin-bottom: 16px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.section-header {
  text-align: center;
  margin-bottom: 56px;
}
.section-header h2 {
  font-family: var(--font-serif);
  color: var(--primary);
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 600;
  margin-top: 12px;
  line-height: 1.2;
}

/* ============================================================
   WELCOME SECTION
   ============================================================ */
.welcome-section {
  padding: 100px 0;
  background: var(--bg-section);
  position: relative;
}
.welcome-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.welcome-content-full {
  max-width: 920px;
  margin: auto;
  text-align: center;
}
.welcome-content-full h2 {
  font-family: var(--font-serif);
  color: var(--primary);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  margin-bottom: 28px;
  font-weight: 600;
  line-height: 1.25;
}
.welcome-content-full p {
  font-size: 1.1rem;
  line-height: 2;
  color: var(--text);
  font-weight: 300;
}

/* ============================================================
   DAILY SPIRITUAL SECTION
   ============================================================ */
.daily-spiritual-section {
  padding: 100px 0;
  background: var(--white);
  position: relative;
}

.spiritual-card {
  max-width: 1040px;
  margin: auto;
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(191,155,48,0.15);
  transition: var(--transition-slow);
}
.spiritual-card:hover {
  box-shadow: var(--shadow-xl);
  transform: translateY(-4px);
}

.spiritual-image {
  height: 340px;
  overflow: hidden;
  position: relative;
}
.spiritual-image::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 80px;
  background: linear-gradient(to top, var(--white), transparent);
}
.spiritual-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}
.spiritual-card:hover .spiritual-image img {
  transform: scale(1.05);
}

.spiritual-content {
  padding: 52px 64px;
  text-align: center;
}
.spiritual-content p {
  color: var(--text);
  font-size: 1.12rem;
  line-height: 2;
  max-width: 820px;
  margin: auto;
  font-weight: 300;
}

/* ============================================================
   EVENTS GRID (Home Page)
   ============================================================ */
.events-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.event-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid rgba(191,155,48,0.10);
}
.event-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(191,155,48,0.25);
}

.event-card-image {
  position: relative;
  width: 100%;
  height: 200px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--saffron-dark), var(--brown));
}
.event-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.event-card:hover .event-card-image img { transform: scale(1.08); }
.event-card-image .no-img {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  font-size: 3rem;
  opacity: 0.35;
}

.event-date-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--gradient-gold);
  color: var(--brown-dark);
  padding: 5px 12px;
  border-radius: var(--radius-sm);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.3px;
}

.event-card-body { padding: 24px; }
.event-card-body h3 {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  margin-bottom: 10px;
  color: var(--primary);
  font-weight: 600;
  line-height: 1.4;
}
.event-card-body p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 18px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.event-read-more {
  color: var(--primary);
  font-weight: 600;
  font-size: 0.82rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.event-read-more:hover { color: var(--gold-dark); gap: 12px; }

/* ============================================================
   GALLERY GRID
   ============================================================ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 1;
  background: var(--brown-dark);
  transition: var(--transition);
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.gallery-item:hover img { transform: scale(1.1); }
.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,10,3,0.85) 0%, transparent 55%);
  opacity: 0;
  transition: var(--transition);
  display: flex;
  align-items: flex-end;
  padding: 20px;
}
.gallery-item:hover .gallery-item-overlay { opacity: 1; }
.gallery-item-overlay .zoom-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.5);
  width: 52px;
  height: 52px;
  background: rgba(191,155,48,0.92);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brown-dark);
  font-size: 1.2rem;
  transition: var(--transition);
}
.gallery-item:hover .gallery-item-overlay .zoom-icon {
  transform: translate(-50%, -50%) scale(1);
}

.gallery-full-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.gallery-full-grid .gallery-item { aspect-ratio: 4/3; }

.gallery-filter {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}
.filter-btn {
  padding: 10px 24px;
  border-radius: var(--radius-xl);
  border: 1.5px solid rgba(191,155,48,0.3);
  background: transparent;
  color: var(--text-muted);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition);
}
.filter-btn:hover, .filter-btn.active {
  background: var(--gradient-saffron);
  color: var(--white);
  border-color: transparent;
  box-shadow: 0 4px 16px rgba(211,84,0,0.3);
}

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-section {
  background: var(--gradient-hero);
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 50%, rgba(191,155,48,0.08) 0%, transparent 60%),
    radial-gradient(ellipse at 70% 50%, rgba(211,84,0,0.12) 0%, transparent 60%);
}
.cta-content { position: relative; z-index: 1; }
.cta-section h2 {
  font-family: 'Anek Kannada';
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--gold-light);
  margin-bottom: 16px;
  font-weight: 500;
}
.cta-section p {
  color: rgba(255,255,255,0.68);
  font-size: 1.05rem;
  max-width: 540px;
  margin: 0 auto 40px;
  line-height: 1.9;
  font-weight: 300;
}

/* CTA Kannada Font */

.cta-section .btn{
    font-family: 'Anek Kannada';
}

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  background: linear-gradient(180deg, var(--dark-rich) 0%, #120804 100%);
  color: rgba(255,255,255,0.65);
  padding-top: 80px;
  border-top: 3px solid rgba(191,155,48,0.2);
  position: relative;
}
footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.4;
}

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

.footer-brand .logo-wrap {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}
.footer-brand .logo-wrap img {
  height: 52px;
  filter: drop-shadow(0 2px 8px rgba(191,155,48,0.3));
}
.footer-brand .brand-name {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 600;
  color: var(--gold);
  line-height: 1.3;
}
.footer-brand p {
  font-size: 0.88rem;
  line-height: 1.85;
  color: rgba(255,255,255,0.5);
}

.footer-col h4 {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 22px;
  text-transform: uppercase;
  letter-spacing: 2px;
  position: relative;
  padding-bottom: 12px;
}
.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 32px;
  height: 1.5px;
  background: var(--gradient-gold);
  border-radius: 1px;
}

.footer-col ul li { margin-bottom: 12px; }
.footer-col ul li a {
  color: rgba(255,255,255,0.5);
  font-size: 0.88rem;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-col ul li a:hover {
  color: var(--gold-light);
  padding-left: 6px;
}
.footer-col ul li a::before {
  content: '›';
  color: var(--gold);
  opacity: 0.6;
  transition: var(--transition);
}
.footer-col ul li a:hover::before { opacity: 1; }

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 0.88rem;
}
.footer-contact-item .icon {
  color: var(--gold);
  font-size: 0.95rem;
  margin-top: 2px;
  flex-shrink: 0;
}
.footer-contact-item a {
  color: rgba(255,255,255,0.5);
  transition: color 0.3s;
}
.footer-contact-item a:hover { color: var(--gold-light); }
.footer-contact-item p { color: rgba(255,255,255,0.5); }

.social-icons {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.social-icon {
  width: 42px;
  height: 42px;
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(191,155,48,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.55);
  font-size: 1rem;
  transition: var(--transition);
}
.social-icon:hover {
  background: var(--gradient-gold);
  color: var(--brown-dark);
  border-color: transparent;
  transform: translateY(-4px);
  box-shadow: var(--shadow-gold);
}

.social-icons.vertical {
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}
.social-link-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.5);
  font-size: 0.88rem;
  transition: var(--transition);
}
.social-link-item:hover { color: var(--gold-light); }
.social-link-item i { width: 18px; }

.footer-bottom {
  padding: 24px 0;
  text-align: center;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.35);
  border-top: 1px solid rgba(255,255,255,0.05);
}
.footer-bottom span { color: var(--gold); }

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-biography {
  padding: 100px 0;
  background: var(--bg-section);
  position: relative;
}

.about-row {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-row.reverse {
  grid-template-columns: 1fr 1.2fr;
}

.about-image img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  display: block;
  transition: var(--transition-slow);
}
.about-image img:hover {
  transform: scale(1.02);
  box-shadow: 0 32px 80px rgba(109,62,42,0.25);
}

.about-content h2 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--primary);
  margin-bottom: 24px;
  font-weight: 600;
  line-height: 1.2;
}
.about-content p {
  line-height: 2;
  font-size: 1.05rem;
  color: var(--text);
  margin-bottom: 20px;
  font-weight: 300;
}

.meaning-box {
  background: var(--white);
  padding: 35px;
  border-radius: 20px;
  margin: 35px 0;
  border-left: 5px solid var(--gold);
  box-shadow: 0 15px 40px rgba(0,0,0,.08);
}
.meaning-box div {
  padding: 18px 0;
  line-height: 1.9;
  border-bottom: 1px solid rgba(191,155,48,0.12);
  font-size: 0.95rem;
  color: var(--text);
}
.meaning-box div:last-child { border-bottom: none; }
.meaning-box strong {
  color: var(--primary);
  font-size: 1.1rem;
  margin-right: 8px;
}

html[lang="kn"] .meaning-box strong{
    font-family:'Anek Kannada', sans-serif;
}

/* Spiritual Journey */
.spiritual-journey {
  padding: 100px 0;
  background: var(--gradient-spiritual);
}
.spiritual-journey .about-content.white h2,
.spiritual-journey .about-content.white p {
  color: var(--white);
}
.spiritual-journey .about-content.white p {
  color: rgba(255,255,255,0.82);
  font-weight: 300;
}

.devotees-title{
    color:#fff;
    font-size:2rem;
    font-weight:700;
    margin:30px 0 20px;
}

/* Quote */
.guruji-quote {
  padding: 100px 0;
  background: var(--gradient-saffron);
  position: relative;
  overflow: hidden;
}
.guruji-quote::before {
  content: '"';
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 18rem;
  color: rgba(255,255,255,0.04);
  font-family: Georgia, serif;
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

.quote-box {
  text-align: center;
  max-width: 880px;
  margin: auto;
  color: var(--white);
  position: relative;
  z-index: 1;
}
.quote-box .fa-quote-left {
  font-size: 2rem;
  color: rgba(255,255,255,0.35);
  margin-bottom: 24px;
  display: block;
}
.quote-box p {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(1.4rem, 3vw, 2rem);
  line-height: 1.75;
  margin: 0 0 32px;
  font-weight: 400;
}
.quote-box h4 {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: rgba(255,255,255,0.75);
  font-weight: 500;
  letter-spacing: 1px;
}

/* ============================================================
   EVENTS PAGE
   ============================================================ */
.events-page-section {
  padding: 80px 0;
  background: var(--bg-section);
}
.events-page-section.past-events {
  background: var(--white);
}

.events-heading {
  text-align: center;
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  margin-bottom: 52px;
  color: var(--primary);
  font-weight: 600;
  position: relative;
}
.events-heading::after {
  content: '';
  display: block;
  width: 56px;
  height: 2px;
  background: var(--gradient-gold);
  margin: 16px auto 0;
  border-radius: 2px;
}

.events-page-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
}

.event-page-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  border: 1px solid rgba(191,155,48,0.12);
}
.event-page-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: rgba(191,155,48,0.3);
}
.event-page-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.event-page-card:hover img { transform: scale(1.04); }

.event-page-content { padding: 28px; }

.event-date {
  display: inline-block;
  background: var(--gradient-gold);
  color: var(--brown-dark);
  padding: 6px 16px;
  border-radius: var(--radius-xl);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  margin-bottom: 14px;
}

.event-page-content h3 {
  font-family: var(--font-serif);
  color: var(--primary);
  margin-bottom: 12px;
  font-size: 1.2rem;
  font-weight: 600;
  line-height: 1.4;
}
.event-page-content p {
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 20px;
  font-size: 0.9rem;
}

.event-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 24px;
  background: var(--gradient-saffron);
  color: var(--white);
  border-radius: var(--radius-xl);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: var(--transition);
}
.event-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(211,84,0,0.35);
}

/* ============================================================
   EVENT DETAILS PAGE
   ============================================================ */
.event-detail-section {
  padding: 48px 0 80px;
}
.event-detail-hero img {
  width: 100%;
  max-height: 520px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  margin-bottom: 36px;
  box-shadow: var(--shadow-lg);
}
.event-detail-date {
  display: inline-block;
  background: var(--gradient-gold);
  color: var(--brown-dark);
  padding: 6px 18px;
  border-radius: var(--radius-xl);
  font-size: 0.8rem;
  font-weight: 700;
  margin-bottom: 20px;
}
.event-detail-title {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 4vw, 3rem);
  color: var(--primary);
  margin-bottom: 8px;
  font-weight: 600;
  line-height: 1.2;
}
.event-detail-body {
  font-size: 1.05rem;
  line-height: 1.9;
  margin-bottom: 48px;
  color: var(--text);
  font-weight: 300;
}
.event-gallery-title {
  font-family: var(--font-serif);
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 28px;
  font-weight: 600;
}

.event-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  margin-top: 28px;
}
.event-photo {
  width: 100%;
  height: 240px;
  object-fit: cover;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(191,155,48,0.1);
}
.event-photo:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(191,155,48,0.3);
}

/* ============================================================
   GALLERY PAGE FULL
   ============================================================ */
.video-gallery-section {
  padding: 96px 0;
  background: var(--bg-section);
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 48px;
}

.video-card {
  background: var(--white);
  border: 1.5px solid rgba(191,155,48,0.2);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}
.video-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
  border-color: rgba(191,155,48,0.4);
}
.video-card video {
  width: 100%;
  aspect-ratio: 9/16;
  background: var(--dark-rich);
  object-fit: contain;
  display: block;
}
.video-card h3 {
  padding: 16px;
  margin: 0;
  text-align: center;
  font-family: var(--font-serif);
  color: var(--brown);
  font-size: 1rem;
  font-weight: 500;
  border-top: 1px solid rgba(191,155,48,0.1);
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 64px;
  align-items: start;
}

.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 52px;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(191,155,48,0.12);
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { margin-bottom: 24px; }
.form-group label {
  display: block;
  font-weight: 600;
  font-size: 0.82rem;
  color: var(--text);
  margin-bottom: 8px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 20px;
  border: 1.5px solid rgba(191,155,48,0.2);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text);
  background: var(--ivory);
  transition: var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(191,155,48,0.10);
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-light);
  font-size: 0.9rem;
}
.form-group textarea { resize: vertical; min-height: 140px; }

.contact-info-wrap {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.contact-info-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  display: flex;
  gap: 16px;
  align-items: flex-start;
  border-left: 3px solid var(--gold);
  transition: var(--transition);
}
.contact-info-card:hover {
  transform: translateX(4px);
  box-shadow: var(--shadow-md);
}
.contact-info-card .icon {
  width: 48px;
  height: 48px;
  background: rgba(191,155,48,0.1);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-dark);
  font-size: 1.2rem;
  flex-shrink: 0;
}
.contact-info-card h4 {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 6px;
}
.contact-info-card p { color: var(--text); font-size: 0.95rem; }
.contact-info-card a { color: var(--primary); transition: color 0.3s; }
.contact-info-card a:hover { color: var(--saffron-light); }

.map-wrap {
  border-radius: var(--radius-md);
  overflow: hidden;
  height: 240px;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(191,155,48,0.15);
}
.map-wrap iframe { width: 100%; height: 100%; border: none; }

.social-connect {
  background: var(--gradient-hero);
  border-radius: var(--radius-md);
  padding: 28px;
  border: 1px solid rgba(191,155,48,0.15);
}
.social-connect h4 {
  color: var(--gold-light);
  margin-bottom: 18px;
  font-size: 0.82rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 700;
}

.alert {
  padding: 14px 20px;
  border-radius: var(--radius-sm);
  margin-bottom: 20px;
  font-weight: 500;
  font-size: 0.9rem;
}
.alert-success { background: #d4edda; color: #155724; border: 1px solid #c3e6cb; }
.alert-error   { background: #f8d7da; color: #721c24; border: 1px solid #f5c6cb; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-section { position: relative; }

.testimonials-slider {
  position: relative;
  max-width: 820px;
  margin: 0 auto;
  overflow: hidden;
}
.testimonials-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.testimonial-slide {
  min-width: 100%;
  padding: 0 20px;
}
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 48px;
  text-align: center;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(191,155,48,0.12);
  position: relative;
}
.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 16px;
  left: 28px;
  font-size: 4rem;
  color: rgba(191,155,48,0.18);
  font-family: Georgia, serif;
  line-height: 1;
}
.testimonial-stars {
  color: var(--gold);
  font-size: 1.1rem;
  margin-bottom: 20px;
  letter-spacing: 4px;
}
.testimonial-text {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--text);
  line-height: 1.9;
  margin-bottom: 28px;
}
.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}
.testimonial-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--gradient-hero);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1.3rem;
  font-weight: 700;
  flex-shrink: 0;
  overflow: hidden;
}
.testimonial-avatar img { width: 100%; height: 100%; object-fit: cover; }
.testimonial-info .name {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--primary);
}
.testimonial-info .location {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 28px;
}
.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(191,155,48,0.25);
  cursor: pointer;
  transition: var(--transition);
  border: none;
}
.dot.active {
  background: var(--gold);
  width: 24px;
  border-radius: 4px;
}

.slider-nav {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-top: 20px;
}
.slider-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid rgba(191,155,48,0.3);
  background: transparent;
  color: var(--primary);
  font-size: 1rem;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}
.slider-btn:hover {
  background: var(--gradient-gold);
  color: var(--brown-dark);
  border-color: transparent;
}

/* ============================================================
   ADMIN STYLES (unchanged logic, minor visual polish)
   ============================================================ */
.admin-body { background: #f0f2f5; min-height: 100vh; font-family: var(--font-body); }
.admin-sidebar {
  position: fixed;
  left: 0; top: 0; bottom: 0;
  width: 260px;
  background: var(--gradient-hero);
  padding: 0;
  z-index: 100;
  box-shadow: 4px 0 24px rgba(0,0,0,0.3);
  display: flex;
  flex-direction: column;
}
.admin-sidebar-logo {
  padding: 28px 24px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  display: flex;
  align-items: center;
  gap: 12px;
}
.admin-sidebar-logo img { height: 44px; }
.admin-sidebar-logo span {
  font-size: 0.78rem;
  color: var(--gold);
  font-weight: 700;
  font-family: var(--font-head);
  line-height: 1.2;
}
.admin-nav { flex: 1; padding: 16px 0; overflow-y: auto; }
.admin-nav a {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 24px;
  color: rgba(255,255,255,0.6);
  font-size: 0.88rem;
  font-weight: 500;
  transition: var(--transition);
  border-left: 3px solid transparent;
}
.admin-nav a:hover, .admin-nav a.active {
  color: var(--gold);
  background: rgba(255,255,255,0.05);
  border-left-color: var(--gold);
}
.admin-nav a .nav-icon { font-size: 1.1rem; width: 20px; }

.admin-main { margin-left: 260px; min-height: 100vh; }
.admin-topbar {
  background: var(--white);
  padding: 16px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 2px 12px rgba(0,0,0,0.07);
  position: sticky;
  top: 0;
  z-index: 50;
}
.admin-topbar h2 { font-size: 1.2rem; color: var(--primary); font-weight: 700; }
.admin-user {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-muted);
  font-size: 0.88rem;
}
.admin-user .avatar {
  width: 36px;
  height: 36px;
  background: var(--gradient-hero);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-weight: 700;
  font-size: 0.85rem;
}
.admin-content { padding: 32px; }

.stat-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 32px;
}
.stat-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 28px;
  display: flex;
  align-items: center;
  gap: 20px;
  box-shadow: var(--shadow-sm);
  border-left: 4px solid var(--gold);
  transition: var(--transition);
}
.stat-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.stat-card-icon {
  width: 60px; height: 60px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}
.stat-card-icon.events { background: rgba(211,84,0,0.1); color: var(--primary); }
.stat-card-icon.gallery { background: rgba(191,155,48,0.15); color: var(--gold-dark); }
.stat-card-icon.messages { background: rgba(0,100,200,0.1); color: #0064c8; }
.stat-card-num {
  font-family: var(--font-head);
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
}
.stat-card-label { font-size: 0.82rem; color: var(--text-muted); margin-top: 4px; }

.admin-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  margin-bottom: 24px;
}
.admin-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 2px solid rgba(191,155,48,0.12);
}
.admin-card-header h3 { color: var(--primary); font-size: 1.1rem; }

.form-label { display: block; font-weight: 600; font-size: 0.82rem; color: var(--text); margin-bottom: 6px; }
.form-control {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid #e0e0e0;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-family: var(--font-body);
  color: var(--text);
  transition: var(--transition);
  outline: none;
  background: var(--white);
}
.form-control:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(191,155,48,0.10); }
textarea.form-control { resize: vertical; min-height: 120px; }

.btn-admin {
  padding: 12px 28px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-admin-primary { background: var(--gradient-saffron); color: var(--white); }
.btn-admin-primary:hover { transform: translateY(-1px); box-shadow: 0 4px 16px rgba(211,84,0,0.3); }
.btn-admin-gold { background: var(--gradient-gold); color: var(--brown-dark); }
.btn-admin-gold:hover { transform: translateY(-1px); box-shadow: var(--shadow-gold); }
.btn-admin-danger { background: #dc3545; color: var(--white); }
.btn-admin-danger:hover { background: #c82333; }
.btn-admin-sm { padding: 7px 16px; font-size: 0.8rem; }

.data-table { width: 100%; border-collapse: collapse; }
.data-table th {
  background: rgba(191,155,48,0.06);
  padding: 12px 16px;
  text-align: left;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  border-bottom: 2px solid rgba(191,155,48,0.15);
}
.data-table td {
  padding: 14px 16px;
  font-size: 0.88rem;
  color: var(--text);
  border-bottom: 1px solid rgba(191,155,48,0.06);
  vertical-align: middle;
}
.data-table tr:hover td { background: rgba(191,155,48,0.03); }
.data-table td img { width: 50px; height: 50px; object-fit: cover; border-radius: 8px; }

.badge {
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 0.72rem;
  font-weight: 600;
}
.badge-gold { background: rgba(191,155,48,0.15); color: var(--gold-dark); }
.badge-red  { background: rgba(211,84,0,0.10); color: var(--primary); }
.badge-blue { background: rgba(0,100,200,0.10); color: #0064c8; }

.dropzone {
  border: 2px dashed rgba(191,155,48,0.3);
  border-radius: var(--radius-md);
  padding: 60px 40px;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
  background: rgba(191,155,48,0.03);
}
.dropzone:hover, .dropzone.drag-over {
  border-color: var(--primary);
  background: rgba(211,84,0,0.04);
}
.dropzone-icon { font-size: 3rem; color: rgba(211,84,0,0.3); margin-bottom: 16px; }
.dropzone h3 { color: var(--primary); margin-bottom: 8px; font-size: 1.1rem; }
.dropzone p { color: var(--text-muted); font-size: 0.85rem; }

.upload-preview {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  gap: 12px;
  margin-top: 20px;
}
.preview-thumb {
  position: relative;
  border-radius: var(--radius-sm);
  overflow: hidden;
  aspect-ratio: 1;
  background: var(--bg-section);
}
.preview-thumb img { width: 100%; height: 100%; object-fit: cover; }
.preview-remove {
  position: absolute;
  top: 4px; right: 4px;
  background: rgba(220,53,69,0.9);
  color: white;
  border: none;
  border-radius: 50%;
  width: 22px; height: 22px;
  font-size: 0.8rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.admin-login-wrap {
  min-height: 100vh;
  background: var(--gradient-hero);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  position: relative;
  overflow: hidden;
}
.admin-login-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(191,155,48,0.10) 0%, transparent 70%);
}
.login-card {
  background: rgba(255,255,255,0.97);
  border-radius: var(--radius-lg);
  padding: 52px 48px;
  width: 100%;
  max-width: 420px;
  box-shadow: var(--shadow-xl);
  position: relative;
  z-index: 1;
  text-align: center;
}
.login-card .logo { height: 80px; margin: 0 auto 20px; }
.login-card h1 { font-size: 1.5rem; color: var(--primary); margin-bottom: 6px; }
.login-card .sub { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 36px; }

/* ============================================================
   ANIMATIONS
   ============================================================ */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-up:nth-child(1) { transition-delay: 0.05s; }
.fade-up:nth-child(2) { transition-delay: 0.15s; }
.fade-up:nth-child(3) { transition-delay: 0.25s; }
.fade-up:nth-child(4) { transition-delay: 0.35s; }
.fade-up:nth-child(5) { transition-delay: 0.45s; }
.fade-up:nth-child(6) { transition-delay: 0.55s; }

/* ============================================================
   NO-ITEMS PLACEHOLDER
   ============================================================ */
.no-items {
  text-align: center;
  padding: 64px 20px;
  color: var(--text-muted);
}
.no-items .icon { font-size: 3rem; margin-bottom: 16px; opacity: 0.35; }
.no-items p { font-size: 1rem; }

/* ============================================================
   HIDDEN EVENTS (load more)
   ============================================================ */
.hidden-event { display: none; }

/* ============================================================
   GOLD CLASS (used in about page)
   ============================================================ */
.gold {
  background: var(--gradient-gold);
  color: var(--brown-dark) !important;
}

/* ============================================================
   SCROLL INDICATOR
   ============================================================ */
.scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.4);
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  animation: bounce-scroll 2.5s infinite;
}
.scroll-indicator .arrow {
  width: 20px;
  height: 20px;
  border-right: 1.5px solid rgba(191,155,48,0.45);
  border-bottom: 1.5px solid rgba(191,155,48,0.45);
  transform: rotate(45deg);
}
@keyframes bounce-scroll {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(10px); }
}

/* ============================================================
   SECTION — LIGHT BG (existing class)
   ============================================================ */
.section-light { background: var(--bg-section); }


/* Kannada Typography */

body.lang-kn h1,
body.lang-kn h2,
body.lang-kn h3,
body.lang-kn h4,
body.lang-kn h5,
body.lang-kn h6{
    font-family:'Anek Kannada',sans-serif;
    font-weight:700;
    line-height:1.5;
}
body.lang-kn p,
body.lang-kn li,
body.lang-kn span{
    font-family:'Anek Kannada',sans-serif;
    line-height:2;
}
body.lang-kn .nav-links a,
body.lang-kn .mobile-nav a,
body.lang-kn .lang-btn{
    font-family:'Anek Kannada',sans-serif;
}
body.lang-kn .hero-title{
    font-family:'Anek Kannada',sans-serif;
    font-weight:700;
    line-height:1.35;
}

body.lang-kn .about-content p{
    font-size:18px;
    line-height:2.1;
}

.admin-video-grid{
    display:grid;
    grid-template-columns:repeat(auto-fill,minmax(350px,1fr));
    gap:25px;
    margin-top:30px;
}

.admin-video-card{
    background:#fff;
    border-radius:18px;
    overflow:hidden;
    border:1px solid #e9e9e9;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
}

.admin-video-player video{
    width:100%;
    aspect-ratio:9/16;
    object-fit:contain;
    background:#000;
}

.admin-video-content{
    padding:18px;
}

.admin-video-content h3{
    margin-bottom:10px;
    color:#6D3E2A;
}

.admin-video-content p{
    color:#666;
    line-height:1.6;
}

.admin-video-actions{
    display:flex;
    gap:10px;
    margin-top:18px;
}

.btn-edit{
    background:#BF9B30;
    color:#fff;
    border:none;
    padding:10px 18px;
    border-radius:8px;
    cursor:pointer;
}

.btn-delete{
    background:#dc3545;
    color:#fff;
    text-decoration:none;
    padding:10px 18px;
    border-radius:8px;
}

/* ==========================
   ADMIN PANEL LAYOUT
========================== */

.admin-body{
    margin:0;
    background:#f8f4ea;
    display:flex;
    min-height:100vh;
    font-family:'Poppins',sans-serif;
}

/* Sidebar */

.admin-sidebar{
    width:280px;
    background:#6D3E2A;
    color:#fff;
    min-height:100vh;
    position:fixed;
    left:0;
    top:0;
}

.admin-sidebar-logo{
    padding:30px;
    text-align:center;
    border-bottom:1px solid rgba(255,255,255,.1);
}

.admin-sidebar-logo img{
    width:70px;
    margin-bottom:15px;
}

.admin-sidebar-logo span{
    display:block;
    font-size:20px;
    font-weight:700;
}

.admin-sidebar-logo small{
    color:#F5E6CC;
}

.admin-nav{
    padding:20px;
}

.admin-nav a{
    display:flex;
    align-items:center;
    gap:12px;
    padding:15px 18px;
    color:#fff;
    text-decoration:none;
    border-radius:12px;
    margin-bottom:10px;
    transition:.3s;
}

.admin-nav a:hover{
    background:#D35400;
}

.admin-nav a.active{
    background:#D35400;
}

/* Main */

.admin-main{
    margin-left:280px;
    width:calc(100% - 280px);
}

/* Topbar */

.admin-topbar{
    background:#fff;
    padding:25px 40px;
    box-shadow:0 2px 20px rgba(0,0,0,.05);
}

.admin-topbar h2{
    margin:0;
    color:#6D3E2A;
}

/* Content */

.admin-content{
    padding:40px;
}

.admin-card{
    background:#fff;
    border-radius:20px;
    padding:35px;
    box-shadow:0 15px 35px rgba(0,0,0,.08);
}

.admin-card-header{
    margin-bottom:25px;
}

.admin-card-header h3{
    margin:0;
    color:#6D3E2A;
}

/* Form */

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

.form-group label{
    display:block;
    margin-bottom:10px;
    font-weight:600;
    color:#6D3E2A;
}

.admin-textarea{
    width:100%;
    min-height:180px;
    border:2px solid #e5e5e5;
    border-radius:15px;
    padding:15px;
    font-size:15px;
    resize:vertical;
}

.admin-textarea:focus{
    outline:none;
    border-color:#D35400;
}

.admin-btn{
    background:#D35400;
    color:#fff;
    border:none;
    padding:14px 30px;
    border-radius:12px;
    font-size:16px;
    cursor:pointer;
    font-weight:600;
}

.admin-btn:hover{
    background:#BF9B30;
}

/* Alert */

.admin-alert{
    background:#dff6e3;
    color:#1b6d32;
    padding:15px 20px;
    border-radius:12px;
    margin-bottom:25px;
}

/* Spiritual Message Inputs */

.admin-input,
.admin-textarea,
.admin-file{
    width:100%;
    border:2px solid #e6e2d9;
    border-radius:15px;
    padding:15px;
    font-size:15px;
    transition:.3s;
}

.admin-input:focus,
.admin-textarea:focus{
    border-color:#D35400;
    outline:none;
}

.admin-textarea{
    min-height:180px;
    resize:vertical;
}

.upload-label{
    display:block;
    margin-bottom:10px;
    font-weight:600;
    color:#6D3E2A;
}

.image-preview{
    margin-top:30px;
}

.image-preview h4{
    margin-bottom:15px;
    color:#6D3E2A;
}

.image-preview img{
    width:280px;
    border-radius:15px;
    border:3px solid #BF9B30;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
}

.hero-bg{
    position:absolute;
    inset:0;

    background-image:url('../assets/background-image.jpeg');
    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;
    margin-top: 50px;

    z-index:1;
}
.admin-btn-danger{
    background:#fff;
    color:#000;
    border:none;
}

.admin-btn-danger:hover{
    background:#b91c1c;
}
.admin-video-grid{
display:grid;
grid-template-columns:repeat(auto-fill,minmax(350px,1fr));
gap:25px;
margin-top:25px;
}

.admin-video-card{
background:#fff;
border-radius:18px;
overflow:hidden;
box-shadow:0 10px 30px rgba(0,0,0,.08);
border:1px solid #eee;
}

.admin-video-card video{
width:100%;
height:220px;
object-fit:cover;
background:#000;
}

.admin-video-info{
padding:20px;
}

.admin-video-info h4{
margin-bottom:10px;
font-size:18px;
}

.admin-video-info p{
color:#666;
line-height:1.6;
margin-bottom:15px;
}

.admin-video-buttons{
display:flex;
gap:10px;
}

.btn-edit{
background:#BF9B30;
color:#fff;
border:none;
padding:10px 18px;
border-radius:8px;
cursor:pointer;
}

.btn-delete{
background:#dc3545;
color:#fff;
padding:10px 18px;
border-radius:8px;
text-decoration:none;
}

/* Global Devotees Section */

.about-biography .about-content p{
    margin-bottom:24px;
}

/* Kannada Font */

html[lang="kn"] .about-biography .about-content,
html[lang="kn"] .about-biography .about-content h2,
html[lang="kn"] .about-biography .about-content p{
    font-family:'Anek Kannada', sans-serif;
}

/* Better spacing */

.about-biography{
    overflow:hidden;
}

.about-biography .about-image img{
    min-height:450px;
    object-fit:cover;
}

.meaning-title{
  margin:35px 0 18px;
  color:var(--primary);
  font-size:1.5rem;
  font-weight:700;
}

.about-content p{
  margin-bottom:24px;
  text-align:justify;
}

html[lang="kn"] .about-content,
html[lang="kn"] .about-content p,
html[lang="kn"] .about-content h2,
html[lang="kn"] .about-content h3,
html[lang="kn"] .meaning-box{
    font-family:'Anek Kannada', sans-serif;
}

html[lang="kn"] .about-content p{
    line-height:2.1;
    font-size:1.08rem;
}

.meaning-box div{
    padding:16px 0;
    line-height:1.8;
}

.about-image{
    display:flex;
    justify-content:center;
    align-items:center;
}

.about-image img{
    max-width:450px;
    width:100%;
}

@media (max-width: 991px){

  .about-row{
      grid-template-columns:1fr;
      gap:40px;
  }

  .about-image{
      order:-1;
  }

  .about-content h2{
      font-size:2.2rem;
  }

}