/* Main CSS File for Temple Website */

/* ---------- Variables & Fonts ---------- */
:root {
  --primary-color: #FF4500;           /* Saffron-like orange-red */
  --secondary-color: #FFD700;         /* Gold color */
  --accent-color: #800000;            /* Maroon */
  --text-dark: #333333;               /* Dark gray for text */
  --text-light: #FFFFFF;              /* White for text on dark background */
  --background-light: #FFF8E1;        /* Light cream background */
  --background-medium: #FFF3CD;       /* Medium cream for sections */
  --background-dark: #800000;         /* Maroon background for sections */
  --shadow-color: rgba(0, 0, 0, 0.1);  /* Shadow color */
  --transition-speed: 0.3s;           /* Animation speed */
}

/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

/* ---------- Global Styles ---------- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

a {
  text-decoration: none;
  color: var(--accent-color);
  transition: all var(--transition-speed) ease;
}

img {
  max-width: 100%;
  height: auto;
}

/* Button Styles */
.btn {
  display: inline-block;
  padding: 10px 20px;
  border-radius: 50px;
  font-weight: 400;
  text-align: center;
  transition: all var(--transition-speed) ease;
  cursor: pointer;
}

.primary-btn {
  background-color: var(--primary-color);
  color: var(--text-light);
  border: 2px solid var(--primary-color);
}

.primary-btn:hover {
  background-color: transparent;
  color: var(--primary-color);
}

.secondary-btn {
  background-color: transparent;
  color: var(--text-light);
  border: 2px solid var(--text-light);
}

.secondary-btn:hover {
  background-color: var(--text-light);
  color: var(--primary-color);
}

.whatsapp-btn {
  background-color: #25D366;
  color: var(--text-light);
  border: 2px solid #25D366;
}

.whatsapp-btn:hover {
  background-color: transparent;
  color: #25D366;
}

.whatsapp-btn i {
  margin-right: 8px;
}

