/* Base Styles */
:root {
  --primary-color: #e28014;
  --primary-dark: #c96d0f;
  --primary-light: #f0a94d;
  --secondary-color: #8a2be2;
  --text-dark: #333;
  --text-light: #666;
  --bg-light: #f8f9fa;
  --white: #ffffff;
  --black: #000000;
  --shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  --transition: all 0.3s ease;
}

/* Loader Styles */
#loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgb(59 59 61 / 96%);
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

#loader.hidden {
  opacity: 0;
  visibility: hidden;
}

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

.loader-logo {
  width: 200px;
  height: 200px;
  animation: loaderSpin 2.5s linear infinite, loaderPulse 2.5s ease-in-out infinite;
}

@keyframes loaderSpin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes loaderPulse {
  0%,
  100% {
    transform: scale(1) rotate(0deg);
    opacity: 1;
  }
  50% {
    transform: scale(1.1) rotate(180deg);
    opacity: 0.7;
  }
}

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

body {
  font-family: "Poppins", sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  background-color: var(--white);
}

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

/* Header Styles */
.header {
  background-color: rgba(255, 255, 255, 0.95);
  box-shadow: var(--shadow);
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(10px);
}

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

.logo h2 {
  font-family: "Playfair Display", serif;
  font-size: 1.8rem;
  color: var(--primary-color);
  cursor: pointer;
}

.logo span {
  color: var(--text-dark);
}

/* Menu Toggle */
.menu-toggle {
  cursor: pointer;
  z-index: 101;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hamburger-icon {
  width: 50px;
  height: 50px;
  transition: var(--transition);
}

.hamburger-icon:hover {
  transform: scale(1.1);
}

.cross-icon {
  font-size: 2rem;
  color: var(--primary-color);
  display: none;
  cursor: pointer;
}

/* Responsive Menu */
.responsive-menu {
  position: fixed;
  top: 0;
  right: -300px;
  width: 300px;
  height: 100%;
  background-color: var(--white);
  box-shadow: var(--shadow);
  padding: 80px 20px 20px;
  z-index: 1000;
  transition: right 0.3s ease;
}

.responsive-menu.active {
  right: 0;
}

.close-menu {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 2rem;
  color: var(--primary-color);
  cursor: pointer;
  z-index: 1001;
}

.menu-list {
  list-style: none;
}

.menu-list li {
  margin: 0 0 20px 0;
}

.menu-list a {
  display: block;
  padding: 10px 20px;
  color: var(--text-dark);
  text-decoration: none;
  font-weight: 500;
  transition: var(--transition);
  position: relative;
}

.menu-list a:hover,
.menu-list a.active {
  color: var(--primary-color);
}

.menu-list a::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary-color);
  transition: var(--transition);
}

.menu-list a:hover::after,
.menu-list a.active::after {
  width: 100%;
}

/* Button Styles */
.btn {
  display: inline-block;
  padding: 12px 25px;
  background-color: var(--primary-color);
  color: var(--white);
  border: none;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
  font-size: 0.9rem;
  position: relative;
  overflow: hidden;
}

.btn:hover {
  background-color: var(--primary-dark);
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(226, 128, 20, 0.3);
}

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

/* Hero Section */
.hero {
  position: relative;
  height: 80vh;
  overflow: hidden;
}

.hero-slider {
  position: relative;
  width: 100%;
  height: 100%;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
    url("../assets/images/shiva1.webp") no-repeat center center/cover;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 1s ease, transform 1s ease;
  transform: translateX(100%);
}

.slide.active {
  opacity: 1;
  transform: translateX(0);
}

.slide.prev {
  transform: translateX(-100%);
}

.slide-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

.video-slide::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1;
}

.video-slide .slide-content {
  z-index: 2;
}

.video-fallback {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
    url("../assets/images/shiva1.webp") no-repeat center center/cover;
  z-index: 0;
}

.video-placeholder {
  text-align: center;
  color: white;
  background: rgba(0, 0, 0, 0.5);
  padding: 20px;
  border-radius: 10px;
}

