/* ---------- PREMIUM VARIABLES ---------- */
:root {
  --saffron: #FF9933;
  --deep-gold: #D4AF37;
  --dark-maroon: #5A0E0E;
  --soft-cream: #FFF8E7;
  --cream-dark: #FFEBCD;
  --gold-light: #F0E68C;
  --maroon-light: #8B1E1E;
  --shadow-divine: 0 20px 40px -15px rgba(90, 14, 14, 0.15);
  --shadow-gold: 0 10px 30px -5px rgba(212, 175, 55, 0.3);
  --border-premium: 1px solid rgba(212, 175, 55, 0.3);
  --transition-smooth: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

/* ---------- GLOBAL STYLES ---------- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  background-color: var(--soft-cream);
  color: #2C1810;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  letter-spacing: -0.02em;
}
.navbar-brand {
  font-weight: 700;
  font-size: 1.2rem;
}

.navbar-logo {
  height: 70px;
  width: 70px;
  margin-right: 12px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center;
  filter: brightness(1.15) contrast(1.3) saturate(1.1);
  mix-blend-mode: multiply;
  flex-shrink: 0;
}

.section-title {
  font-size: 3rem;
  font-weight: 800;
  color: var(--dark-maroon);
  position: relative;
  margin-bottom: 1.5rem;
}

.section-subtitle {
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--deep-gold);
  margin-bottom: 0.5rem;
}

.divider {
  width: 100px;
  height: 4px;
  background: linear-gradient(90deg, var(--deep-gold), var(--saffron));
  margin: 25px 0 35px;
  border-radius: 4px;
}

.divider-center {
  margin-left: auto;
  margin-right: auto;
}

/* ---------- PREMIUM BUTTONS ---------- */
.btn-glow {
  background: linear-gradient(145deg, var(--deep-gold), #C6A01E);
  border: none;
  color: white;
  font-weight: 600;
  padding: 14px 36px;
  border-radius: 50px;
  box-shadow: 0 4px 25px rgba(212, 175, 55, 0.5);
  transition: var(--transition-smooth);
  border: 1px solid rgba(255, 255, 255, 0.4);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.95rem;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.btn-glow::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -60%;
  width: 200%;
  height: 200%;
  background: rgba(255, 255, 255, 0.2);
  transform: rotate(30deg);
  transition: var(--transition-smooth);
}

.btn-glow:hover::after {
  left: 100%;
}

.btn-glow:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(212, 175, 55, 0.7);
  color: white;
}

.btn-outline-gold {
  background: transparent;
  border: 2px solid var(--deep-gold);
  color: var(--dark-maroon);
  padding: 12px 32px;
  border-radius: 50px;
  font-weight: 600;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
  z-index: 1;
  cursor: pointer;
}

.btn-outline-gold::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--deep-gold);
  transition: var(--transition-smooth);
  z-index: -1;
}

.btn-outline-gold:hover::before {
  left: 0;
}

.btn-outline-gold:hover {
  color: white;
  border-color: var(--deep-gold);
}

/* ---------- NAVIGATION ---------- */
/* ========== PREMIUM NAVBAR WITH GRADIENT & PATTERNS ========== */
.navbar {
  background: linear-gradient(135deg, 
    #FF9933 0%, 
    #FFB347 20%, 
    #D4AF37 50%, 
    #FFA500 80%, 
    #FF8C00 100%);
  backdrop-filter: blur(20px);
  padding: 16px 0;
  box-shadow: 
    0 15px 50px rgba(90, 14, 14, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.3),
    0 0 80px rgba(212, 175, 55, 0.4);
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

/* Premium Pattern Overlay */
.navbar::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    repeating-linear-gradient(90deg, transparent, transparent 2px, rgba(212, 175, 55, 0.05) 2px, rgba(212, 175, 55, 0.05) 4px),
    repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(255, 255, 255, 0.03) 2px, rgba(255, 255, 255, 0.03) 4px);
  pointer-events: none;
  z-index: 0;
}