/* ---------- Section Styling ---------- */
section {
  padding: 80px 20px;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.section-heading {
  text-align: center;
  margin-bottom: 50px;
}

.section-heading h2 {
  font-size: clamp(28px, 5vw, 36px);
  color: var(--accent-color);
  margin-bottom: 15px;
  font-weight: 700;
}

.section-heading.light h2 {
  color: var(--text-light);
}

.section-heading p {
  font-size: clamp(14px, 2vw, 16px);
  line-height: 1.6;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.divider {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  margin: 15px 0;
}

.divider::before,
.divider::after {
  content: '';
  height: 1px;
  width: 60px;
  background-color: var(--accent-color);
  margin: 0 15px;
}

.section-heading.light .divider::before,
.section-heading.light .divider::after {
  background-color: var(--text-light);
}

.divider-symbol {
  font-size: 24px;
}

/* Center Button */
.center-btn {
  text-align: center;
  margin-top: 30px;
}

.btn {
  display: inline-block;
  padding: 12px 25px;
  background-color: var(--primary-color);
  color: var(--text-light);
  border-radius: 5px;
  font-weight: 600;
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
}

.btn:hover {
  background-color: var(--accent-color);
  transform: translateY(-3px);
}

/* ---------- Header Styles ---------- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: rgb(255, 255, 255);
  box-shadow: 0 2px 10px var(--shadow-color);
  transition: all var(--transition-speed) ease;
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px;
}

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  height: 60px;
  width: auto;
  margin-right: 15px;
}

.temple-name h1 {
  font-size: clamp(16px, 2.5vw, 18px);
  color: var(--accent-color);
  margin: 0;
}

.temple-name p {
  font-size: clamp(13px, 2vw, 14px);
  color: var(--text-dark);
}

.temple-name span {
  font-size: clamp(11px, 1.8vw, 12px);
  color: var(--text-dark);
  opacity: 0.8;
}

.main-nav ul {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
}

.main-nav ul li {
  margin-left: 25px;
}

.main-nav ul li a {
  color: var(--text-dark);
  font-weight: 500;
  position: relative;
  padding: 5px 0;
  text-decoration: none;
  font-size: clamp(14px, 2vw, 15px);
}

.main-nav ul li a:hover,
.main-nav ul li a.active {
  color: var(--primary-color);
}

.main-nav ul li a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary-color);
  transition: width var(--transition-speed) ease;
}

.main-nav ul li a:hover::after,
.main-nav ul li a.active::after {
  width: 100%;
}

.mobile-menu-btn {
  display: none;
  cursor: pointer;
  font-size: 24px;
  color: var(--accent-color);
  background: transparent;
  border: none;
  padding: 5px;
}

/* Mobile menu */
.mobile-nav {
  position: fixed;
  top: 0;
  right: -100%;
  width: 250px;
  height: 100vh;
  background-color: var(--text-light);
  z-index: 1001;
  padding: 20px;
  box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
  transition: right 0.3s ease;
  overflow-y: auto;
}

.mobile-nav.active {
  right: 0;
}

.mobile-nav-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: transparent;
  border: none;
  font-size: 24px;
  color: var(--accent-color);
  cursor: pointer;
}

.mobile-nav ul {
  list-style: none;
  padding: 0;
  margin-top: 60px;
}

.mobile-nav ul li {
  margin-bottom: 15px;
}

.mobile-nav ul li a {
  color: var(--text-dark);
  font-weight: 500;
  font-size: 16px;
  text-decoration: none;
  display: block;
  padding: 10px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  transition: color 0.3s ease;
}

.mobile-nav ul li a:hover,
.mobile-nav ul li a.active {
  color: var(--primary-color);
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.overlay.active {
  opacity: 1;
  visibility: visible;
}

/* Sticky header */
.header.sticky {
  padding: 5px 0;
  background-color: rgba(255, 255, 255, 0.95);
}

.header.sticky .logo img {
  height: 50px;
}

/* Responsive styles */
@media screen and (max-width: 992px) {
  section {
    padding: 60px 15px;
  }
  
  .section-heading {
    margin-bottom: 40px;
  }
  
  .divider::before,
  .divider::after {
    width: 40px;
  }
}

@media screen and (max-width: 768px) {
  .main-nav {
    display: none;
  }
  
  .mobile-menu-btn {
    display: block;
  }
  
  .header .container {
    padding: 10px 15px;
  }
  
  .logo img {
    height: 50px;
  }
  
  section {
    padding: 50px 15px;
  }
  
  .section-heading {
    margin-bottom: 30px;
  }
}

@media screen and (max-width: 480px) {
  .logo img {
    height: 40px;
    margin-right: 10px;
  }
  
  section {
    padding: 40px 15px;
  }
  
  .section-heading h2 {
    margin-bottom: 10px;
  }
  
  .divider::before,
  .divider::after {
    width: 30px;
    margin: 0 10px;
  }
  
  .divider-symbol {
    font-size: 20px;
  }
  
  .center-btn {
    margin-top: 20px;
  }
  
  .btn {
    padding: 10px 20px;
  }
}

/* For large screens */
@media screen and (min-width: 1400px) {
  .container {
    max-width: 1300px;
  }
}
/* ---------- Hero Section Styles ---------- */
.hero-section {
  height: 100vh;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 0;
  padding: 0;
}

.parallax-container {
  position: relative;
  overflow: hidden;
  width: 100%;
}

.parallax-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 150%;
  background-image: url('./images/banner.jpeg');
  background-size: cover;
  background-position: center;
  z-index: -1;
  transform: translateZ(0);
}

.events-bg {
  background-image: url('https://img.freepik.com/premium-vector/durga-pupa-frame-13_230402-375.jpg?uid=R187221611&ga=GA1.1.1335266347.1741071517&semt=ais_hybrid');
  filter: brightness(0.7);
  height: 190%;
}

.hero-content {
  text-align: center;
  color: var(--text-light);
  padding: 20px;
  position: relative;
  z-index: 1;
  max-width: 90%;
  width: 800px;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 0;
}

.hero-content h2 {
  font-size: clamp(24px, 5vw, 30px);
  margin-bottom: 15px;
  font-weight: 700;
}

.hero-content h3 {
  font-size: clamp(18px, 4vw, 20px);
  margin-bottom: 20px;
}

.hero-content p {
  font-size: clamp(14px, 3vw, 15px);
  margin-bottom: 30px;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

/* Responsive styles */
@media screen and (max-width: 768px) {
  .hero-content {
    padding: 15px;
  }
  
  .hero-buttons {
    gap: 10px;
  }
}

@media screen and (max-width: 480px) {
  .hero-section {
    height: 90vh; /* Slightly smaller on very small screens */
  }
  
  .hero-content {
    padding: 10px;
  }
  
  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .hero-buttons a, 
  .hero-buttons button {
    width: 80%;
    margin-bottom: 10px;
  }
}

/* For large screens */
@media screen and (min-width: 1200px) {
  .hero-content {
    max-width: 800px;
  }
}

/* Fix for iOS Safari 100vh issue */
@supports (-webkit-touch-callout: none) {
  .hero-section {
    height: -webkit-fill-available;
  }
}
/* ---------- Introduction Section Styles ---------- */
.intro-section {
  background-color: var(--background-light);
  padding: 60px 20px;
}

.intro-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.intro-image {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 30px var(--shadow-color);
  width: 100%;
  height: auto;
}

.intro-image img {
  width: 100%;
  height: auto;
  display: block;
}

.intro-text p {
  margin-bottom: 20px;
  text-align: justify;
  font-weight: bold;
  font-size: clamp(13px, 2vw, 14px);
  line-height: 1.6;
}

.intro-text h2 {
  font-size: clamp(24px, 4vw, 30px);
  margin-bottom: 20px;
}

/* ---------- Divine Blessings Section Styles ---------- */
.blessings-section {
  background-color: var(--background-medium);
  padding: 60px 20px;
}

.section-header {
  text-align: center;
  margin-bottom: 40px;
}

.section-header h2 {
  font-size: clamp(24px, 4vw, 30px);
  margin-bottom: 15px;
}

.blessings-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.blessing-card {
  background-color: var(--text-light);
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 15px var(--shadow-color);
  transition: transform var(--transition-speed) ease, box-shadow var(--transition-speed) ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.blessing-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px var(--shadow-color);
}

.card-icon {
  font-size: 36px;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.blessing-card h3 {
  font-size: clamp(18px, 3vw, 20px);
  margin-bottom: 15px;
  color: var(--accent-color);
}

.blessing-card p {
  font-size: clamp(13px, 2vw, 14px);
  line-height: 1.5;
}

/* Responsive styles */
@media screen and (max-width: 992px) {
  .intro-content {
    gap: 30px;
  }
  
  .blessing-card {
    padding: 25px;
  }
}

@media screen and (max-width: 768px) {
  .intro-section,
  .blessings-section {
    padding: 40px 15px;
  }
  
  .intro-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .intro-image {
    order: 1;
    max-width: 500px;
    margin: 0 auto;
  }
  
  .intro-text {
    order: 2;
  }
  
  .blessings-cards {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }
}

@media screen and (max-width: 480px) {
  .intro-section,
  .blessings-section {
    padding: 30px 15px;
  }
  
  .section-header {
    margin-bottom: 30px;
  }
  
  .blessing-card {
    padding: 20px;
  }
  
  .card-icon {
    font-size: 32px;
    margin-bottom: 15px;
  }
}

/* For large screens */
@media screen and (min-width: 1400px) {
  .intro-content,
  .blessings-cards {
    max-width: 1300px;
  }
}
/* ---------- Events Section Styles ---------- */
.events-preview {
  padding: 80px 20px;
  color: var(--text-light);
  position: relative;
  background-image: url('https://img.freepik.com/premium-photo/illustration-traditional-hindu-background-concept_1342608-4243.jpg?semt=ais_hybrid');
  background-size: cover;
  background-position: center;
  background-attachment: fixed; /* Adds a nice parallax effect */
}

/* Overlay for better text readability */
.events-preview::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 0;
}

/* Container positioning above overlay */
.events-preview .container {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
}

.events-preview .section-header {
  text-align: center;
  margin-bottom: 40px;
}

.events-preview .section-header h2 {
  font-size: clamp(24px, 4vw, 30px);
  margin-bottom: 15px;
}

.events-preview .section-header p {
  font-size: clamp(14px, 2vw, 16px);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Horizontal layout for events */
.events-list.horizontal {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
  max-width: 1100px;
  margin: 0 auto;
}

.events-list.horizontal .event-item {
  width: calc(50% - 20px);
  margin-bottom: 20px;
  min-width: 280px;
  flex-grow: 0;
}

.event-item {
  display: flex;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transition: transform var(--transition-speed) ease, box-shadow var(--transition-speed) ease;
  height: 100%;
}

.event-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.event-date {
  background-color: var(--primary-color);
  color: var(--text-light);
  padding: 15px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-width: 80px;
  text-align: center;
}

.event-date .day {
  font-size: clamp(20px, 3vw, 24px);
  font-weight: 700;
}

.event-date .month {
  font-size: clamp(14px, 2vw, 16px);
  text-transform: uppercase;
}

.event-info {
  padding: 15px 20px;
  flex-grow: 1;
}

.event-info h3 {
  font-size: clamp(16px, 2.5vw, 18px);
  margin-bottom: 10px;
}

.event-info p {
  font-size: clamp(13px, 2vw, 14px);
  margin-bottom: 10px;
  opacity: 0.9;
  line-height: 1.5;
}

.event-time,
.event-location {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: clamp(12px, 1.8vw, 13px);
  margin-bottom: 5px;
}

.event-time i,
.event-location i {
  font-size: clamp(14px, 2vw, 16px);
  color: var(--accent-color);
}

/* Responsive styles */
@media screen and (max-width: 992px) {
  .events-preview {
    padding: 60px 15px;
  }
  
  .events-list.horizontal {
    gap: 15px;
  }
}

@media screen and (max-width: 768px) {
  .events-preview {
    padding: 50px 15px;
    background-attachment: scroll; /* Better mobile performance */
  }
  
  .events-list.horizontal .event-item {
    width: 100%;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .events-preview .section-header {
    margin-bottom: 30px;
  }
}

@media screen and (max-width: 480px) {
  .events-preview {
    padding: 40px 15px;
  }
  
  .event-date {
    padding: 10px;
    min-width: 70px;
  }
  
  .event-info {
    padding: 12px 15px;
  }
  
  .event-time,
  .event-location {
    flex-direction: column;
    align-items: flex-start;
    gap: 3px;
  }
}

/* For large screens */
@media screen and (min-width: 1400px) {
  .events-preview .container,
  .events-list.horizontal {
    max-width: 1300px;
  }
}

/* Rest of your styles remain the same */


/* ---------- Testimonials Section Styles ---------- */
.testimonials-section {
  background-color: var(--background-light);
  padding: 60px 20px;
}

.testimonials-section .section-header {
  text-align: center;
  margin-bottom: 40px;
}

.testimonials-section .section-header h2 {
  font-size: clamp(24px, 4vw, 30px);
  margin-bottom: 15px;
}

.testimonials-slider {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}

.testimonial {
  background-color: var(--text-light);
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 5px 15px var(--shadow-color);
  margin-bottom: 30px;
}

.testimonial-content {
  position: relative;
  padding-left: 30px;
}

.testimonial-content::before {
  content: '"';
  position: absolute;
  left: 0;
  top: -10px;
  font-size: 50px;
  color: var(--primary-color);
  font-family: serif;
  opacity: 0.5;
}

.testimonial-content p {
  font-size: clamp(14px, 2vw, 16px);
  line-height: 1.6;
}

.testimonial-author {
  text-align: right;
  margin-top: 20px;
  font-style: italic;
  color: var(--accent-color);
  font-size: clamp(13px, 1.8vw, 15px);
}

/* Slider navigation */
.slider-nav {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
}

.slider-nav button {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--text-light);
  border: none;
  color: var(--primary-color);
  cursor: pointer;
  box-shadow: 0 2px 5px var(--shadow-color);
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slider-nav button:hover {
  background-color: var(--primary-color);
  color: var(--text-light);
}

/* ---------- Location Section Styles ---------- */
.location-section {
  background-color: var(--background-medium);
  padding: 60px 20px;
}

.location-section .section-header {
  text-align: center;
  margin-bottom: 40px;
}

.location-section .section-header h2 {
  font-size: clamp(24px, 4vw, 30px);
  margin-bottom: 15px;
}

.location-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
  max-width: 1200px;
  margin: 0 auto;
}

.map-container {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 30px var(--shadow-color);
  height: 100%;
  min-height: 350px;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  min-height: 350px;
  border: none;
  display: block;
}

.temple-address {
  padding: 20px;
  background-color: var(--text-light);
  border-radius: 10px;
  box-shadow: 0 5px 15px var(--shadow-color);
}

.temple-address h3 {
  font-size: clamp(20px, 3vw, 24px);
  color: var(--accent-color);
  margin-bottom: 20px;
}

.temple-address p {
  margin-bottom: 15px;
  display: flex;
  align-items: flex-start;
  font-size: clamp(14px, 2vw, 16px);
  line-height: 1.5;
}

.temple-address p i {
  margin-right: 10px;
  color: var(--primary-color);
  font-size: clamp(16px, 2.5vw, 18px);
  width: 25px;
  text-align: center;
  margin-top: 3px;
}

.temple-timings {
  margin-top: 30px;
  margin-bottom: 30px;
}

.temple-timings h4 {
  font-size: clamp(18px, 2.5vw, 20px);
  margin-bottom: 15px;
  color: var(--accent-color);
}

.timing {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 1px dashed rgba(0, 0, 0, 0.1);
  font-size: clamp(13px, 2vw, 15px);
}

.timing .day {
  font-weight: 600;
}

.contact-btn {
  display: inline-block;
  background-color: var(--primary-color);
  color: var(--text-light);
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 600;
  transition: background-color 0.3s ease;
  text-align: center;
  margin-top: 10px;
}

.contact-btn:hover {
  background-color: var(--accent-color);
}

/* Responsive styles */
@media screen and (max-width: 992px) {
  .testimonials-section,
  .location-section {
    padding: 50px 15px;
  }
  
  .location-content {
    gap: 30px;
  }
}

@media screen and (max-width: 768px) {
  .testimonials-section,
  .location-section {
    padding: 40px 15px;
  }
  
  .testimonials-section .section-header,
  .location-section .section-header {
    margin-bottom: 30px;
  }
  
  .testimonial {
    padding: 25px;
  }
  
  .location-content {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  
  .map-container {
    order: 2;
  }
  
  .temple-address {
    order: 1;
  }
}

@media screen and (max-width: 480px) {
  .testimonials-section,
  .location-section {
    padding: 30px 15px;
  }
  
  .testimonial {
    padding: 20px;
  }
  
  .testimonial-content {
    padding-left: 25px;
  }
  
  .testimonial-content::before {
    font-size: 40px;
  }
  
  .slider-nav button {
    width: 35px;
    height: 35px;
  }
  
  .temple-address {
    padding: 15px;
  }
  
  .temple-timings {
    margin-top: 20px;
    margin-bottom: 20px;
  }
  
  .timing {
    flex-direction: column;
    gap: 5px;
  }
}

/* For large screens */
@media screen and (min-width: 1400px) {
  .location-content {
    max-width: 1300px;
  }
  
  .testimonials-slider {
    max-width: 900px;
  }
}
/* ---------- Footer Styles ---------- */
.footer {
  background-color: var(--background-dark) !important;
  color: var(--text-light) !important;
  padding: 60px 0 20px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-logo {
  text-align: center;
}

.footer-logo img {
  height: 80px;
  margin-bottom: 15px;
}

.footer-logo h3 {
  font-size: 18px;
  margin-bottom: 10px;
}

.footer-links h3,
.footer-contact h3 {
  font-size: 20px;
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
}

.footer-links h3::after,
.footer-contact h3::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 50px;
  height: 2px;
  background-color: var(--primary-color);
}

.footer-links ul {
  list-style: none;
}

.footer-links ul li {
  margin-bottom: 10px;
}

.footer-links ul li a {
  color: var(--text-light);
  opacity: 0.8;
  transition: opacity var(--transition-speed) ease;
}

.footer-links ul li a:hover {
  opacity: 1;
  color: var(--secondary-color);
}

.footer-contact p {
  margin-bottom: 15px;
  display: flex;
  align-items: center;
}

.footer-contact p i {
  margin-right: 10px;
  color: var(--secondary-color);
  font-size: 16px;
  width: 20px;
}

.social-icons {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--text-light);
  transition: all var(--transition-speed) ease;
}

.social-icon:hover {
  background-color: var(--primary-color);
  transform: translateY(-5px);
}

.copyright {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 14px;
  opacity: 0.8;
}
.copyright a{
  color: #FFD700;
}
.footer-contact a {
  color: var(--text-light);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-contact a:hover {
  color: var(--secondary-color);
}

/* ---------- Back to Top Button ---------- */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background-color: var(--primary-color);
  color: var(--text-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-speed) ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.back-to-top.active {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background-color: var(--accent-color);
  transform: translateY(-5px);
}

/* ---------- Animation Classes ---------- */
/* For AOS Library */
[data-aos] {
  opacity: 0;
  transition-property: opacity, transform;
}

[data-aos].aos-animate {
  opacity: 1;
}

[data-aos="fade-up"] {
  transform: translateY(50px);
}

[data-aos="fade-up"].aos-animate {
  transform: translateY(0);
}

[data-aos="fade-right"] {
  transform: translateX(-50px);
}

[data-aos="fade-right"].aos-animate {
  transform: translateX(0);
}

[data-aos="fade-left"] {
  transform: translateX(50px);
}

[data-aos="fade-left"].aos-animate {
  transform: translateX(0);
}

/* Custom Animations */
.animate-fade-in {
  animation: fadeIn 1s ease forwards;
}

.animate-slide-up {
  animation: slideUp 1s ease forwards;
  animation-delay: 0.3s;
  opacity: 0;
}

.animate-pulse {
  animation: pulse 2s infinite;
}

@keyframes fadeIn {
  from {
      opacity: 0;
  }
  to {
      opacity: 1;
  }
}

@keyframes slideUp {
  from {
      opacity: 0;
      transform: translateY(50px);
  }
  to {
      opacity: 1;
      transform: translateY(0);
  }
}

@keyframes pulse {
  0% {
      transform: scale(1);
      box-shadow: 0 0 0 0 rgba(255, 69, 0, 0.7);
  }
  70% {
      transform: scale(1.05);
      box-shadow: 0 0 0 10px rgba(255, 69, 0, 0);
  }
  100% {
      transform: scale(1);
      box-shadow: 0 0 0 0 rgba(255, 69, 0, 0);
  }
}

/* ---------- Responsive Styles ---------- */
@media screen and (max-width: 992px) {
  .intro-content,
  .location-content {
      grid-template-columns: 1fr;
  }
  
  .intro-image {
      order: -1;
  }
  
  .section-heading h2 {
      font-size: 30px;
  }
  
  .hero-content h2 {
      font-size: 36px;
  }
  
  .hero-content h3 {
      font-size: 24px;
  }
}

@media screen and (max-width: 768px) {
  .header .container {
      padding: 10px 15px;
  }
  
  .main-nav {
      display: none;
      position: absolute;
      top: 100%;
      left: 0;
      width: 100%;
      background-color: var(--text-light);
      box-shadow: 0 5px 15px var(--shadow-color);
      padding: 20px 0;
  }
  
  .main-nav.active {
      display: block;
  }
  
  .main-nav ul {
      flex-direction: column;
      align-items: center;
  }
  
  .main-nav ul li {
      margin: 10px 0;
  }
  
  .mobile-menu-btn {
      display: block;
  }
  
  .hero-buttons {
      flex-direction: column;
      gap: 15px;
  }
  
  .btn {
      width: 100%;
  }
  
  section {
      padding: 60px 0;
  }
  
  .footer-content {
      grid-template-columns: 1fr;
      text-align: center;
  }
  
  .footer-links h3::after,
  .footer-contact h3::after {
      left: 50%;
      transform: translateX(-50%);
  }
  
  .footer-contact p {
      justify-content: center;
  }
  
  .social-icons {
      justify-content: center;
  }
}

@media screen and (max-width: 576px) {
  .event-item {
      flex-direction: column;
  }
  
  .event-date {
      flex-direction: row;
      justify-content: space-between;
      padding: 10px 20px;
      min-width: auto;
  }
  
  .event-date .month,
  .event-date .day {
      font-size: 18px;
  }
  
  .section-heading h2 {
      font-size: 26px;
  }
  
  .divider::before,
  .divider::after {
      width: 30px;
  }
  
  .hero-content h2 {
      font-size: 28px;
  }
  
  .hero-content h3 {
      font-size: 20px;
  }
  
  .hero-content p {
      font-size: 16px;
  }
}
/* ABOUT PAGE */

/* Additional styles for About page */

/* Page Banner */
.page-banner {
  height: 300px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin-top: 90px;
}

.page-banner .parallax-bg {
  background-image: url('https://img.freepik.com/premium-photo/blurred-buddhist-temple-interior-with-no-people-classical-interior-light-colors-background-wallpaper_935074-28695.jpg?semt=ais_hybrid');
  filter: brightness(0.7);
}

.banner-content {
  position: relative;
  z-index: 1;
  color: var(--text-light);
}

.banner-content h1 {
  font-size: 36px;
  margin-bottom: 10px;
}

.breadcrumbs {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.breadcrumbs a {
  color: var(--text-light);
  opacity: 0.8;
}

.breadcrumbs a:hover {
  opacity: 1;
}

.breadcrumbs .current {
  color: var(--secondary-color);
}

/* About History Section */
.about-history {
  padding: 80px 0;
  background-color: var(--background-light);
}

.history-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.history-image {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 30px var(--shadow-color);
}

.history-text p {
  margin-bottom: 20px;
  text-align: justify;
}

/* Deities Section */
.deities-section {
  padding: 80px 0;
  background-color: var(--background-medium);
}

.deities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.deity-card {
  background-color: var(--text-light);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px var(--shadow-color);
  transition: transform var(--transition-speed) ease, box-shadow var(--transition-speed) ease;
}

.deity-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px var(--shadow-color);
}

.deity-image img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.deity-info {
  padding: 20px;
}

.deity-info h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: var(--accent-color);
}

/* Divine Powers Section */
.divine-powers {
  padding: 100px 0;
  color: var(--text-light);
  position: relative;
}

.divine-bg {
  background-image: url('https://img.freepik.com/premium-photo/blurred-buddhist-temple-interior-with-no-people-classical-interior-light-colors-background-wallpaper_935074-28695.jpg?semt=ais_hybrid');
  height: 190%;;
}

.powers-content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.powers-content p {
  margin-bottom: 20px;
  line-height: 1.8;
}

.highlight-text {
  font-size: 22px;
  font-weight: 600;
  color: var(--secondary-color);
  margin: 30px 0;
}

.blessing-quote {
  position: relative;
  padding: 30px 50px;
  margin: 40px 0;
  border-left: 5px solid var(--primary-color);
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 0 10px 10px 0;
}

.blessing-quote::before {
  content: '"';
  position: absolute;
  top: 0;
  left: 20px;
  font-size: 60px;
  color: var(--primary-color);
  line-height: 1;
  font-family: serif;
}

.blessing-quote p {
  font-size: 20px;
  font-style: italic;
  margin-bottom: 0;
}

/* Special Days Section */
.special-days {
  padding: 80px 0;
  background-color: var(--background-light);
}

.days-content {
  text-align: center;
}

.days-content > p {
  max-width: 800px;
  margin: 0 auto 40px;
}

.special-days-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.special-day-item {
  background-color: var(--text-light);
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 5px 15px var(--shadow-color);
  transition: transform var(--transition-speed) ease;
}

.special-day-item:hover {
  transform: translateY(-10px);
}

.day-icon {
  font-size: 36px;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.day-info h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: var(--accent-color);
}

/* Spiritual Guidance Section */
.spiritual-guidance {
  padding: 80px 0;
  background-color: var(--background-medium);
}

.guidance-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.guidance-image {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 30px var(--shadow-color);
}

.guidance-text p {
  margin-bottom: 20px;
}

.contact-details {
  margin: 20px 0;
  padding: 15px;
  background-color: var(--text-light);
  border-radius: 10px;
  box-shadow: 0 5px 15px var(--shadow-color);
}

.contact-details p {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
}

.contact-details p i {
  margin-right: 10px;
  color: var(--primary-color);
  font-size: 18px;
  width: 25px;
  text-align: center;
}

.whatsapp-invite {
  margin-top: 30px;
  padding: 20px;
  background-color: rgba(37, 211, 102, 0.1);
  border-radius: 10px;
  border-left: 5px solid #25D366;
}

.whatsapp-invite p {
  margin-bottom: 15px;
}

/* Responsive styles for About page */
@media screen and (max-width: 992px) {
  .page-banner {
      height: 250px;
      margin-top: 80px;
  }
  .history-content,
  .guidance-content {
      grid-template-columns: 1fr;
  }
  
  .history-image,
  .guidance-image {
      order: -1;
      margin-bottom: 30px;
  }
  
  .banner-content h1 {
      font-size: 28px;
  }
  
  .highlight-text {
      font-size: 18px;
  }
  
  .blessing-quote {
      padding: 20px 30px;
  }
  
  .blessing-quote p {
      font-size: 18px;
  }
}

@media screen and (max-width: 768px) {
  .page-banner {
      height: 200px;
      margin-top: 70px;
  }
  
  .deity-image img {
      height: 200px;
  }
  
  .special-days-grid {
      grid-template-columns: 1fr 1fr;
  }
  
  .blessing-quote {
      padding: 15px 25px;
  }
  
  .blessing-quote::before {
      font-size: 40px;
      left: 10px;
  }
}

@media screen and (max-width: 576px) {
  .page-banner {
      height: 180px;
  }
  
  .banner-content h1 {
      font-size: 24px;
  }
  
  .special-days-grid {
      grid-template-columns: 1fr;
  }
  
  .blessing-quote {
      padding: 15px;
      margin: 20px 0;
  }
  
  .blessing-quote::before {
      display: none;
  }
  
  .highlight-text {
      font-size: 16px;
  }
}

/* POOJA */
/* Styles for Poojas & Offerings Page */

/* Pooja Introduction Section */
.pooja-intro {
  padding: 80px 0;
  background-color: var(--background-light);
}

.intro-content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.intro-content p {
  margin-bottom: 20px;
  line-height: 1.8;
}

/* Daily Poojas Section */
.daily-poojas {
  padding: 80px 0;
  background-color: var(--background-medium);
}

.pooja-schedule {
  max-width: 800px;
  margin: 0 auto;
}

.schedule-table {
  background-color: var(--text-light);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px var(--shadow-color);
}

.schedule-row {
  display: flex;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  transition: background-color var(--transition-speed) ease;
}

.schedule-row:last-child {
  border-bottom: none;
}

.schedule-row:hover {
  background-color: rgba(255, 69, 0, 0.05);
}

.schedule-time {
  width: 120px;
  padding: 20px;
  font-weight: 600;
  color: var(--accent-color);
  background-color: rgba(255, 69, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}

.schedule-ritual {
  flex: 1;
  padding: 20px;
}

.schedule-ritual h3 {
  margin-bottom: 5px;
  color: var(--text-dark);
  font-size: 18px;
}

.schedule-ritual p {
  color: var(--text-dark);
  opacity: 0.8;
  font-size: 14px;
}

/* Special Poojas Section */
.special-poojas {
  padding: 80px 0;
  background-color: var(--background-light);
}

.poojas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.pooja-card {
  background-color: var(--text-light);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px var(--shadow-color);
  transition: transform var(--transition-speed) ease, box-shadow var(--transition-speed) ease;
}

.pooja-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px var(--shadow-color);
}

.pooja-image img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.pooja-info {
  padding: 20px;
}

.pooja-info h3 {
  font-size: 20px;
  margin-bottom: 5px;
  color: var(--accent-color);
}

.pooja-info h4 {
  font-size: 16px;
  margin-bottom: 15px;
  color: var(--primary-color);
  font-weight: 500;
}

.pooja-info p {
  margin-bottom: 15px;
}

.pooja-benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 15px;
}

.pooja-benefits span {
  background-color: rgba(255, 69, 0, 0.1);
  color: var(--primary-color);
  font-size: 12px;
  padding: 5px 10px;
  border-radius: 50px;
  font-weight: 500;
}

/* Personal Consultation Section */
/* Personal Consultation Section */
.consultation-section {
  padding: 100px 0;
  color: var(--text-light);
  position: relative;
  background-image: url('https://img.freepik.com/premium-photo/blurred-buddhist-temple-interior-with-no-people-classical-interior-light-colors-background-wallpaper_935074-28695.jpg');
  background-size: cover;
  background-position: center;
}

/* Add overlay to make text more readable */
.consultation-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 0;
}

/* Ensure container is above overlay */
.consultation-section .container {
  position: relative;
  z-index: 1;
}

.consultation-content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.consultation-content p {
  margin-bottom: 20px;
  line-height: 1.8;
}

/* Make benefits display horizontally */
.consultation-benefits {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin: 40px 0;
}

.benefit-item {
  background-color: rgba(255, 255, 255, 0.1);
  padding: 30px;
  border-radius: 10px;
  transition: transform var(--transition-speed) ease;
  flex: 1;
  min-width: 250px;
  max-width: 300px;
}

.benefit-item:hover {
  transform: translateY(-10px);
  background-color: rgba(255, 255, 255, 0.2);
}

.benefit-icon {
  font-size: 36px;
  color: var(--secondary-color);
  margin-bottom: 20px;
}

.benefit-info h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: var(--text-light);
}