.video-placeholder i {
  font-size: 3rem;
  margin-bottom: 15px;
  color: var(--primary-color);
}

/* Audio Section */
.audio-section {
  padding: 60px 0;
  background-color: var(--bg-light);
  text-align: center;
  padding-bottom: 130px;
}

.audio-section h2 {
  font-family: "Playfair Display", serif;
  font-size: 2.2rem;
  margin-bottom: 30px;
  color: var(--text-dark);
  position: relative;
}

.audio-section h2::after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background-color: var(--primary-color);
}

.audio-player {
  max-width: 600px;
  margin: 0 auto;
  background: white;
  padding: 30px;
  border-radius: 10px;
  box-shadow: var(--shadow);
}

.audio-player h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.5rem;
  margin-bottom: 20px;
  color: var(--text-dark);
}

.audio-controls {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.progress-container {
  width: 100%;
  height: 10px;
  background-color: #ddd;
  border-radius: 5px;
  overflow: hidden;
  margin: 10px 0;
}

.progress-bar {
  height: 100%;
  background-color: var(--primary-color);
  width: 0%;
  border-radius: 5px;
  transition: width 0.1s linear;
}

.controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin: 20px 0;
}

.controls button {
  background: var(--primary-color);
  color: white;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.controls button:hover {
  background: var(--primary-dark);
  transform: scale(1.1);
}

.volume-controls {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 10px;
}

.volume-controls input {
  width: 100px;
}

.audio-list {
  margin-top: 30px;
  text-align: left;
}

.audio-list h4 {
  font-size: 1.2rem;
  margin-bottom: 15px;
  color: var(--text-dark);
}

.audio-tracks {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.audio-track {
  display: flex;
  align-items: center;
  padding: 10px;
  background: #f0f0f0;
  border-radius: 5px;
  cursor: pointer;
  transition: var(--transition);
}

.audio-track:hover {
  background: #e0e0e0;
}

.audio-track.active {
  background: var(--primary-light);
  color: white;
}

.audio-track i {
  margin-right: 10px;
  color: var(--primary-color);
}

.audio-track.active i {
  color: white;
}

.slide.active {
  opacity: 1;
}

.slide-content {
  text-align: center;
  color: var(--white);
  max-width: 800px;
  padding: 0 20px;
  z-index: 2;
}

.slide-content h1 {
  font-family: "Playfair Display", serif;
  font-size: 3rem;
  margin-bottom: 20px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.slide-content p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

/* Shiva decorations for hero section */
.hero::before {
  content: "ლ(ಠ益ಠ)ლ";
  position: absolute;
  top: 20px;
  left: 20px;
  font-size: 2rem;
  color: rgba(255, 255, 255, 0.2);
  transform: rotate(-30deg);
  z-index: 1;
}

.hero::after {
  content: "🔱";
  position: absolute;
  bottom: 20px;
  right: 20px;
  font-size: 2rem;
  color: rgba(255, 255, 255, 0.2);
  transform: rotate(30deg);
  z-index: 1;
}

.slider-nav {
  position: absolute;
  bottom: 30px;
  width: 100%;
  display: flex;
  justify-content: center;
  z-index: 3;
}

.slider-nav span {
  background-color: rgba(255, 255, 255, 0.3);
  color: var(--white);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 10px;
  cursor: pointer;
  transition: var(--transition);
}

.slider-nav span:hover {
  background-color: var(--primary-color);
}

/* Location Section */
.location-section {
  padding: 60px 0;
  background-color: var(--bg-light);
  position: relative;
  overflow: hidden;
}

.location-content {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.location-icon {
  font-size: 3rem;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.location-content h2 {
  font-family: "Playfair Display", serif;
  font-size: 2rem;
  margin-bottom: 15px;
  color: var(--text-dark);
}

.location-content p {
  font-size: 1.1rem;
  color: var(--text-light);
  margin-bottom: 30px;
}

.location-btn {
  padding: 15px 30px;
  font-size: 1rem;
}

/* Categories Section */
.categories {
  padding: 80px 0;
}

.section-title {
  font-family: "Playfair Display", serif;
  text-align: center;
  font-size: 2.2rem;
  margin-bottom: 50px;
  color: var(--text-dark);
  position: relative;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background-color: var(--primary-color);
}

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

.category-card-link {
  text-decoration: none;
}

.category-card {
  background-color: var(--white);
  border-radius: 10px;
  box-shadow: var(--shadow);
  padding: 40px 20px;
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  min-height: 300px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.category-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.category-card:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
  background-color: rgba(226, 128, 20, 0.2);
}

.category-card > * {
  position: relative;
  z-index: 2;
  color: white;
}

.category-card h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
  color: white;
}

.category-card p {
  color: rgba(255, 255, 255, 0.9);
}

/* Popular Temples */
.popular-temples {
  padding: 80px 0;
  background-color: var(--bg-light);
  position: relative;
}

.temples-carousel {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  position: relative;
  z-index: 1;
}

.temple-card {
  background-color: var(--white);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  position: relative;
}

.temple-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.temple-img {
  height: 200px;
  overflow: hidden;
  position: relative;
}

.temple-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.temple-card:hover .temple-img img {
  transform: scale(1.1);
}

/* Shiva decorations for temple cards */
.temple-card::before {
  content: "🔱";
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 1.5rem;
  color: rgba(226, 128, 20, 0.3);
  z-index: 3;
}

.temple-info {
  padding: 20px;
  position: relative;
  z-index: 2;
}

.temple-info h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: var(--text-dark);
}

.temple-info p {
  color: var(--text-light);
  margin-bottom: 15px;
}

.temple-meta {
  display: flex;
  align-items: center;
  color: var(--text-light);
}

.temple-meta span {
  margin-right: 15px;
  font-size: 0.9rem;
}

.temple-meta i {
  margin-right: 5px;
  color: var(--primary-color);
}

/* Mantras Section */
.mantras {
  padding: 80px 0;
}

.mantra-slider {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  background-color: var(--white);
  border-radius: 10px;
  box-shadow: var(--shadow);
  padding: 50px 30px;
  position: relative;
  border: 1px solid rgba(226, 128, 20, 0.2);
}

.mantra-slider::before {
  content: "ॐ";
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 3rem;
  color: var(--primary-color);
  background-color: var(--white);
  padding: 0 15px;
}

.mantra-slide {
  display: none;
}

.mantra-slide.active {
  display: block;
  animation: fadeIn 1s ease;
}

.mantra-slide p {
  font-family: "Playfair Display", serif;
  font-size: 1.8rem;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.mantra-slide .translation {
  font-size: 1.2rem;
  color: var(--text-light);
  font-style: italic;
  margin-bottom: 30px;
}

.mantra-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.mantra-actions .btn {
  display: flex;
  align-items: center;
  padding: 10px 20px;
}

/* Shiva decorations for mantra section */
.mantra-slider::after {
  content: "ॐ";
  position: absolute;
  bottom: -20px;
  right: 20px;
  font-size: 3rem;
  color: var(--primary-color);
  background-color: var(--white);
  padding: 0 15px;
}

/* Temple List Page */
.temple-list-hero {
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
    url("../assets/images/shiva3.jpg") no-repeat center center/cover;
  height: 40vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  text-align: center;
  position: relative;
}

.temple-list-hero h1 {
  font-family: "Playfair Display", serif;
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.temple-list-hero p {
  font-size: 1.2rem;
}

/* Filter Section */
.filter-section {
  padding: 40px 0;
  background-color: var(--bg-light);
}

.filter-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: end;
}

.filter-group {
  flex: 1;
  min-width: 200px;
}

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

.filter-group label i {
  margin-right: 8px;
  color: var(--primary-color);
}

.filter-group input,
.filter-group select {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-family: "Poppins", sans-serif;
}

.filter-btn {
  height: fit-content;
  padding: 12px 20px;
}

/* Temple List */
.temple-list-section {
  padding: 60px 0;
}

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

.temple-item {
  background-color: var(--white);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  position: relative;
}

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

.temple-image {
  height: 200px;
  overflow: hidden;
  position: relative;
}

.temple-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.temple-item:hover .temple-image img {
  transform: scale(1.1);
}

.temple-details {
  padding: 20px;
  position: relative;
  z-index: 2;
}

.temple-details h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: var(--text-dark);
}

.temple-details p {
  color: var(--text-light);
  margin-bottom: 15px;
}

.temple-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
}

.temple-meta span {
  font-size: 0.9rem;
  color: var(--text-light);
  display: flex;
  align-items: center;
}

.temple-meta i {
  margin-right: 5px;
  color: var(--primary-color);
}

.temple-btn {
  padding: 10px 20px;
  font-size: 0.9rem;
}

/* Temple Details Page Slider */
.temple-details-slider {
  position: relative;
  height: 60vh;
  overflow: hidden;
}

.slider-container {
  position: relative;
  width: 100%;
  height: 100%;
}

.slider-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
}

.slider-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease;
}

