/* ===================================
   Shakti Mandir Website Styles
   Modern Peaceful Devotional Theme
   =================================== */

:root {
  /* Primary Colors - Saffron, Red, Gold, White Only */
  --saffron: #ff9933;
  --red: #dc143c;
  --gold: #ffd700;
  --white: #ffffff;

  /* Light Tints (using only the 4 core colors) */
  --light-saffron: rgba(255, 153, 51, 0.1);
  --light-gold: rgba(255, 215, 0, 0.1);
  --light-red: rgba(220, 20, 60, 0.1);
  --dark-bg: rgba(220, 20, 60, 0.9);

  /* Gradients - Using Only Core Colors */
  --gradient-primary: linear-gradient(135deg, #ff9933 0%, #dc143c 100%);
  --gradient-peaceful: linear-gradient(135deg,
      rgba(255, 153, 51, 0.1) 0%,
      rgba(255, 215, 0, 0.1) 50%,
      #ffffff 100%);
  --gradient-gold: linear-gradient(135deg, #ffd700 0%, #ff9933 100%);
  --gradient-divine: linear-gradient(135deg, #ff9933 0%, #dc143c 100%);
  --gradient-overlay: linear-gradient(135deg,
      rgba(255, 153, 51, 0.05) 0%,
      rgba(220, 20, 60, 0.05) 100%);

  /* Advanced Shadows */
  --shadow-soft: 0 10px 40px rgba(255, 153, 51, 0.1);
  --shadow-medium: 0 15px 50px rgba(220, 20, 60, 0.15);
  --shadow-strong: 0 20px 60px rgba(255, 153, 51, 0.25);
  --shadow-glow: 0 0 30px rgba(255, 215, 0, 0.3);
  --shadow-divine:
    0 8px 32px rgba(255, 153, 51, 0.2), 0 0 0 1px rgba(255, 215, 0, 0.1);

  /* Peaceful Transitions */
  --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-bounce: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.7;
  color: rgba(0, 0, 0, 0.8);
  background: var(--gradient-peaceful);
  background-attachment: fixed;
  overflow-x: hidden;
  position: relative;
}

/* Peaceful Background Pattern */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(circle at 20% 50%,
      rgba(255, 215, 0, 0.03) 0%,
      transparent 50%),
    radial-gradient(circle at 80% 80%,
      rgba(255, 153, 51, 0.03) 0%,
      transparent 50%);
  pointer-events: none;
  z-index: -1;
}

/* Modern Scrollbar Styling */
::-webkit-scrollbar {
  width: 12px;
}

::-webkit-scrollbar-track {
  background: var(--light-saffron);
  border-radius: 10px;
}

::-webkit-scrollbar-thumb {
  background: var(--gradient-primary);
  border-radius: 10px;
  border: 2px solid var(--light-saffron);
  transition: var(--transition-smooth);
}

::-webkit-scrollbar-thumb:hover {
  background: var(--gradient-divine);
  box-shadow: var(--shadow-glow);
}

/* ===================================
   NAVIGATION - Modern Glassmorphism
   =================================== */

.navbar {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 1.2rem 0;
  box-shadow: var(--shadow-soft);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(255, 153, 51, 0.1);
  transition: var(--transition-smooth);
}

.navbar:hover {
  box-shadow: var(--shadow-medium);
}

.navbar-brand {
  font-size: 1.6rem;
  font-weight: 700;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  transition: var(--transition-smooth);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.navbar-brand img {
  max-height: 150px;
  width: auto;
  transition: var(--transition-smooth);
}

@media (max-width: 991px) {
  .navbar-brand img {
    max-height: 80px;
  }
}

.navbar-brand img:hover {
  transform: scale(1.05);
}

@keyframes rotate-gentle {

  0%,
  100% {
    transform: rotate(0deg);
  }

  50% {
    transform: rotate(180deg);
  }
}

.navbar-brand:hover {
  transform: scale(1.05);
}

.nav-link {
  color: #555 !important;
  font-weight: 500;
  margin: 0 0.5rem;
  padding: 0.6rem 1rem !important;
  border-radius: 8px;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.nav-link::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--gradient-gold);
  transition: var(--transition-smooth);
  transform: translateX(-50%);
}

.nav-link:hover {
  color: var(--saffron) !important;
  background: var(--gradient-overlay);
  transform: translateY(-2px);
}

.nav-link:hover::before {
  width: 80%;
}

.nav-link.active {
  color: var(--red) !important;
  background: linear-gradient(135deg,
      rgba(255, 153, 51, 0.1) 0%,
      rgba(220, 20, 60, 0.1) 100%);
  font-weight: 600;
}

.nav-link.active::before {
  width: 80%;
}

/* Language Switcher - Modern Pills */
.language-switcher {
  display: flex;
  gap: 0.5rem;
  background: var(--gradient-peaceful);
  padding: 0.4rem;
  border-radius: 12px;
  box-shadow: inset 0 2px 8px rgba(255, 153, 51, 0.1);
}

.lang-btn {
  background: transparent;
  border: none;
  color: #666;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-smooth);
  font-size: 0.9rem;
}

.lang-btn:hover {
  background: rgba(255, 153, 51, 0.1);
  color: var(--saffron);
  transform: scale(1.05);
}

.lang-btn.active {
  background: var(--gradient-gold);
  color: white;
  box-shadow: var(--shadow-soft);
  transform: scale(1.05);
}

/* Mobile Menu Toggle */
.navbar-toggler {
  border: 2px solid var(--saffron);
  border-radius: 8px;
  padding: 0.5rem;
  transition: var(--transition-smooth);
}

.navbar-toggler:hover {
  background: var(--gradient-overlay);
  transform: rotate(90deg);
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255, 153, 51, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ===================================
   HERO SECTION - Divine Atmosphere
   =================================== */

.hero-section {
  position: relative;
  overflow: hidden;
  padding: 0;
}

/* Semi-transparent overlay for better text readability */
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg,
      rgba(0, 0, 0, 0.4) 0%,
      rgba(220, 20, 60, 0.2) 50%,
      rgba(255, 153, 51, 0.3) 100%);
  z-index: 1;
}

/* Content container with glassmorphism effect */
.hero-content-container {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  padding: 60px 40px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(12px);
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(circle at 30% 20%,
      rgba(255, 215, 0, 0.1) 0%,
      transparent 50%),
    radial-gradient(circle at 70% 80%,
      rgba(255, 153, 51, 0.1) 0%,
      transparent 50%);
  animation: pulse-divine 5s ease-in-out infinite;
}

@keyframes pulse-divine {

  0%,
  100% {
    opacity: 0.5;
  }

  50% {
    opacity: 1;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }

  to {
    opacity: 1;
  }
}

.hero-content {
  text-align: center;
  color: var(--white);
}

.hero-content h1 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 800;
  background: linear-gradient(135deg, var(--saffron), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1rem;
  letter-spacing: -0.5px;
  animation: fadeInUp 1s ease-out;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.3));
}