.contact-action {
  margin-top: 40px;
}

.contact-action p {
  font-size: 18px;
  margin-bottom: 15px;
}

.contact-details {
  background-color: rgba(255, 255, 255, 0.1);
  padding: 15px;
  border-radius: 10px;
  margin-bottom: 20px;
  display: inline-block;
}

.contact-details p {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-details p:last-child {
  margin-bottom: 0;
}

.contact-details p i {
  margin-right: 10px;
  color: var(--secondary-color);
}

/* For smaller screens */
@media (max-width: 768px) {
  .consultation-benefits {
    flex-direction: column;
    align-items: center;
  }
  
  .benefit-item {
    width: 100%;
    max-width: 100%;
  }
}
/* Offering Guidelines Section */
.offering-guidelines {
  padding: 80px 0;
  background-color: var(--background-medium);
}

.guidelines-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.guidelines-image {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 30px var(--shadow-color);
}

.guidelines-list h3 {
  font-size: 24px;
  margin-bottom: 20px;
  color: var(--accent-color);
}

.guidelines-list ul {
  list-style: none;
  margin-bottom: 20px;
}

.guidelines-list ul li {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
}

.guidelines-list ul li i {
  color: var(--primary-color);
  margin-right: 10px;
}

.note-box {
  background-color: rgba(255, 69, 0, 0.1);
  padding: 20px;
  border-radius: 10px;
  border-left: 4px solid var(--primary-color);
  margin-top: 30px;
}

.note-box h4 {
  font-size: 18px;
  margin-bottom: 10px;
  color: var(--primary-color);
  display: flex;
  align-items: center;
}

.note-box h4 i {
  margin-right: 10px;
}

.note-box p {
  margin-bottom: 0;
}

/* WhatsApp Group Section */
.whatsapp-section {
  padding: 60px 0;
  background-color: var(--background-light);
}

.whatsapp-card {
  background-color: #128C7E;
  color: var(--text-light);
  border-radius: 10px;
  padding: 40px;
  display: flex;
  align-items: center;
  box-shadow: 0 10px 30px rgba(18, 140, 126, 0.3);
}

.whatsapp-icon {
  font-size: 60px;
  margin-right: 30px;
}

.whatsapp-content {
  flex: 1;
}

.whatsapp-content h3 {
  font-size: 24px;
  margin-bottom: 15px;
}

.whatsapp-content p {
  margin-bottom: 20px;
  opacity: 0.9;
}

.whatsapp-content .whatsapp-btn {
  background-color: white;
  color: #128C7E;
  border: 2px solid white;
}

.whatsapp-content .whatsapp-btn:hover {
  background-color: transparent;
  color: white;
}

/* Responsive Styles */
@media screen and (max-width: 992px) {
  .guidelines-content {
      grid-template-columns: 1fr;
  }
  
  .guidelines-image {
      order: -1;
      margin-bottom: 30px;
  }
  
  .consultation-benefits {
      grid-template-columns: 1fr 1fr;
  }
  
  .whatsapp-card {
      flex-direction: column;
      text-align: center;
  }
  
  .whatsapp-icon {
      margin-right: 0;
      margin-bottom: 20px;
  }
}

@media screen and (max-width: 768px) {
  .poojas-grid {
      grid-template-columns: 1fr;
  }
  
  .schedule-row {
      flex-direction: column;
  }
  
  .schedule-time {
      width: 100%;
      padding: 10px;
  }
  
  .consultation-benefits {
      grid-template-columns: 1fr;
  }
}

@media screen and (max-width: 576px) {
  .schedule-table {
      border-radius: 0;
  }
  
  .pooja-benefits {
      justify-content: center;
  }
  
  .whatsapp-card {
      padding: 20px;
  }
}
/* Styles for Events & Festivals Page */

/* Events Introduction Section */
.events-intro {
  padding: 80px 0;
  background-color: var(--background-light);
}

.intro-content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.intro-content p {
  margin-bottom: 20px;
  line-height: 1.8;
}

/* Upcoming Events Section */
.upcoming-events {
  padding: 80px 0;
  background-color: var(--background-medium);
}

.events-timeline {
  max-width: 900px;
  margin: 0 auto;
}

.event-card {
  display: flex;
  margin-bottom: 30px;
  background-color: var(--text-light);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px var(--shadow-color);
  transition: transform var(--transition-speed) ease;
}

.event-card:hover {
  transform: translateY(-10px);
}

.event-date {
  width: 120px;
  background-color: var(--primary-color);
  color: var(--text-light);
  padding: 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.event-date .month {
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
}

.event-date .day {
  font-size: 32px;
  font-weight: 700;
  margin: 5px 0;
}

.event-date .year {
  font-size: 14px;
  opacity: 0.8;
}

.event-details {
  flex: 1;
  padding: 20px;
}

.event-details h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: var(--accent-color);
}

.event-meta {
  display: flex;
  gap: 20px;
  margin-bottom: 15px;
  color: var(--text-dark);
  font-size: 14px;
  opacity: 0.8;
}

.event-meta span {
  display: flex;
  align-items: center;
}

.event-meta span i {
  margin-right: 5px;
}

.event-details p {
  margin-bottom: 15px;
}

.event-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.event-highlights span {
  background-color: rgba(255, 69, 0, 0.1);
  color: var(--primary-color);
  font-size: 12px;
  padding: 5px 10px;
  border-radius: 50px;
  font-weight: 500;
}

/* Annual Festivals Section */
.annual-festivals {
  padding: 100px 0;
  color: var(--text-light);
  position: relative;
}

.festivals-bg {
  background-image: url('../images/festivals-bg.jpg');
  filter: brightness(0.3);
}

.festivals-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.festival-card {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transition: transform var(--transition-speed) ease;
}

.festival-card:hover {
  transform: translateY(-10px);
  background-color: rgba(255, 255, 255, 0.2);
}

.festival-image img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.festival-info {
  padding: 20px;
}

.festival-info h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: var(--text-light);
}