.slider-slide.active {
  opacity: 1;
}

.slider-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.breadcrumb-menu {
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 10;
  background-color: rgba(255, 255, 255, 0.8);
  padding: 10px 15px;
  border-radius: 5px;
}

.breadcrumb-menu ol {
  list-style: none;
  display: flex;
  align-items: center;
  margin: 0;
  padding: 0;
}

.breadcrumb-menu li {
  margin-right: 10px;
  font-size: 0.9rem;
}

.breadcrumb-menu li:not(:last-child)::after {
  content: ">";
  margin-left: 10px;
  color: var(--text-light);
}

.breadcrumb-menu a {
  text-decoration: none;
  color: var(--text-dark);
  transition: color 0.3s ease;
}

.breadcrumb-menu a:hover {
  color: var(--primary-color);
}

.breadcrumb-menu .current {
  color: var(--primary-color);
  font-weight: 600;
}

.temple-details-slider .slider-nav {
  position: absolute;
  top: 50%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
  z-index: 10;
}

.temple-details-slider .slider-nav span {
  background-color: rgba(255, 255, 255, 0.3);
  color: var(--white);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 15px;
  cursor: pointer;
  transition: var(--transition);
}

.temple-details-slider .slider-nav span:hover {
  background-color: var(--primary-color);
}