/* Traditional Indian Pattern Overlay */
.navbar::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(circle at 20% 50%, rgba(212, 175, 55, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(255, 153, 51, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 40% 20%, rgba(244, 164, 96, 0.08) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}

.navbar .container {
  position: relative;
  z-index: 2;
}

.navbar.scrolled {
  padding: 10px 0;
  box-shadow: 
    0 20px 60px rgba(90, 14, 14, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.2),
    0 0 100px rgba(212, 175, 55, 0.5);
}

.navbar-brand {
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-size: 1.9rem;
  color: #FFFFFF !important;
  letter-spacing: -0.5px;
  text-shadow: 
    2px 2px 4px rgba(90, 14, 14, 0.3),
    0 0 20px rgba(244, 164, 96, 0.4);
  display: flex;
  align-items: center;
  gap: 12px;
  position: relative;
  z-index: 3;
  transition: var(--transition-smooth);
}

.navbar-brand:hover {
  text-shadow: 
    2px 2px 8px rgba(90, 14, 14, 0.4),
    0 0 30px rgba(244, 164, 96, 0.6),
    0 0 20px rgba(212, 175, 55, 0.5);
}

.nav-link {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  font-size: 1.05rem;
  color: #FFFFFF !important;
  margin: 0 18px;
  position: relative;
  padding: 10px 0 !important;
  letter-spacing: 0.5px;
  text-shadow: 1px 1px 2px rgba(90, 14, 14, 0.2);
  transition: var(--transition-smooth);
  z-index: 3;
}

.nav-link::before {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, #FFD700, #FFA500);
  transition: width 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  box-shadow: 0 0 15px rgba(255, 215, 0, 0.6);
}

.nav-link:hover {
  color: #FFF8E7 !important;
  text-shadow: 
    2px 2px 4px rgba(90, 14, 14, 0.3),
    0 0 20px rgba(255, 215, 0, 0.6);
}

.nav-link:hover::before {
  width: 100%;
}

.nav-link.active::before {
  width: 100%;
  box-shadow: 0 0 20px rgba(255, 215, 0, 0.8);
}

/* ---------- CARDS ---------- */
.premium-card {
  background: white;
  border-radius: 30px;
  padding: 30px;
  box-shadow: var(--shadow-divine);
  transition: var(--transition-smooth);
  border: var(--border-premium);
  height: 100%;
  position: relative;
  overflow: hidden;
}

.premium-card::before {
  content: '🕉';
  position: absolute;
  bottom: -20px;
  right: -20px;
  font-size: 120px;
  opacity: 0.03;
  color: var(--dark-maroon);
}

.premium-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 50px -15px rgba(90, 14, 14, 0.2);
}

/* ---------- FOOTER ---------- */
.footer {
  background: var(--dark-maroon);
  color: #FFE4B5;
  padding: 70px 0 30px;
  position: relative;
  margin-top: 50px;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, var(--saffron), var(--deep-gold), var(--saffron));
}

.footer a {
  color: var(--deep-gold);
  text-decoration: none;
  transition: var(--transition-smooth);
}

.footer a:hover {
  color: var(--saffron);
  padding-left: 5px;
}

/* ---------- ANIMATED BACKGROUND ॐ ---------- */
.om-element {
  position: absolute;
  font-family: 'Playfair Display', serif;
  color: var(--dark-maroon);
  pointer-events: none;
  user-select: none;
  mix-blend-mode: multiply;
  will-change: transform, opacity;
}

.om-hero {
  font-size: 20rem;
  opacity: 0.08;
  animation: floatOm 8s ease-in-out infinite, pulseOm 6s ease-in-out infinite;
}

.om-section-1 {
  font-size: 8rem;
  opacity: 0.04;
  animation: floatOm2 10s ease-in-out infinite, pulseOm2 7s ease-in-out infinite;
}

.om-section-2 {
  font-size: 6rem;
  opacity: 0.03;
  animation: floatOm3 12s ease-in-out infinite, pulseOm3 8s ease-in-out infinite;
}

.om-section-3 {
  font-size: 7rem;
  opacity: 0.035;
  animation: floatOm4 11s ease-in-out infinite, pulseOm2 7s ease-in-out infinite;
}

@keyframes floatOm {
  0% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-30px) rotate(2deg); }
  100% { transform: translateY(0px) rotate(0deg); }
}

@keyframes floatOm2 {
  0% { transform: translateY(0px) rotate(-1deg); }
  50% { transform: translateY(-40px) rotate(1deg); }
  100% { transform: translateY(0px) rotate(-1deg); }
}