.festival-info p {
  margin-bottom: 15px;
  font-size: 14px;
  opacity: 0.9;
}

.festival-time {
  font-size: 14px;
  opacity: 0.8;
  display: flex;
  align-items: center;
}

.festival-time span {
  display: flex;
  align-items: center;
}

.festival-time span i {
  margin-right: 5px;
  color: var(--secondary-color);
}

/* Special Days Section */
.special-days {
  padding: 80px 0;
  background-color: var(--background-light);
}

.special-days-content {
  max-width: 900px;
  margin: 0 auto;
}

.special-days-content > p {
  text-align: center;
  margin-bottom: 40px;
}

.special-days-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.special-day-box {
  background-color: var(--text-light);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px var(--shadow-color);
  transition: transform var(--transition-speed) ease;
}

.special-day-box:hover {
  transform: translateY(-10px);
}

.day-header {
  background-color: var(--primary-color);
  color: var(--text-light);
  padding: 15px;
  text-align: center;
}

.day-header h3 {
  font-size: 20px;
  margin-bottom: 5px;
}

.day-header span {
  font-size: 14px;
  opacity: 0.8;
}

.day-content {
  padding: 20px;
}

.day-content p {
  margin-bottom: 15px;
}

.day-timings {
  font-size: 14px;
  color: var(--accent-color);
  display: flex;
  align-items: center;
}