.hero-content .lead {
  font-size: clamp(1.2rem, 3vw, 1.8rem);
  font-weight: 600;
  color: var(--white);
  margin-bottom: 1rem;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
  animation: fadeInUp 1.2s ease-out;
}

.hero-content p {
  font-size: clamp(1rem, 2vw, 1.3rem);
  color: var(--white);
  margin-bottom: 0;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.7);
  animation: fadeInUp 1.4s ease-out;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
  animation: fadeInUp 1.6s ease-out;
}

/* Hero Section Mobile Responsiveness */
@media (max-width: 768px) {

  .hero-content-container {
    padding: 40px 25px;
    max-width: 100%;
  }

  .hero-content h1 {
    font-size: clamp(2rem, 8vw, 3rem);
  }

  .hero-content .lead {
    font-size: clamp(1rem, 4vw, 1.3rem);
  }

  .hero-content p {
    font-size: clamp(0.9rem, 3vw, 1.1rem);
  }

  .hero-buttons {
    flex-direction: column;
    width: 100%;
  }

  .hero-buttons .btn {
    width: 100%;
    margin: 0 0 10px 0 !important;
  }
}

@media (max-width: 480px) {
  .hero-overlay {
    background: linear-gradient(135deg,
        rgba(0, 0, 0, 0.5) 0%,
        rgba(220, 20, 60, 0.3) 50%,
        rgba(255, 153, 51, 0.4) 100%);
  }

  .hero-content-container {
    padding: 30px 20px;
    background: rgba(255, 255, 255, 0.2);
  }
}