@keyframes floatOm3 {
  0% { transform: translateY(20px) rotate(1deg); }
  50% { transform: translateY(-20px) rotate(-2deg); }
  100% { transform: translateY(20px) rotate(1deg); }
}

@keyframes floatOm4 {
  0% { transform: translateY(-10px) rotate(0.5deg); }
  50% { transform: translateY(20px) rotate(-1.5deg); }
  100% { transform: translateY(-10px) rotate(0.5deg); }
}

@keyframes pulseOm {
  0% { opacity: 0.04; }
  50% { opacity: 0.12; }
  100% { opacity: 0.04; }
}

@keyframes pulseOm2 {
  0% { opacity: 0.02; }
  50% { opacity: 0.08; }
  100% { opacity: 0.02; }
}

@keyframes pulseOm3 {
  0% { opacity: 0.015; }
  50% { opacity: 0.06; }
  100% { opacity: 0.015; }
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 992px) {
  .section-title { font-size: 2.5rem; }
  .navbar-brand { font-size: 1.4rem; }
  .nav-link { margin: 0 10px; font-size: 1rem; }
}

@media (max-width: 768px) {
  .section-title { font-size: 2rem; }
  .btn-glow, .btn-outline-gold { padding: 10px 24px; }
  .om-hero { font-size: 12rem; }
  .om-section-1 { font-size: 5rem; }
  .om-section-2 { font-size: 4rem; }
  
  /* Navbar responsive */
  .navbar { padding: 12px 0; }
  .navbar-brand { font-size: 1.2rem; }
  .nav-link { margin: 0 8px; font-size: 0.95rem; }
}

@media (max-width: 480px) {
  .navbar-brand { font-size: 1rem; gap: 6px; }
  .navbar-brand img { height: 35px; width: 35px; }
  .nav-link { margin: 0 4px; font-size: 0.85rem; }
}

@media (prefers-reduced-motion: reduce) {
  .om-element { animation: none !important; }
  .nav-link::before { transition: none; }
}

/* ---------- DIVYA AVATARS (Zig-Zag) ---------- */
/* Semantic, reusable classes for elegant avatar rows */
.divya-avatars { background: transparent; }

.avatar-row {
  display: flex;
  align-items: center;
  gap: 36px;
  margin: 40px 0;
}
.avatar-row.reverse { flex-direction: row-reverse; }

.avatar-image {
  /* control visual crop and size for consistency */
  flex: 0 0 40%;
  aspect-ratio: 4 / 3;
  max-height: 340px; /* prevent overly tall images */
  min-height: 180px;
  border-radius: 18px;
  background: linear-gradient(180deg, #fffefc, var(--soft-cream));
  border: 3px solid rgba(212,175,55,0.5); /* prominent golden border */
  /* always-visible golden glow */
  box-shadow: 0 16px 30px rgba(90,14,14,0.06), 0 0 50px rgba(212,175,55,0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: transform 400ms ease, box-shadow 400ms ease, filter 400ms ease;
}
.avatar-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* keep heads intact: align image to top so cropping removes bottom only */
  object-position: center top;
  display: block;
  border-radius: inherit;
}

/* Per-image focal position tweaks */
/* Maa Parvati (row 3): lower the image to reveal more body */
.avatar-row:nth-child(3) .avatar-image img { object-position: center 8%; }
/* Mahadev (row 4): raise the image to crop more from bottom */
.avatar-row:nth-child(4) .avatar-image img { object-position: center 18%; }
.avatar-image::after {
  /* thin highlight to provide subtle 3D surface */
  content: '';
  position: absolute;
  width: 60%;
  height: 20%;
  top: 8%;
  left: 12%;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(255,255,255,0.55), rgba(255,255,255,0));
  transform: rotate(-6deg);
  opacity: 0.6;
}

.avatar-content {
  flex: 1 1 48%;
}



.avatar-title {
  font-family: 'Playfair Display', serif;
  color: var(--dark-maroon);
  font-size: 1.8rem;
  margin-bottom: 0.6rem;
}
.avatar-text {
  font-family: 'Poppins', sans-serif;
  color: #3a2a24;
  line-height: 1.6;
}

/* Hover: lift + scale + enhanced golden glow */
.avatar-image:hover {
  transform: translateY(-6px) scale(1.03);
  box-shadow: 0 28px 60px rgba(90,14,14,0.12), 0 0 60px rgba(212,175,55,0.4);
  filter: drop-shadow(0 10px 18px rgba(212,175,55,0.08));
}