.day-timings span {
  display: flex;
  align-items: center;
}

.day-timings span i {
  margin-right: 5px;
}

/* Cultural Programs Section */
.cultural-programs {
  padding: 80px 0;
  background-color: var(--background-medium);
}

.programs-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.programs-image {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 30px var(--shadow-color);
}

.programs-info p {
  margin-bottom: 20px;
}

.programs-info h3 {
  font-size: 24px;
  margin: 30px 0 20px;
  color: var(--accent-color);
}

.programs-info ul {
  list-style: none;
  margin-bottom: 20px;
}

.programs-info ul li {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
}

.programs-info ul li i {
  margin-right: 10px;
  color: var(--primary-color);
  width: 20px;
  text-align: center;
}

/* Volunteer Section */
/* Volunteer Section */
.volunteer-section {
  padding: 100px 0;
  color: var(--text-light);
  position: relative;
  background: url('https://img.freepik.com/premium-photo/blurred-buddhist-temple-interior-with-no-people-classical-interior-light-colors-background-wallpaper_935074-28695.jpg') center/cover no-repeat;
}

.volunteer-content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  background: rgba(0, 0, 0, 0.6); /* Light overlay for readability */
  padding: 40px;
  border-radius: 10px;
}

.volunteer-content > p {
  margin-bottom: 20px;
  line-height: 1.8;
}