/* ===================================
   PAGE HEADER - For Inner Pages
   =================================== */

.page-header {
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg,
      rgba(255, 153, 51, 0.08) 0%,
      rgba(255, 255, 255, 1) 40%,
      rgba(255, 215, 0, 0.08) 100%);
  position: relative;
  overflow: hidden;
  padding: 80px 20px 60px;
  border-bottom: 3px solid;
  border-image: var(--gradient-gold) 1;
}

.page-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(circle at 20% 50%,
      rgba(255, 215, 0, 0.05) 0%,
      transparent 50%),
    radial-gradient(circle at 80% 50%,
      rgba(255, 153, 51, 0.05) 0%,
      transparent 50%);
  pointer-events: none;
}

.page-header .hero-content {
  text-align: center;
  position: relative;
  z-index: 1;
}

.page-header .hero-content h1 {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 800;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  transition: var(--transition-smooth);
  margin-bottom: 1rem;
  letter-spacing: -0.5px;
  position: relative;
  display: inline-block;
}

.page-header .hero-content h1::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: var(--gradient-gold);
  border-radius: 2px;
}

.page-header .hero-content .lead {
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  font-weight: 600;
  color: #555;
  margin-bottom: 0;
  margin-top: 1.5rem;
}

/* Page Header Mobile Responsiveness */
@media (max-width: 768px) {
  .page-header {
    min-height: 250px;
    padding: 60px 20px 40px;
  }

  .page-header .hero-content h1 {
    font-size: clamp(2rem, 6vw, 2.8rem);
  }

  .page-header .hero-content .lead {
    font-size: clamp(1rem, 3vw, 1.2rem);
  }
}

@media (max-width: 480px) {
  .page-header {
    min-height: 200px;
    padding: 50px 15px 30px;
  }
}

/* ===================================
   BUTTONS - Premium Design
   =================================== */

.btn {
  padding: 0.85rem 2rem;
  border-radius: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: var(--transition-bounce);
  border: none;
  cursor: pointer;
  font-size: 0.95rem;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  transition:
    width 0.6s,
    height 0.6s;
}

.btn:hover::before {
  width: 300px;
  height: 300px;
}

.btn-primary {
  background: var(--gradient-primary);
  color: white;
  box-shadow: var(--shadow-soft);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-medium);
  background: var(--gradient-divine);
}

.btn-outline-primary {
  border: 2px solid var(--saffron);
  color: var(--saffron);
  background: transparent;
}

.btn-outline-primary:hover {
  background: var(--gradient-primary);
  color: white;
  border-color: transparent;
  transform: translateY(-3px);
  box-shadow: var(--shadow-soft);
}

/* ===================================
   SECTIONS - Peaceful Spacing
   =================================== */

.section {
  padding: 4rem 0;
  position: relative;
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 3rem;
  position: relative;
  display: inline-block;
  left: 50%;
  transform: translateX(-50%);
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: var(--gradient-gold);
  border-radius: 2px;
}

.bg-light-saffron {
  background: linear-gradient(135deg,
      rgba(255, 153, 51, 0.05) 0%,
      #ffffff 50%,
      rgba(255, 215, 0, 0.05) 100%);
  position: relative;
}

.bg-light-saffron::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--gradient-overlay);
  pointer-events: none;
}

/* ===================================
   CARDS - Premium Glassmorphism
   =================================== */

.card {
  border: none;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: var(--shadow-soft);
  transition: var(--transition-smooth);
  overflow: hidden;
  position: relative;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-gold);
  transform: scaleX(0);
  transition: var(--transition-smooth);
}

.card:hover::before {
  transform: scaleX(1);
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-medium);
  background: rgba(255, 255, 255, 0.95);
}

.card-glass {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  border: 1px solid rgba(255, 215, 0, 0.2);
  box-shadow: var(--shadow-divine);
}

.card-body {
  padding: 2rem;
}

.card-title {
  color: var(--saffron);
  font-weight: 700;
  margin-bottom: 1rem;
  font-size: 1.4rem;
}