/* Open in App Banner (Mobile View) */
.open-app-banner {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--white);
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  padding: 15px 20px;
}

.banner-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.open-app-img {
  height: 40px;
  width: auto;
  margin-right: 10px;
}

.open-app-btn {
  padding: 10px 20px;
  font-size: 0.9rem;
  background-color: var(--primary-color);
  color: var(--white);
  border: none;
  border-radius: 30px;
  transition: all 0.3s ease;
  white-space: nowrap;
  cursor: pointer;
}

.open-app-btn:hover {
  background-color: var(--primary-dark);
}

/* Show open-app-banner only on mobile devices */
@media (max-width: 768px) {
  .open-app-banner {
    display: block;
  }
}

/* Media Queries */
@media (max-width: 768px) {
  .open-app-banner {
    display: block;
  }

  .breadcrumb-menu {
    display: none;
  }

  .temple-details-slider .slider-nav span {
    width: 40px;
    height: 40px;
    margin: 0 10px;
  }

  .banner-content {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .temple-details-slider {
    height: 40vh;
  }

  .breadcrumb-menu ol {
    flex-direction: column;
    align-items: flex-start;
  }

  .breadcrumb-menu li {
    margin-bottom: 5px;
  }

  .breadcrumb-menu li:not(:last-child)::after {
    content: "";
    margin-left: 0;
  }

  .banner-content span {
    font-size: 0.9rem;
  }
}

/* Temple Media */
.temple-media {
  padding: 60px 0;
}

.media-slider {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.media-slide {
  display: none;
}

.media-slide.active {
  display: block;
}

.media-slide img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}

.media-slider .slider-nav {
  position: absolute;
  top: 50%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
}

.media-slider .slider-nav span {
  background-color: rgba(255, 255, 255, 0.3);
  color: var(--white);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 15px;
  cursor: pointer;
  transition: var(--transition);
}

.media-slider .slider-nav span:hover {
  background-color: var(--primary-color);
}

/* Temple Info Section */
.temple-info-section {
  padding: 40px 0 80px;
}

.temple-info-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
}