.volunteer-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin: 50px 0;
}

.volunteer-option {
  background-color: rgba(255, 255, 255, 0.1);
  padding: 30px;
  border-radius: 10px;
  transition: transform var(--transition-speed) ease;
}

.volunteer-option:hover {
  transform: translateY(-10px);
  background-color: rgba(255, 255, 255, 0.2);
}

.option-icon {
  font-size: 36px;
  color: var(--secondary-color);
  margin-bottom: 20px;
}

.option-details h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: var(--text-light);
}

.volunteer-contact {
  margin-top: 40px;
}

.volunteer-contact p {
  font-size: 18px;
  margin-bottom: 15px;
}

.volunteer-contact .contact-details {
  background-color: rgba(255, 255, 255, 0.1);
  padding: 15px;
  border-radius: 10px;
  margin-bottom: 20px;
  display: inline-block;
}

.volunteer-contact .contact-details p {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}

.volunteer-contact .contact-details p:last-child {
  margin-bottom: 0;
}

.volunteer-contact .contact-details p i {
  margin-right: 10px;
  color: var(--secondary-color);
}

/* WhatsApp Group Section */
.whatsapp-section {
  padding: 60px 0;
  background-color: var(--background-light);
}

.whatsapp-card {
  background-color: #128C7E;
  color: var(--text-light);
  border-radius: 10px;
  padding: 40px;
  display: flex;
  align-items: center;
  box-shadow: 0 10px 30px rgba(18, 140, 126, 0.3);
}

