@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap");

:root {
  --primary-red: #931f1f;
  --primary-gold: #f9cb15;
  --light-gold: #fef3c7;
  --dark-red: #7f1d1d;
  --text-dark: #1f2937;
  --text-light: #6b7280;
  --white: #ffffff;
  --light-bg: hsl(48deg 100% 98.04%);
}

.about-content {
  border-radius: 20px;
  box-shadow: 0 -1px 8px rgb(255 252 240 / 51%),
    0 6px 20px rgb(225 211 157 / 50%);
  background: #fff;
}

#about {
  background: #fff8d6;
}

#gallery {
  background: #fff8d6;
}
.map {
  height: 370px;
}
/* Navbar */
.logo-name {
  text-decoration: none;
  cursor: pointer;
  font-size: 1.2rem;
}
.logo-name:hover {
  color: var(--primary-gold) !important;
  transition: color ease-out;
}

.primary-text {
  color: var(--primary-red);
}

/* Global Styles */
body {
  font-family: "Poppins", sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Roboto", serif;
  font-weight: 600;
}

.bg-image-color {
  background: var(--light-gold);
}

/* Navigation Styles */
.navbar {
  background-color: #ffffff !important;
}
.spiritual-nav {
  background: var(--light-gold) !important;
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(162, 28, 28, 0.1);
}

.spiritual-logo {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: divine-glow 3s ease-in-out infinite;
  font-size: 18px;
}

.nav-link {
  font-weight: 500;
  transition: all 0.3s ease;
  border-radius: 8px;
  margin: 0 4px;
  font-size: 17px;
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary-red) !important;
}

.footer {
  background: #fff8d6;
}

.footer a {
  color: black;
}

.footer-logo {
  width: 140px;
  height: 140px;
  object-fit: cover;
}

.nav-logo {
  width: 80px;
  object-fit: cover;
}

/* Button Styles */
.btn-spiritual {
  background-color: #fff8d6 !important;
  border: none;
  color: var(--primary-red) !important;
  font-weight: 600;
  padding: 12px 30px;
  transition: all 0.3s ease;
}

.btn-spiritual:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 10px rgba(162, 28, 28, 0.3);
  color: white;
}

.btn-spiritual-red {
  background-color: var(--primary-red) !important;
  border: none;
  color: white !important;
  font-weight: 600;
  padding: 12px 30px;
  transition: all 0.3s ease;
}

.btn-spiritual-red:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 10px rgba(162, 28, 28, 0.3);
  color: white;
}

.btn-outline-primary {
  border-color: var(--primary-red);
  color: var(--primary-red);
}

.btn-outline-primary:hover {
  background-color: var(--primary-red);
  border-color: var(--primary-red);
}

/* Hero Sections */
/* .hero-section, .about-hero, .gallery-hero, .contact-hero {
    height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
} */

/* Card Styles */
.feature-card,
.contact-card,
.gallery-card {
  transition: all 0.3s ease;
  border: none;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.feature-card .card-body {
  padding: 32px !important;
}

/* Gallery Styles */
.gallery-card {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  cursor: pointer;
}

.gallery-card img {
  transition: transform 0.3s ease;
  height: 200px;
  object-fit: cover;
  width: 100%;
  object-position: top !important;
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.8));
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-card:hover .gallery-overlay {
  opacity: 1;
}

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

/* Form Styles */
.form-control:focus,
.form-select:focus {
  border-color: var(--primary-red);
  box-shadow: 0 0 0 0.2rem rgba(162, 28, 28, 0.25);
}

/* Animations */
@keyframes divine-glow {
  0%,
  100% {
    box-shadow: 0 0 20px rgba(250, 204, 21, 0.3);
  }
  50% {
    box-shadow: 0 0 40px rgba(250, 204, 21, 0.6);
  }
}