/* animations are provided by AOS via data-aos attributes */

/* Decorative vertical line removed as requested */

/* Responsive adjustments */
@media (max-width: 992px) {
  .avatar-row { gap: 22px; margin: 28px 0; }
  .avatar-image { min-height: 200px; border-radius: 14px; aspect-ratio: 4 / 3; max-height: 300px; flex: 0 0 45%; }
}

@media (max-width: 768px) {
  .avatar-row, .avatar-row.reverse { flex-direction: column; transform: translateY(8px); }
  .avatar-row { gap: 16px; }
  .avatar-image { width: 100%; flex-basis: auto; min-height: 160px; aspect-ratio: auto; max-height: none; }
  .avatar-content { width: 100%; }
  .avatar-row.in-view { transform: translateY(0); }
}

@media (prefers-reduced-motion: reduce) {
  .avatar-row, .avatar-image { transition: none !important; animation: none !important; }
}


/* ========== DAILY DARSHAN TIMINGS SECTION ========== */

.darshan-section {
  background-color: var(--soft-cream);
  position: relative;
}

/* Darshan Section Title */
.darshan-title {
  font-size: 3rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--deep-gold) 0%, var(--saffron) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  letter-spacing: -0.5px;
  text-shadow: 0 2px 10px rgba(212, 175, 55, 0.15);
  filter: drop-shadow(0 2px 4px rgba(212, 175, 55, 0.1));
  margin-bottom: 1.5rem;
  position: relative;
  display: inline-block;
  width: 100%;
}

.darshan-bell-icon {
  margin-right: 12px;
  color: var(--saffron);
  animation: bell-swing 2s ease-in-out infinite;
}

@keyframes bell-swing {
  0%, 100% { transform: rotate(0deg); }
  25% { transform: rotate(-8deg); }
  75% { transform: rotate(8deg); }
}

/* Darshan Cards Grid */
.darshan-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin: 50px 0;
}

/* Darshan Card */
.darshan-card {
  background: linear-gradient(135deg, #FFFBF0 0%, var(--soft-cream) 100%);
  border: 3px solid var(--deep-gold);
  border-radius: 25px;
  padding: 35px 25px;
  text-align: center;
  box-shadow: 0 10px 35px rgba(212, 175, 55, 0.2);
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.darshan-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.darshan-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 25px 60px rgba(212, 175, 55, 0.35), 0 0 40px rgba(212, 175, 55, 0.2);
  border-color: var(--saffron);
  background: linear-gradient(135deg, #FFFEF9 0%, #FFFBF0 100%);
}

.darshan-card:hover::before {
  opacity: 1;
}

/* Card Icon */
.darshan-card-icon {
  font-size: 3rem;
  margin-bottom: 20px;
  display: inline-block;
  animation: icon-float 3s ease-in-out infinite;
}

@keyframes icon-float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}

.darshan-card:hover .darshan-card-icon {
  animation: icon-bounce 0.6s ease;
}

@keyframes icon-bounce {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-15px); }
}

/* Card Heading */
.darshan-card-heading {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--dark-maroon);
  margin-bottom: 15px;
  letter-spacing: -0.3px;
  font-family: 'Playfair Display', serif;
}

/* Darshan Time */
.darshan-time {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--saffron);
  margin: 20px 0;
  padding: 15px;
  background: linear-gradient(135deg, rgba(255, 153, 51, 0.1) 0%, rgba(212, 175, 55, 0.1) 100%);
  border-radius: 12px;
  letter-spacing: 0.5px;
  font-family: 'Playfair Display', serif;
}

/* Darshan Details List */
.darshan-details {
  list-style: none;
  padding: 0;
  margin: 25px 0 0 0;
  text-align: left;
}

.darshan-details li {
  font-size: 0.95rem;
  color: #5A3A2A;
  padding: 8px 0 8px 25px;
  position: relative;
  line-height: 1.6;
  font-weight: 500;
}

.darshan-details li::before {
  content: '✦';
  position: absolute;
  left: 0;
  color: var(--deep-gold);
  font-size: 0.8rem;
}

/* Special Note */
.darshan-note {
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(255, 153, 51, 0.1) 100%);
  border: 2px solid var(--deep-gold);
  border-radius: 15px;
  padding: 25px 30px;
  text-align: center;
  margin-top: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.15);
}