.whatsapp-icon {
  font-size: 60px;
  margin-right: 30px;
}

.whatsapp-content {
  flex: 1;
}

.whatsapp-content h3 {
  font-size: 24px;
  margin-bottom: 15px;
}

.whatsapp-content p {
  margin-bottom: 20px;
  opacity: 0.9;
}

.whatsapp-content .whatsapp-btn {
  background-color: white;
  color: #128C7E;
  border: 2px solid white;
}

.whatsapp-content .whatsapp-btn:hover {
  background-color: transparent;
  color: white;
}

/* Responsive Styles */
@media screen and (max-width: 992px) {
  .programs-content {
      grid-template-columns: 1fr;
  }
  
  .programs-image {
      order: -1;
      margin-bottom: 30px;
  }
  
  .volunteer-options {
      grid-template-columns: 1fr 1fr;
  }
  
  .whatsapp-card {
      flex-direction: column;
      text-align: center;
  }
  
  .whatsapp-icon {
      margin-right: 0;
      margin-bottom: 20px;
  }
}

@media screen and (max-width: 768px) {
  .event-card {
      flex-direction: column;
  }
  
  .event-date {
      width: 100%;
      flex-direction: row;
      justify-content: center;
      gap: 15px;
      padding: 10px;
  }
  
  .event-date .month,
  .event-date .day,
  .event-date .year {
      font-size: 16px;
  }
  
  .festivals-grid {
      grid-template-columns: 1fr;
  }
  
  .special-days-grid {
      grid-template-columns: 1fr;
  }
  
  .volunteer-options {
      grid-template-columns: 1fr;
  }
}