/* Info Cards with Icons */
.info-card {
  background: var(--white);
  padding: 2rem;
  border-radius: 16px;
  box-shadow: var(--shadow-soft);
  transition: var(--transition-smooth);
  border-left: 4px solid var(--saffron);
  position: relative;
  overflow: hidden;
}

.info-card::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 100px;
  height: 100px;
  background: var(--gradient-peaceful);
  border-radius: 50%;
  transform: translate(50%, -50%);
  opacity: 0.3;
  transition: var(--transition-smooth);
}

.info-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-medium);
  border-left-width: 6px;
}

.info-card:hover::before {
  transform: translate(30%, -30%) scale(1.5);
}

.info-card i {
  font-size: 2.5rem;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1rem;
  display: inline-block;
  animation: pulse-icon 2s ease-in-out infinite;
}

@keyframes pulse-icon {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.1);
  }
}

/* ===================================
   TYPOGRAPHY - Serene & Readable
   =================================== */

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 1rem;
}

.text-saffron {
  color: var(--saffron);
}

.text-red {
  color: var(--red);
}

.text-gold {
  color: var(--gold);
}

.lead {
  font-size: 1.25rem;
  font-weight: 300;
  color: rgba(0, 0, 0, 0.6);
}

/* Om Symbol - Sacred Typography */
.om-symbol {
  font-size: 4rem;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-align: center;
  margin-bottom: 1.5rem;
  animation: om-pulse 3s ease-in-out infinite;
  display: block;
}

@keyframes om-pulse {

  0%,
  100% {
    transform: scale(1);
    filter: brightness(1);
  }

  50% {
    transform: scale(1.1);
    filter: brightness(1.3);
  }
}

/* ===================================
   FORMS - Peaceful Interaction
   =================================== */

.form-control {
  padding: 0.9rem 1.2rem;
  border: 2px solid #e9ecef;
  border-radius: 12px;
  font-size: 1rem;
  transition: var(--transition-smooth);
  background: rgba(255, 255, 255, 0.9);
}

.form-control:focus {
  border-color: var(--saffron);
  box-shadow: 0 0 0 0.2rem rgba(255, 153, 51, 0.15);
  background: white;
  transform: translateY(-2px);
}

.form-label {
  font-weight: 600;
  color: #555;
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}

.form-select {
  padding: 0.9rem 1.2rem;
  border: 2px solid #e9ecef;
  border-radius: 12px;
  transition: var(--transition-smooth);
  background: rgba(255, 255, 255, 0.9);
}

.form-select:focus {
  border-color: var(--saffron);
  box-shadow: 0 0 0 0.2rem rgba(255, 153, 51, 0.15);
}

.invalid-feedback {
  color: var(--red);
  font-size: 0.85rem;
  margin-top: 0.25rem;
}

/* ===================================
   FOOTER - Elegant & Informative
   =================================== */

.footer {
  background: linear-gradient(135deg,
      rgba(220, 20, 60, 0.95) 0%,
      rgba(255, 153, 51, 0.95) 100%);
  color: #ffffff;
  padding: 3rem 0 1.5rem;
  margin-top: 4rem;
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-gold);
}

.footer h5 {
  color: var(--gold);
  margin-bottom: 1.5rem;
  font-size: 1.2rem;
  font-weight: 700;
}

.footer p,
.footer a {
  color: #ffffff;
  opacity: 0.95;
  text-decoration: none;
  transition: var(--transition-smooth);
}

.footer a:hover {
  color: var(--gold);
  opacity: 1;
  transform: translateX(5px);
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links li a {
  display: inline-block;
  position: relative;
  padding-left: 1rem;
}

.footer-links li a::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--saffron);
  transition: var(--transition-smooth);
}

.footer-links li a:hover::before {
  transform: translateX(5px);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  margin-top: 2rem;
  border-top: 1px solid rgba(255, 215, 0, 0.2);
  font-size: 0.9rem;
}

