.elementor-15741 .elementor-element.elementor-element-d9b8a50{--display:flex;}/* Start custom CSS for html, class: .elementor-element-3d68cdb *//* Basic Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Noto Sans', sans-serif; /* Devotional-friendly font */
  background-color: #f5f5f5;
  color: #2a2a2a;
  line-height: 1.6;
  padding: 20px;
}

/* Hero Section */
.hero-section {
  background-image: url('https://bhaktivibes.in/wp-content/uploads/2025/04/logo-website-11.png');
  background-size: cover;
  background-position: center;
  background: linear-gradient(to right, #f39c12, #EFEEEA); /* Saffron to deep orange */
  color: #fffff;
  text-align: center;
  padding: 80px 20px;
  border-radius: 8px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  animation: fadeInUp 1s ease-out;
}

.hero-title {
  font-size: 3rem;
  font-weight: 700;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  margin-bottom: 20px;
  font-family: 'Mangal', sans-serif;
}

.hero-description {
  font-size: 1.3rem;
  font-style: italic;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
  opacity: 0;
  animation: fadeInUp 1s ease-out 0.5s forwards;
}

/* Introductory Content Block */
.intro-section {
  padding: 60px 20px;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
  margin-top: -40px; /* Pulls the section up */
  animation: slideIn 1.2s ease-out;
}

.content-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

/* Main text-block styling */
.text-block {
    margin-bottom: 30px;
    text-align: justify;
    font-family: 'Garamond', serif; /* Classic, old-style font for the vintage look */
    font-size: 20px; /* Slightly larger for better readability */
    line-height: 1.8; /* Adjust line height for clarity */
    color: #4a3c32; /* Dark brown text to match vintage look */
    background: #f4e1b2; /* Light beige background for aged paper feel */
    padding: 30px;
    border-radius: 10px;
    box-shadow: 3px 3px 15px rgba(0, 0, 0, 0.1); /* Soft shadow for depth */
    border: 2px solid #d1c39d; /* Subtle border like old manuscript */
    opacity: 0;
    transform: translateY(30px); /* Start from below */
    animation: fadeInUp 1.5s ease-out 0.5s forwards, textPop 1.5s ease-in-out forwards;
}

/* Fade-in and move-up animation */
@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Subtle text pop effect */
@keyframes textPop {
    0% {
        transform: scale(0.98);
        opacity: 0;
    }
    50% {
        transform: scale(1.05);
        opacity: 1;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* Optional hover effect to make text block stand out */
.text-block:hover {
    background: #fff6e1; /* Slightly lighter beige */
    box-shadow: 5px 5px 25px rgba(0, 0, 0, 0.2); /* Deeper shadow */
    transform: scale(1.03); /* Slight zoom effect */
}

/* Optional icon or symbol effect on hover */
.text-block:hover::before {
    content: '📜'; /* Scroll icon to match the old book feel */
    font-size: 30px;
    color: #8b6d2b;
    position: absolute;
    top: -10px;
    right: -10px;
    font-family: 'Georgia', serif;
    animation: popIcon 1s ease-out forwards;
}

@keyframes popIcon {
    0% {
        transform: scale(0);
    }
    50% {
        transform: scale(1.2);
    }
    100% {
        transform: scale(1);
    }
}

/* Optional vintage parchment texture */
.text-block {
    background: url('https://yourimageurl.com/old-paper-texture.png') repeat; /* Add a paper texture */
    background-size: cover;
}


/* Optional hover effect to make text block stand out */
.text-block:hover {
    background: linear-gradient(135deg, #ff7f50, #f9a825); /* Slightly more vibrant when hovered */
    box-shadow: 0px 8px 25px rgba(0, 0, 0, 0.3); /* Deeper shadow on hover */
    transform: scale(1.02); /* Slight zoom effect */
}

/* Optional icon or symbol effect on hover */
.text-block:hover::before {
    content: '';
    font-size: 24px;
    color: #f57c00;
    position: absolute;
    top: -15px;
    right: -15px;
    font-family: 'Dancing Script', cursive;
    animation: popIcon 1s ease-out forwards;
}

@keyframes popIcon {
    0% {
        transform: scale(0);
    }
    50% {
        transform: scale(1.2);
    }
    100% {
        transform: scale(1);
    }
}


.text-hindi, .text-english {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 15px;
  font-family: 'Mangal', sans-serif;
}

.text-english {
  font-family: 'Arial', sans-serif;
}

/* Temple List */
.temple-list {
  padding: 60px 20px;
  background-color: #f0e2c9;
  border-radius: 8px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
  margin-top: 30px;
  animation: slideIn 1.5s ease-out;
}

.temple-item {
  background-color: #fff;
  margin-bottom: 30px;
  padding: 30px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  transform: translateY(30px);
  opacity: 0;
  animation: fadeInUp 1s ease-out forwards;
}

.temple-title {
  font-size: 2rem;
  color: #b03a2e;
  font-weight: 700;
  margin-bottom: 15px;
  text-align: center;
  font-family: 'Mangal', sans-serif;
}

.temple-description {
  font-size: 1.1rem;
  color: #555;
  line-height: 1.8;
  margin-bottom: 15px;
  font-family: 'Arial', sans-serif;
}

/* Decorative Borders, Icons, and Patterns */
.temple-item {
  border-left: 6px solid #f39c12;
}

.temple-title {
  border-bottom: 2px solid #f39c12;
  padding-bottom: 10px;
}

/* Flex Layout for Bilingual Content */
.content-section {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.text-block p {
  width: 100%;
}
.temple-image {
    display: flex;
    justify-content: center; /* Horizontally centers the image */
    align-items: center;     /* Vertically centers the image */
}

.temple-image img {
    max-width: 100%;          /* Ensures image is responsive */
    height: auto;             /* Maintains aspect ratio */
}

/* Responsive Layout for Mobile */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2rem;
  }

  .hero-description {
    font-size: 1rem;
  }

  .temple-item {
    padding: 20px;
  }

  .temple-title {
    font-size: 1.6rem;
  }

  .temple-description {
    font-size: 1rem;
  }
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.temple-title::before {
  content: url('path-to-icon/temple-icon.png');
  margin-right: 10px;
}
.temple-item {
    transition: transform 0.3s ease-in-out;
}
.temple-item:hover {
    transform: translateY(-5px); /* Slight upward shift on hover */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}
.temple-item {
    border: 3px solid #f39c12;
    padding: 15px;
    border-radius: 8px;
    background-image: url('path-to-pattern/paisley-pattern.png');
    background-repeat: repeat;
}
.quotes-section {
    background-color: #fff5e6;
    padding: 40px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}
.quote {
    font-size: 1.5rem;
    font-style: italic;
    color: #2c3e50;
}
.quote footer {
    margin-top: 15px;
    font-size: 1rem;
    color: #e67e22;
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-beb2285 */.did-you-know-hero {
  background: linear-gradient(to right, #fdf6e3, #fff8dc);
  padding: 60px 20px;
  text-align: center;
  border-bottom: 2px solid #f0e68c;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.hero-content {
  max-width: 800px;
  margin: auto;
  background-color: #fffdf5;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 6px 15px rgba(0,0,0,0.1);
}

.did-you-know-hero h1 {
  font-size: 36px;
  color: #b36200;
  margin-bottom: 20px;
  font-family: 'Georgia', serif;
}

.did-you-know-hero p {
  font-size: 18px;
  color: #333;
  line-height: 1.7;
  font-family: 'Noto Serif Devanagari', serif;
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-f5d05f6 */.testimonials {
    background-color: #f9e4b7;
    padding: 40px;
    border-radius: 8px;
    text-align: center;
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-77e1a96 */.faq-section {
  max-width: 800px;
  margin: 60px auto;
  background: linear-gradient(to right, #fffaf0, #fdf6e3);
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  font-family: 'Noto Serif Devanagari', serif;
}

.faq-section h2 {
  text-align: center;
  color: #b36200;
  margin-bottom: 30px;
  font-size: 28px;
}

.faq-item {
  margin-bottom: 15px;
  border: 1px solid #eee8aa;
  border-radius: 10px;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  padding: 15px 20px;
  background-color: #fef9e7;
  font-size: 16px;
  font-weight: bold;
  text-align: left;
  cursor: pointer;
  border: none;
  outline: none;
  color: #5d4037;
  transition: background 0.3s;
}

.faq-question:hover {
  background-color: #fceabb;
}

.faq-answer {
  padding: 15px 20px;
  display: none;
  background-color: #fffef5;
  font-size: 15px;
  color: #333;
  border-top: 1px solid #f0e68c;
}

.faq-answer p {
  margin: 0;
  line-height: 1.6;
}/* End custom CSS */