.darshan-note i {
  font-size: 1.8rem;
  color: var(--saffron);
  flex-shrink: 0;
}

.darshan-note p {
  margin: 0;
  color: #5A3A2A;
  font-weight: 500;
  font-size: 1rem;
  letter-spacing: 0.3px;
}

/* ========== RESPONSIVE DARSHAN SECTION ========== */

/* Tablet (768px - 1024px) */
@media (max-width: 1024px) {
  .darshan-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }

  .darshan-title {
    font-size: 2.5rem;
  }

  .darshan-card {
    padding: 30px 20px;
  }

  .darshan-card-icon {
    font-size: 2.5rem;
  }

  .darshan-card-heading {
    font-size: 1.2rem;
  }

  .darshan-time {
    font-size: 1.4rem;
  }
}

/* Mobile (up to 768px) */
@media (max-width: 768px) {
  .darshan-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .darshan-title {
    font-size: 2rem;
  }

  .darshan-card {
    padding: 25px 20px;
    border: 2px solid var(--deep-gold);
  }

  .darshan-card-icon {
    font-size: 2.2rem;
    margin-bottom: 15px;
  }

  .darshan-card-heading {
    font-size: 1.1rem;
    margin-bottom: 12px;
  }

  .darshan-time {
    font-size: 1.3rem;
    padding: 12px;
    margin: 15px 0;
  }

  .darshan-details li {
    font-size: 0.9rem;
    padding: 6px 0 6px 20px;
  }

  .darshan-note {
    flex-direction: column;
    padding: 20px 20px;
    gap: 10px;
  }

  .darshan-note i {
    font-size: 1.5rem;
  }

  .darshan-note p {
    font-size: 0.95rem;
  }
}

/* Small Mobile (up to 480px) */
@media (max-width: 480px) {
  .darshan-section {
    padding: 40px 0 !important;
  }

  .section-subtitle {
    font-size: 0.85rem;
  }

  .darshan-title {
    font-size: 1.6rem;
    margin-bottom: 1rem;
  }

  .darshan-bell-icon {
    margin-right: 8px;
  }

  .divider {
    width: 80px;
    height: 3px;
    margin: 20px auto 25px;
  }

  .darshan-grid {
    gap: 15px;
    margin: 35px 0;
  }

  .darshan-card {
    padding: 20px 15px;
    border-radius: 15px;
    border: 2px solid var(--deep-gold);
  }

  .darshan-card-icon {
    font-size: 2rem;
    margin-bottom: 10px;
  }

  .darshan-card-heading {
    font-size: 1rem;
    margin-bottom: 10px;
  }

  .darshan-time {
    font-size: 1.1rem;
    padding: 10px;
    margin: 12px 0;
  }

  .darshan-details {
    margin: 15px 0 0 0;
  }

  .darshan-details li {
    font-size: 0.85rem;
    padding: 5px 0 5px 18px;
  }

  .darshan-note {
    padding: 15px 15px;
    gap: 8px;
    margin-top: 35px;
  }

  .darshan-note i {
    font-size: 1.3rem;
  }

  .darshan-note p {
    font-size: 0.9rem;
    line-height: 1.5;
  }
}


/* ========== PREMIUM HANGING TEMPLE BELLS WITH CINEMATIC LIGHTING ========== */

/* Mobile responsive bells */
@media (max-width: 768px) {
  .nav-bell-left {
    left: 10px;
  }

  .nav-bell-right {
    right: 10px;
  }

  .bell-svg {
    width: 40px;
    height: 52px;
  }

  .bell-chain {
    height: 25px;
    top: -25px;
  }
}

@media (max-width: 480px) {
  .nav-bell-left {
    left: 5px;
  }

  .nav-bell-right {
    right: 5px;
  }

  .bell-svg {
    width: 35px;
    height: 45px;
  }

  .bell-chain {
    height: 20px;
    top: -20px;
  }
}


/* ========== PREMIUM HERO SECTION UPGRADE ========== */

.hero-section {
  background-color: #fdf7e6;
  position: relative;
  min-height: 100vh;
}