/* Social Links - Premium Icons */
.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.social-links a {
  width: 45px;
  height: 45px;
  border-radius: 12px;
  background: rgba(255, 215, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  transition: var(--transition-bounce);
  border: 1px solid rgba(255, 215, 0, 0.2);
}

.social-links a:hover {
  background: var(--gradient-gold);
  color: white;
  transform: translateY(-5px) rotate(5deg);
  box-shadow: var(--shadow-glow);
}

/* ===================================
   GALLERY - Modern Grid
   =================================== */

.gallery-filters {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.filter-btn {
  background: white;
  border: 2px solid #e9ecef;
  color: #666;
  padding: 0.75rem 2rem;
  border-radius: 25px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-smooth);
  font-size: 0.95rem;
}

.filter-btn:hover {
  border-color: var(--saffron);
  color: var(--saffron);
  transform: translateY(-3px);
  box-shadow: var(--shadow-soft);
}

.filter-btn.active {
  background: var(--gradient-primary);
  color: white;
  border-color: transparent;
  box-shadow: var(--shadow-soft);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.gallery-item {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  box-shadow: var(--shadow-soft);
  transition: var(--transition-smooth);
  aspect-ratio: 1;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.gallery-item:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-medium);
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg,
      rgba(255, 153, 51, 0.9),
      rgba(220, 20, 60, 0.9));
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition-smooth);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

/* ===================================
   SCHEDULE - Elegant Display
   =================================== */

.schedule-card {
  background: white;
  padding: 2.5rem;
  border-radius: 20px;
  box-shadow: var(--shadow-soft);
  transition: var(--transition-smooth);
  border-top: 4px solid var(--saffron);
  position: relative;
  overflow: hidden;
}

.schedule-card::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 150px;
  height: 150px;
  background: var(--gradient-peaceful);
  border-radius: 50%;
  transform: translate(50%, -50%);
  opacity: 0.3;
}

.schedule-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-medium);
}

.schedule-card i {
  font-size: 3rem;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1rem;
}

.schedule-card h4 {
  color: var(--saffron);
  margin-bottom: 0.75rem;
  font-size: 1.5rem;
}

.schedule-card .time {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--red);
  margin-bottom: 1rem;
}

/* ===================================
   CONTACT INFO - Modern Cards
   =================================== */

.contact-info {
  background: white;
  padding: 2rem;
  border-radius: 16px;
  box-shadow: var(--shadow-soft);
  transition: var(--transition-smooth);
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  border-left: 4px solid var(--saffron);
}

.contact-info:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-medium);
}

.contact-icon {
  width: 60px;
  height: 60px;
  border-radius: 12px;
  background: var(--gradient-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-icon i {
  font-size: 1.8rem;
  color: white;
}

/* ===================================
   DONATION METHOD - Premium Style
   =================================== */

.donation-method {
  background: white;
  padding: 2.5rem;
  border-radius: 20px;
  margin-bottom: 2rem;
  box-shadow: var(--shadow-soft);
  transition: var(--transition-smooth);
  border: 1px solid rgba(255, 153, 51, 0.1);
}

.donation-method:hover {
  box-shadow: var(--shadow-medium);
  transform: translateX(5px);
  border-color: var(--saffron);
}

.qr-code {
  max-width: 200px;
  border-radius: 12px;
  box-shadow: var(--shadow-soft);
  border: 3px solid var(--saffron);
}

/* ===================================
   ALERTS - Soft & Informative
   =================================== */

.alert {
  border-radius: 12px;
  border: none;
  padding: 1.2rem 1.5rem;
  box-shadow: var(--shadow-soft);
}

.alert-info {
  background: linear-gradient(135deg,
      rgba(13, 110, 253, 0.1),
      rgba(13, 202, 240, 0.1));
  color: #084298;
  border-left: 4px solid #0d6efd;
}

/* ===================================
   RESPONSIVE - Mobile Friendly
   =================================== */

@media (max-width: 992px) {
  .hero-content h1 {
    font-size: 2.5rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .navbar-collapse {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    padding: 1rem;
    border-radius: 12px;
    margin-top: 1rem;
    box-shadow: var(--shadow-soft);
  }

  .language-switcher {
    margin-top: 1rem;
    justify-content: center;
  }

  .gallery-grid {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1.5rem;
  }
}

@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 2rem;
  }

  .hero-content .lead {
    font-size: 1.1rem;
  }

  .btn {
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
  }

  .section {
    padding: 3rem 0;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .contact-info {
    flex-direction: column;
  }
}