.temple-basic-info h2 {
  font-family: "Playfair Display", serif;
  font-size: 2rem;
  margin-bottom: 15px;
  color: var(--text-dark);
}

.category-badge {
  display: inline-block;
  background-color: var(--primary-light);
  color: var(--white);
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 0.8rem;
  margin-right: 10px;
  margin-bottom: 15px;
}

.temple-description {
  color: var(--text-light);
  margin-bottom: 30px;
  line-height: 1.8;
}

.temple-details-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 30px;
}

.detail-item h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
  color: var(--text-dark);
  display: flex;
  align-items: center;
}

.detail-item h3 i {
  margin-right: 10px;
  color: var(--primary-color);
}

.detail-item p {
  color: var(--text-light);
  margin-left: 28px;
}

.temple-actions {
  display: flex;
  gap: 20px;
}

.temple-actions .btn {
  display: flex;
  align-items: center;
  padding: 12px 25px;
}

/* Related Content */
.temple-related-content {
  background-color: var(--bg-light);
  border-radius: 10px;
  padding: 30px;
  position: relative;
}

.temple-related-content h3 {
  font-size: 1.3rem;
  margin-bottom: 20px;
  color: var(--text-dark);
  position: relative;
  padding-bottom: 10px;
}

.temple-related-content h3::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 2px;
  background-color: var(--primary-color);
}

.related-mantras {
  margin-bottom: 40px;
}

.mantra-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.mantra-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: var(--white);
  padding: 15px;
  border-radius: 5px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.mantra-item p {
  font-family: "Playfair Display", serif;
  font-size: 1.1rem;
  color: var(--primary-color);
}

.copy-btn {
  padding: 8px 15px;
  background-color: var(--primary-light);
  font-size: 0.8rem;
}

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

.nearby-temples-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.nearby-temple-item {
  border-radius: 5px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.nearby-temple-item h4 {
  margin-bottom: 8px;
  color: var(--text-dark);
  cursor: pointer;
}

.nearby-temple-item h4:hover {
  color: var(--primary-color);
}

.nearby-temple-item p {
  font-size: 0.9rem;
  color: var(--text-light);
  display: flex;
  align-items: center;
}

.nearby-temple-item p i {
  margin-right: 8px;
}

/* Animation for Shiva Trident */
.trident-animation {
  position: relative;
  display: inline-block;
}

.trident-animation::before {
  content: "🔱";
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 2rem;
  color: var(--primary-color);
  animation: tridentFloat 3s ease-in-out infinite;
  opacity: 0.8;
}

@keyframes tridentFloat {
  0% {
    transform: translate(-50%, 0) rotate(0deg);
    opacity: 0.8;
  }
  50% {
    transform: translate(-50%, -20px) rotate(10deg);
    opacity: 1;
  }
  100% {
    transform: translate(-50%, 0) rotate(0deg);
    opacity: 0.8;
  }
}

/* Additional Shiva-related styles */
.shiva-symbol {
  font-size: 1.5rem;
  color: var(--primary-color);
  margin: 0 5px;
}

/* Floating Shiva symbols */
.floating-shiva {
  position: absolute;
  font-size: 2rem;
  color: rgba(226, 128, 20, 0.7);
  animation: floatShiva 10s linear infinite;
  pointer-events: none;
  z-index: 0;
}

@keyframes floatShiva {
  0% {
    transform: translateY(100vh) rotate(0deg);
  }
  100% {
    transform: translateY(-100px) rotate(360deg);
  }
}

/* Shiva Lingam decoration */
.shiva-lingam {
  position: relative;
  display: inline-block;
}

.shiva-lingam::after {
  content: "ლ(ಠ益ಠ)ლ";
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 1.5rem;
  color: var(--primary-color);
  opacity: 0.7;
  animation: lingamGlow 2s ease-in-out infinite alternate;
}

@keyframes lingamGlow {
  0% {
    opacity: 0.5;
    transform: translateX(-50%) scale(1);
  }
  100% {
    opacity: 1;
    transform: translateX(-50%) scale(1.1);
  }
}

/* Footer styles */
.footer {
  background-color: var(--text-dark);
  color: var(--white);
  padding: 50px 0 20px;
}

/* App Install Banner */
.app-install-banner {
  width: 100%;
  background-color: #001f3f; /* Dark blue background */
  padding: 30px 0;
}

.app-install-content {
  display: flex;
  align-items: center;
  background-color: #e28014; /* Orange inner container */
  width: 100%;
  margin-top: 20px;
}

.app-preview {
  flex: 1;
  text-align: center;
}

.app-preview-img {
  max-width: 100%;
  height: 300px;
  margin-top: -50px;
  margin-bottom: -8px;
}

.app-text {
  flex: 1;
  color: white;
}

.app-text h3 {
  font-size: 1.8rem;
  font-weight: bold;
  margin-bottom: 15px;
  color: white;
}

.app-text p {
  font-size: 1rem;
  margin-bottom: 25px;
  color: #f0f0f0; /* Lighter white for paragraph */
  line-height: 1.6;
}

.app-download-buttons {
  display: flex;
  gap: 20px;
}

.app-download-btn {
  display: flex;
  align-items: center;
  padding: 12px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition);
  background-color: transparent;
  border: 2px solid white;
  color: white;
  min-width: 150px;
}