/* Radial Glow Halo Behind Heading */
.hero-glow-halo {
  position: absolute;
  top: 50%;
  left: 5%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.15) 0%, rgba(212, 175, 55, 0.05) 40%, transparent 70%);
  border-radius: 50%;
  filter: blur(40px);
  animation: glow-pulse-large 6s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
}

@keyframes glow-pulse-large {
  0%, 100% {
    opacity: 0.8;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.1);
  }
}

/* Faint Om/Mandala Texture Overlay */
.hero-texture-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(circle at 20% 50%, rgba(255, 153, 51, 0.03) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(212, 175, 55, 0.02) 0%, transparent 50%),
    radial-gradient(circle at 40% 80%, rgba(212, 175, 55, 0.03) 0%, transparent 50%);
  opacity: 0.5;
  pointer-events: none;
  z-index: 0;
}

/* Hero Content Fade-In Animation */
.hero-content-fade {
  animation: fadeInUp 1s ease-out forwards;
  opacity: 0;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Hero Subtitle */
.hero-subtitle {
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--deep-gold);
  margin-bottom: 1rem;
  animation: fadeInUp 1.2s ease-out forwards;
  opacity: 0;
  animation-delay: 0.1s;
}

/* Hero Title with Halo Glow */
.hero-heading-wrapper {
  position: relative;
  display: inline-block;
  margin-bottom: 1rem;
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: 5.5rem;
  font-weight: 900;
  color: var(--dark-maroon);
  line-height: 1.05;
  letter-spacing: -1.5px;
  text-shadow: 0 2px 10px rgba(212, 175, 55, 0.2);
  filter: drop-shadow(0 4px 8px rgba(212, 175, 55, 0.15));
  margin: 0;
  animation: fadeInUp 1.4s ease-out forwards;
  opacity: 0;
  animation-delay: 0.2s;
}

/* Hero Tagline */
.hero-tagline {
  font-family: 'Poppins', sans-serif;
  font-size: 1.4rem;
  font-weight: 300;
  color: #6B4F3C;
  line-height: 1.7;
  margin: 1.5rem 0 0 0;
  letter-spacing: 0.3px;
  animation: fadeInUp 1.6s ease-out forwards;
  opacity: 0;
  animation-delay: 0.3s;
}

/* Hero Buttons Container */
.hero-buttons {
  animation: fadeInUp 1.8s ease-out forwards;
  opacity: 0;
  animation-delay: 0.4s;
}

/* Premium Primary Button */
.btn-glow-premium {
  background: linear-gradient(145deg, var(--deep-gold), #C6A01E);
  border: 2px solid rgba(212, 175, 55, 0.5);
  color: white;
  font-weight: 700;
  padding: 16px 42px;
  border-radius: 50px;
  box-shadow: 0 8px 30px rgba(212, 175, 55, 0.35);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  text-transform: uppercase;
  letter-spacing: 1.2px;
  font-size: 0.95rem;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  font-family: 'Poppins', sans-serif;
}

.btn-glow-premium::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -60%;
  width: 200%;
  height: 200%;
  background: rgba(255, 255, 255, 0.25);
  transform: rotate(30deg);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.btn-glow-premium:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 50px rgba(212, 175, 55, 0.5), 0 0 30px rgba(255, 153, 51, 0.25);
  color: white;
  border-color: var(--saffron);
}

.btn-glow-premium:hover::before {
  left: 100%;
}

/* Premium Secondary Button */
.btn-glow-secondary {
  background: linear-gradient(145deg, rgba(212, 175, 55, 0.1), rgba(255, 153, 51, 0.08));
  border: 2.5px solid var(--deep-gold);
  color: var(--dark-maroon);
  font-weight: 700;
  padding: 16px 42px;
  border-radius: 50px;
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.2);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  text-transform: uppercase;
  letter-spacing: 1.2px;
  font-size: 0.95rem;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  font-family: 'Poppins', sans-serif;
  z-index: 1;
}

.btn-glow-secondary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(145deg, var(--deep-gold), #C6A01E);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  z-index: -1;
}

.btn-glow-secondary:hover::before {
  left: 0;
}

.btn-glow-secondary:hover {
  color: white;
  border-color: var(--saffron);
  transform: translateY(-6px);
  box-shadow: 0 15px 50px rgba(212, 175, 55, 0.45), 0 0 25px rgba(255, 153, 51, 0.2);
}