@media screen and (max-width: 576px) {
  .event-meta {
      flex-direction: column;
      gap: 5px;
  }
  
  .event-highlights {
      justify-content: center;
  }
  
  .day-header h3 {
      font-size: 18px;
  }
  
  .whatsapp-card {
      padding: 20px;
  }
}
/* Styles for Contact Page */

/* Contact Information Section */
.contact-info {
  padding: 80px 0;
  background-color: var(--background-light);
}

.info-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.info-card {
  background-color: var(--text-light);
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 15px var(--shadow-color);
  transition: transform var(--transition-speed) ease;
}

.info-card:hover {
  transform: translateY(-10px);
}

.card-icon {
  font-size: 36px;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.info-card h3 {
  font-size: 20px;
  margin-bottom: 15px;
  color: var(--accent-color);
}

.info-card p {
  margin-bottom: 5px;
}

.info-card a {
  color: var(--text-dark);
  transition: color var(--transition-speed) ease;
}

.info-card a:hover {
  color: var(--primary-color);
}

.timing {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 1px dashed rgba(0, 0, 0, 0.1);
}

.timing:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.timing .day {
  font-weight: 600;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 15px;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--primary-color);
  color: var(--text-light) !important;
  transition: all var(--transition-speed) ease;
}

.social-link:hover {
  background-color: var(--accent-color);
  transform: translateY(-5px);
}

/* Map and Inquiry Section */
.map-inquiry {
  padding: 80px 0;
  background-color: var(--background-medium);
}

.map-inquiry-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.map-container h3,
.inquiry-form h3 {
  font-size: 24px;
  margin-bottom: 20px;
  color: var(--accent-color);
}

.map-frame {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 30px var(--shadow-color);
  margin-bottom: 20px;
}

.directions {
  background-color: var(--text-light);
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 5px 15px var(--shadow-color);
}

.directions h4 {
  font-size: 18px;
  margin-bottom: 10px;
  color: var(--accent-color);
}

.directions p {
  margin-bottom: 15px;
}

.directions .btn {
  display: inline-flex;
  align-items: center;
}

.directions .btn i {
  margin-right: 10px;
}

.inquiry-form {
  background-color: var(--text-light);
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 10px 30px var(--shadow-color);
}

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

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 16px;
  transition: border-color var(--transition-speed) ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary-color);
  outline: none;
}

.inquiry-form button {
  width: 100%;
  padding: 12px;
  font-size: 16px;
}

/* WhatsApp Group Section */
.whatsapp-contact {
  padding: 80px 0;
  background-color: var(--background-light);
}

.whatsapp-box {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 30px;
  background-color: #128C7E;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(18, 140, 126, 0.3);
}

.whatsapp-content {
  padding: 40px;
  color: var(--text-light);
}

.whatsapp-content h3 {
  font-size: 24px;
  margin-bottom: 20px;
}

.whatsapp-content p {
  margin-bottom: 20px;
  line-height: 1.6;
}

.whatsapp-button {
  margin-top: 30px;
}

.whatsapp-button .btn {
  background-color: white;
  color: #128C7E;
  border: 2px solid white;
  display: inline-flex;
  align-items: center;
}

.whatsapp-button .btn i {
  margin-right: 10px;
}

.whatsapp-button .btn:hover {
  background-color: transparent;
  color: white;
}

.whatsapp-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}


/* Message from Administrator Section */
.admin-message {
  padding: 80px 0;
  background-color: var(--background-light);
}

.message-box {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 40px;
  background-color: var(--text-light);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 30px var(--shadow-color);
}

.message-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.message-content {
  padding: 40px;
}

.message-content h3 {
  font-size: 24px;
  margin-bottom: 20px;
  color: var(--accent-color);
}

.message-content p {
  margin-bottom: 15px;
  line-height: 1.8;
}

.admin-signature {
  margin-top: 30px;
  border-top: 1px dashed rgba(0, 0, 0, 0.1);
  padding-top: 20px;
}

.admin-signature p {
  margin-bottom: 5px;
}

.admin-signature h4 {
  font-size: 20px;
  margin-bottom: 5px;
  color: var(--accent-color);
}

/* Responsive Styles */
@media screen and (max-width: 992px) {
  .map-inquiry-content {
      grid-template-columns: 1fr;
      gap: 30px;
  }
  
  .whatsapp-box {
      grid-template-columns: 1fr;
  }
  
  .whatsapp-image {
      display: none;
  }
  
  .message-box {
      grid-template-columns: 1fr;
  }
  
  .message-image {
      height: 300px;
  }
}

@media screen and (max-width: 768px) {
  .info-cards {
      grid-template-columns: 1fr 1fr;
  }
  
  .guidance-features {
      grid-template-columns: 1fr;
  }
  
  .feature {
      text-align: center;
      flex-direction: column;
      align-items: center;
  }
  
  .feature-icon {
      margin-right: 0;
      margin-bottom: 15px;
  }
  
  .contact-buttons {
      flex-direction: column;
      gap: 10px;
  }
}

@media screen and (max-width: 576px) {
  .info-cards {
      grid-template-columns: 1fr;
  }
  
  .whatsapp-content,
  .message-content {
      padding: 20px;
  }
  
  .message-image {
      height: 200px;
  }
}