@keyframes fade-in {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes float-animation {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}

.fade-in {
  animation: fade-in 0.8s ease-out;
}

.fade-in-delay {
  animation: fade-in 0.8s ease-out 0.3s both;
}

.fade-in-delay-2 {
  animation: fade-in 0.8s ease-out 0.6s both;
}

.float-animation {
  animation: float-animation 6s ease-in-out infinite;
}

/* Shadow Effects */
.shadow-temple {
  box-shadow: 0 20px 60px -10px rgba(162, 28, 28, 0.3);
}

.footer a {
  cursor: pointer !important;
}

.footer-options {
  display: flex;
  flex-direction: column;
}

/* Hero Section */
.hero-section {
  height: 100vh;
  overflow: hidden;
  background: #fff8d8;
  /* position: relative; */
  /* display: flex;
  align-items: center;
  justify-content: center; */
}

.hero-section .container {
  position: relative;
  z-index: 3;
}

/* butytons */

.btn-spiritual {
  background-color: hsl(0, 65%, 35%);
  color: white;
  border: none;
}

.btn-spiritual:hover {
  background-color: hsl(0, 65%, 25%);
  color: white;
}

/* Animations */
.fade-in {
  animation: fadeIn 1s ease-out forwards;
  opacity: 0;
}

.fade-in-delay {
  animation: fadeIn 1.5s ease-out forwards;
  opacity: 0;
}

.fade-in-delay-2 {
  animation: fadeIn 2s ease-out forwards;
  opacity: 0;
}

.shadow-temple {
  box-shadow: 20px 20px rgb(249 203 21 / 57%);
}

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

/* Tabs */
.tabs {
  display: flex;
  list-style: none;
  padding-left: 0;
  margin-bottom: 1rem;
  border-bottom: 1px solid #ddd;
}

.tabs li {
  padding: 0.5rem 1.2rem;
  cursor: pointer;
  background-color: #fff;
  border: 1px solid #ddd;
  border-bottom: none;
  border-radius: 5px 5px 0 0;
  transition: background-color 0.3s;
  color: black;
}

.tabs li.active-tab {
  background-color: #fff4cb;
  font-weight: bold;
  color: var(--primary-red);
}

.tabs-content li {
  display: none;
  list-style: none;
}

.tabs-content li.active-content {
  display: block;
}

/* Blog-Cards */

.blog_card {
  margin: 42px 8px;
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  word-wrap: break-word;
  background-color: #fff;
  background-clip: border-box;
  border: none;
  border-radius: 0.375rem;
  box-shadow: 0px 3px 15px #e3e3e3;
  border: solid thin #eaeaea;
}

.blog_card_image {
  padding: 14px;
}

.blog_card_image img {
  margin-top: -60px;
  width: 100%;
  height: 242px;
  border-radius: 20px;
  transition: 0.25s ease-in-out;
  box-shadow: 0 -1px 8px rgb(255 252 240 / 51%),
    0 6px 20px rgb(225 211 157 / 50%);
}

.blog_card_content {
  padding: 20px;
}

.blog_card_content h3 {
  font-size: 24px;
  line-height: 25px;
  font-weight: 600;
  margin-bottom: 5px;
  text-align: center;
}

.blog_card_content p {
  font-size: 16px;
  line-height: 25px;
  text-align: center;
}

.blog_card_content a {
  text-decoration: none;
}

.blog_card_content a h6 {
  font-size: 12px;
  letter-spacing: 1.5px;
  font-weight: 500;
  text-transform: uppercase;
  color: #be1d0d;
}

.blog_card:hover .blog_card_image img {
  transform: translatey(-3%);
}

/* Headings */

.heading {
  text-shadow: 0 8px 17px rgba(0, 0, 0, 0.1), 0 6px 20px rgba(0, 0, 0, 0.1);
}

.heading2 {
  color: var(--primary-red);
}

.heading3 {
  color: var(--primary-red);
  font-size: 1.1rem;
  text-align: center;
}

.heading-container {
  display: flex;
  align-items: center;
}

/* home page css  */

.hero-bg {
  top: 0;
  width: 100%;
  height: 100%;
  position: absolute;
  background: url("../images/desk-banner.jpg") no-repeat center center;
  background-size: contain;
  z-index: 0;
}

/* Headings styling */
.hero-section h1 {
  font-size: 6rem;
  font-weight: 800;
  letter-spacing: 1px;
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.5);
}

.heading-content {
  right: 32px;
  top: 172px;
}

/* .hero-overlay {
  background-color: rgba(0, 0, 0, 0.3);
  top: 0;
  left: 0;
  z-index: 1;
} */

.banner-txt {
  color: #ffb45f;
}
.lead {
  font-size: 1rem !important;
  font-weight: 300;
  margin-bottom: 40px;
}
.heading-container .fade-in-delay-2 h2 {
  font-size: 50px;
}

.dates {
  color: #ffb45f;
}

.text-white-50 {
  color: rgb(255 255 255 / 90%) !important;
}

/* Feature Section   */
.sangh-feature-img {
  height: 174px;
  object-fit: cover;
}
.section-header {
  margin-bottom: 10px;
}
.feature-row {
  display: flex;
  align-items: center;
  justify-content: center;
}
.feature-img {
  display: flex;
  align-items: center;
  justify-content: center;
}
.view-more {
  display: flex;
  justify-content: center;
  align-items: center;
}
.view-more-btn {
  padding: 12px 24px;
  background: var(--primary-red);
  color: white;
}

#feature {
  top: 72px;
  padding-bottom: 60px;
}

.ribbon {
  font-size: 22px;
  font-weight: 600;
  color: #fff;
  padding-left: 6px;
}

.ribbon {
  --r: 0.8em; /* control the cutout */

  padding-right: calc(var(--r) + 0.25em);
  line-height: 1.8;
  clip-path: polygon(
    -100vw 0,
    100% 0,
    calc(100% - var(--r)) 100%,
    100% 100%,
    -100vw 100%
  );
  border-image: conic-gradient(var(--primary-red) 0 0) fill 0 // 0vw;;
  width: fit-content;
}

.image-bg {
  background: white;
}
.shikharji-gallery {
  width: 100%;
  margin-bottom: 20px;
  border-radius: 10px;
}
.pp-section {
  margin-top: 5rem;
}
.desk-banner {
  background-image: url(../images/desk-banner.jpg);
  background-position: 0px 85px;
  background-size: contain;
  background-repeat: no-repeat;
  width: 100%;
  height: 100vh;
  max-height: 750px;
}
.desk-bg {
  background: #fff8d8;
}
.mob-banner {
  display: none;
}
.mob-banner {
  background-image: url(../images/mob-banner.jpg);
  background-position: 0px 85px;
  background-size: contain;
  background-repeat: no-repeat;
  width: 100%;
  height: 100vh;
  max-height: 750px;
}

.modal-content {
  border-radius: 15px;
  overflow: hidden;
}
.popup-image {
  width: 350px;
  object-fit: cover;
  height: 600px;
  display: block;
  margin: auto;
}
.modal-content {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 54%;
  margin: auto;
  color: var(--bs-modal-color);
  pointer-events: auto;
  background-color: #ffffff;
  background-clip: padding-box;
  border: none !important;
  border-radius: 10px !important;
  outline: 0;
  box-shadow: none;
}
.btn-popup {
  background-color: #931f1f;
  color: white;
}
.btn-popup:hover {
 border: 1px solid #931f1f;
}