/* Responsive Hero Section */
@media (max-width: 1024px) {
  .hero-title {
    font-size: 4.5rem;
  }

  .hero-tagline {
    font-size: 1.2rem;
  }

  .hero-glow-halo {
    width: 450px;
    height: 450px;
    left: -50px;
  }
}

@media (max-width: 768px) {
  .hero-section {
    padding: 60px 0 80px !important;
    min-height: auto;
  }

  .hero-title {
    font-size: 3.5rem;
    letter-spacing: -0.8px;
  }

  .hero-subtitle {
    font-size: 0.85rem;
    letter-spacing: 2px;
  }

  .hero-tagline {
    font-size: 1.1rem;
    margin: 1rem 0 0 0;
  }

  .hero-buttons {
    margin-top: 2rem;
  }

  .btn-glow-premium,
  .btn-glow-secondary {
    padding: 14px 32px;
    font-size: 0.9rem;
    letter-spacing: 0.8px;
  }

  .hero-glow-halo {
    width: 350px;
    height: 350px;
    left: -80px;
    top: 40%;
  }
}

@media (max-width: 480px) {
  .hero-section {
    padding: 50px 0 60px !important;
  }

  .hero-title {
    font-size: 2.5rem;
    line-height: 1.1;
    letter-spacing: -0.5px;
  }

  .hero-subtitle {
    font-size: 0.75rem;
    letter-spacing: 2px;
    margin-bottom: 0.8rem;
  }

  .hero-tagline {
    font-size: 1rem;
    margin: 0.8rem 0 0 0;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 1rem;
    margin-top: 1.5rem;
  }

  .btn-glow-premium,
  .btn-glow-secondary {
    width: 100%;
    padding: 12px 24px;
    font-size: 0.85rem;
    letter-spacing: 0.6px;
  }

  .hero-glow-halo {
    width: 250px;
    height: 250px;
    left: -100px;
    top: 50%;
  }
}


/* ========== SPIRITUAL EXPERIENCE SECTION ========== */

.spiritual-section {
  background-color: var(--soft-cream);
  position: relative;
}

/* Subtle Radial Glow Background */
.spiritual-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.08) 0%, rgba(212, 175, 55, 0.02) 40%, transparent 70%);
  border-radius: 50%;
  filter: blur(50px);
  pointer-events: none;
  z-index: 0;
}

/* Spiritual Description */
.spiritual-description {
  font-size: 1.15rem;
  font-weight: 400;
  color: #5A3A2A;
  line-height: 1.9;
  letter-spacing: 0.4px;
  text-align: center;
}

/* Spiritual Features Grid */
.spiritual-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
  margin-top: 50px;
}

/* Spiritual Card */
.spiritual-card {
  background: linear-gradient(135deg, #FFFBF5 0%, var(--soft-cream) 100%);
  border: 2px solid var(--deep-gold);
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  box-shadow: 0 8px 20px rgba(212, 175, 55, 0.15);
  position: relative;
  overflow: hidden;
}

.spiritual-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.spiritual-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 45px rgba(212, 175, 55, 0.3);
  border-color: var(--saffron);
}

.spiritual-card:hover::before {
  opacity: 1;
}

/* Spiritual Card Icon */
.spiritual-card-icon {
  font-size: 3rem;
  margin-bottom: 20px;
  display: inline-block;
}

/* Spiritual Card Title */
.spiritual-card-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--dark-maroon);
  margin-bottom: 15px;
  font-family: 'Playfair Display', serif;
  letter-spacing: -0.3px;
}

/* Spiritual Card Text */
.spiritual-card-text {
  font-size: 0.95rem;
  color: #6B4F3C;
  line-height: 1.7;
  margin: 0;
}

/* Responsive Spiritual Section */
@media (max-width: 1024px) {
  .spiritual-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }

  .spiritual-glow {
    width: 600px;
    height: 600px;
  }
}

@media (max-width: 768px) {
  .spiritual-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .spiritual-description {
    font-size: 1rem;
  }

  .spiritual-card {
    padding: 30px 20px;
    border-radius: 15px;
  }

  .spiritual-card-icon {
    font-size: 2.5rem;
  }

  .spiritual-card-title {
    font-size: 1.2rem;
  }

  .spiritual-glow {
    width: 400px;
    height: 400px;
  }
}


/* ========== PRIEST INFORMATION SECTION ========== */