.app-download-btn i {
  font-size: 1.8rem;
  margin-right: 10px;
}

.app-download-btn span {
  font-size: 0.9rem;
  text-align: left;
}

.app-download-btn:hover {
  background-color: rgba(255, 255, 255, 0.1);
  transform: translateY(-3px);
}

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

.footer-logo h2 {
  font-family: "Playfair Display", serif;
  font-size: 1.8rem;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.footer-logo p {
  color: #aaa;
  line-height: 1.6;
}

.footer-links h3,
.footer-social h3 {
  font-size: 1.3rem;
  margin-bottom: 20px;
  color: var(--white);
  position: relative;
  padding-bottom: 10px;
}

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

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

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

.footer-links a {
  text-decoration: none;
  color: #aaa;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--primary-color);
}

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

.social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--white);
  border-radius: 50%;
  transition: var(--transition);
}

.social-icons a:hover {
  background-color: var(--primary-color);
  transform: translateY(-3px);
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #aaa;
  font-size: 0.9rem;
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #aaa;
  font-size: 0.9rem;
}

/* Animations for page load */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.category-card,
.temple-card,
.temple-item {
  animation: fadeIn 0.6s ease forwards;
}

/* Media Queries */
@media (max-width: 768px) {
  .header .container {
    /* flex-direction: column; */
    padding: 15px 0;
  }

  .nav {
    width: 100%;
    justify-content: flex-end;
  }

  .slide-content h1 {
    font-size: 2rem;
  }

  .slide-content p {
    font-size: 1rem;
  }

  .temple-info-content {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .app-install-content {
    flex-direction: column;
    padding: 20px 15px;
  }

  .app-text {
    text-align: center;
  }

  .app-download-buttons {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }

  .app-download-btn {
    width: 100%;
    max-width: 250px;
    justify-content: center;
  }

  .app-install-banner {
    height: auto;
  }
}

@media (max-width: 480px) {
  .slide-content h1 {
    font-size: 1.5rem;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .temple-details-grid {
    grid-template-columns: 1fr;
  }

  .app-download-buttons {
    flex-direction: column;
    align-items: center;
  }

  .app-download-btn {
    width: 80%;
    max-width: 200px;
    justify-content: center;
    text-align: center;
  }

  .app-install-content {
    flex-direction: column;
    text-align: center;
  }

  .app-text {
    text-align: center;
  }
}