.priest-section {
  background-color: #FFFFFF;
  position: relative;
}

/* Priests Grid */
.priests-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 50px;
}

/* Priest Card */
.priest-card {
  background: linear-gradient(135deg, #FFFBF5 0%, #FFFEF9 100%);
  border: 3px solid var(--deep-gold);
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  position: relative;
  overflow: hidden;
}

.priest-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, rgba(212, 175, 55, 0.15) 0%, transparent 70%);
  transition: left 0.4s ease;
  pointer-events: none;
}

.priest-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 25px 60px rgba(212, 175, 55, 0.35), 0 0 40px rgba(212, 175, 55, 0.15);
  border-color: var(--saffron);
}

.priest-card:hover::after {
  left: 0;
}

/* Priest Image Wrapper */
.priest-image-wrapper {
  margin-bottom: 25px;
}

.priest-image-placeholder {
  width: 120px;
  height: 120px;
  margin: 0 auto;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.15) 0%, rgba(255, 153, 51, 0.1) 100%);
  border: 3px solid var(--deep-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.2);
}

/* Priest Name */
.priest-name {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--dark-maroon);
  margin: 15px 0 8px 0;
  font-family: 'Playfair Display', serif;
  letter-spacing: -0.3px;
}

/* Priest Service */
.priest-service {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--deep-gold);
  margin-bottom: 12px;
  letter-spacing: 0.5px;
}

/* Priest Bio */
.priest-bio {
  font-size: 0.9rem;
  color: #6B4F3C;
  line-height: 1.6;
  margin-bottom: 20px;
}

/* Priest Contact Button */
.priest-contact-btn {
  background: linear-gradient(145deg, var(--deep-gold), #C6A01E);
  border: none;
  color: white;
  font-weight: 700;
  padding: 12px 28px;
  border-radius: 30px;
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.3);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  cursor: pointer;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  font-family: 'Poppins', sans-serif;
}

.priest-contact-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(212, 175, 55, 0.45);
  color: white;
}

/* Responsive Priests Section */
@media (max-width: 1024px) {
  .priests-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .priests-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .priest-card {
    padding: 30px 20px;
    border-radius: 15px;
  }

  .priest-image-placeholder {
    width: 100px;
    height: 100px;
  }

  .priest-name {
    font-size: 1.2rem;
  }
}


/* ========== TESTIMONIALS SECTION ========== */

.testimonials-section {
  background: linear-gradient(135deg, var(--soft-cream) 0%, #FFF5E6 100%);
  position: relative;
}

/* Testimonials Grid */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
  margin-top: 50px;
}

/* Testimonial Card */
.testimonial-card {
  background: linear-gradient(135deg, #FFFFFF 0%, #FFFBF5 100%);
  border: 2.5px solid var(--deep-gold);
  border-radius: 18px;
  padding: 40px 30px;
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  position: relative;
  overflow: hidden;
}

.testimonial-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.12) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(212, 175, 55, 0.3);
  border-color: var(--saffron);
}

.testimonial-card:hover::before {
  opacity: 1;
}

/* Quote Icon */
.testimonial-quote-icon {
  font-size: 2.5rem;
  color: var(--deep-gold);
  margin-bottom: 20px;
  opacity: 0.8;
}

/* Testimonial Text */
.testimonial-text {
  font-size: 1rem;
  color: #5A3A2A;
  line-height: 1.8;
  margin-bottom: 25px;
  font-style: italic;
  font-weight: 500;
  letter-spacing: 0.3px;
}

/* Testimonial Name */
.testimonial-name {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--dark-maroon);
  margin-bottom: 5px;
  font-family: 'Playfair Display', serif;
  letter-spacing: -0.3px;
}

/* Testimonial Title */
.testimonial-title {
  font-size: 0.85rem;
  color: var(--deep-gold);
  font-weight: 600;
  letter-spacing: 0.5px;
  margin: 0;
}

/* Responsive Testimonials */
@media (max-width: 1024px) {
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }
}

@media (max-width: 768px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .testimonial-card {
    padding: 30px 20px;
    border-radius: 15px;
  }

  .testimonial-quote-icon {
    font-size: 2rem;
  }

  .testimonial-text {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
  }

  .testimonial-name {
    font-size: 1rem;
  }

  .testimonial-title {
    font-size: 0.8rem;
  }
}

