/*-----------------------------------------------------------------------------------

    Theme Name: Shree Siddhivinayak Ganesh Mandir HTML Template
    Author: Netsol IT Solutions Pvt. Ltd.
    Created By: Netsol Web-designer Team.
    Description: Shree Siddhivinayak Ganesh Mandir HTML Template
    Version: 1.0

-----------------------------------------------------------------------------------*/
:root{
  --saffron:#e67e22;
  --maroon:#7b241c;
  --gold:#d4ac0d;
  --white:#ffffff;
  --light:#fff7ed;
  --dark:#2c2c2c;
}

*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family:'Poppins',sans-serif;
}

html{scroll-behavior:smooth;}
body{background:var(--light); color:var(--dark);}

.container,
.container-lg,
.container-md,
.container-sm,
.container-xl,
.container-xxl {
  max-width: 1470px;
  padding-right: 15px;
  padding-left: 15px;
}
/*---------------------------------
	typography css start 
---------------------------------*/
*{
  box-sizing: border-box;
  margin:0;
  padding:0;
}
body {
  font-family: var(--theme-font);
  font-size: 16px;
  font-weight: 400;
  color: var(--theme-text-color);
  line-height: 1.3;
  overflow-x: hidden;
  height: 100%;
}
body {
  overflow-x: hidden;
  overflow-y: hidden;
}

a {
  text-decoration: none;
  transition: 0.3s;
}

/*-----------------------------------------------------------------------------------

   All Custom CSS Here

-----------------------------------------------------------------------------------*/
.sigma_preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--maroon);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: .3s;
}
.sigma_preloader svg {
  animation: fadeInOut 3s linear infinite;
}
@keyframes fadeInOut {
	0% {
		opacity: 1;
	}
	50% {
		opacity: 0.3;
	}
	100% {
		opacity: 1;
	}
}
body.temple-loaded {
  overflow-y: unset;
}
.temple-loaded .sigma_preloader{
  display: none;
}
/* HEADER */
header{
  top: 0;
  position: sticky;
  z-index: 1055;
  background:var(--white);
  box-shadow:0 4px 10px rgba(0,0,0,0.1);
  padding:15px 0;
}

.logo{
  font-size:22px;
  font-weight:700;
  color:var(--maroon);
}
.navbar-brand{
  margin-left: 0;
  padding: 0;
}
.navbar-brand svg {
  width: 50px;
  fill: var(--maroon);
  height: 50px;
}
nav a{
  margin-left:20px;
  text-decoration:none;
  color:var(--dark);
  font-weight:500;
}

nav a:hover{color:var(--saffron);}
.offcanvas-header{
  padding-bottom: 0;
}

/* HERO */
.hero{
  background:
    linear-gradient(rgba(0, 0, 0, 0.65),rgba(0,0,0,0.65)),
    url("../images/image\ \(2\).jpeg") center / cover no-repeat;
  color:var(--white);
  text-align:center;
  padding:90px 0;
  height: 70vh;
}

.hero h1{
  font-size: 30px;
  font-size: clamp(24px , 5vw,72px);
  margin-bottom: 10px;
  font-weight: 900;
}
.hero p{
  max-width:800px;
  margin: 0 auto;
  font-size:18px;
  font-size: clamp(18px, 2.5vw,24px);
}
.hero span{color:var(--gold);}

/* SECTIONS */
section{padding:70px 0 0;}

.section-title{
  text-align:center;
  margin-bottom:40px;
}
.section-title h2{
  color:var(--maroon);
  font-size:32px;
  font-weight: 700;
  margin-bottom: 0;
}

/* INFO GRID */
.grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
  gap:30px;
}

/* CARD */
.card{
  background: #fff7edc7;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 8px 20px rgb(0 0 0 / 5%);
  border-color: #be5d066b;
}
.card h3{
  font-weight: 600;
  font-size: 24px;
  font-size: clamp(16px,2vw,24px);
}
.card p{
  font-size: 16px;
  font-size: clamp(14px,2vw,16px);
}
.card p:last-child{
  margin-bottom: 0;
}

/* TIMINGS */
.timings p{
  display:flex;
  justify-content:space-between;
  padding: 0 0 16px;
  border-bottom:1px dashed #ccc;
}

/* FESTIVAL TAG */
.tag{
  display:inline-block;
  background:var(--saffron);
  color:#fff;
  padding:6px 14px;
  border-radius:20px;
  margin:5px;
  font-size:14px;
}

/* OWL GALLERY */

.owl-theme .owl-dots .owl-dot span{
  background:var(--saffron);
}

.owl-theme .owl-dots .owl-dot.active span{
  background:var(--maroon);
}
.temple-gallery .owl-stage-outer .owl-stage{
  display: flex;
  align-items: center;
  justify-content: center;
}
.gallery-item {
  max-height: 390px;
  min-height: 390px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.gallery-item img{
  max-height: 390px;
  min-height: 390px;
  object-fit: cover;
  object-position: center;
  width: 100%;
  height: 100%;
  border-radius:14px;
}
/* CONTACT */
.contact-btns {
  display: flex;
  gap: 15px;
  justify-content: center;
  margin-top: 15px;
}
.contact-btns a{
  display:inline-block;
  padding:12px 24px;
  border-radius:30px;
  text-decoration:none;
  font-weight:600;
  color:#fff;
}

.call{background:var(--maroon);}
.whatsapp{background:#25d366;}

/* FOOTER */
footer{
  background:var(--maroon);
  color:#fff;
  text-align:center;
  padding:25px 0;
  margin-top: 70px;
}
footer .container{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  flex-wrap: wrap;
}
footer .container p a{color:var(--white); line-height: inherit;}
footer .container p a:hover{color:var(--gold);}
footer p{
  margin-bottom: 0;
}

.navbar-toggler{
  padding: 5px 7px;
  line-height: 1;
  font-size: 16px;
  outline: none;
  box-shadow: none;
}
.navbar-toggler:focus{
  outline: none;
  box-shadow: none;
}
.about-temple-image-wrapper{
  position: relative;
}
.about-temple-image-wrapper img {
  margin: auto;
  display: block;
  border-radius: 12px;
}
.about-temple-image-wrapper .top-image {
  max-width: 250px;
  margin: 0;
  position: relative;
  z-index: 1;
  margin-right: auto;
}
.about-temple-image-wrapper .bottom-image{
  position: relative;
  max-width: 380px;
  max-height: 500px;
  z-index: 0;
  margin-top: -150px;
  margin-right: auto;
}
.about-temple-text-wrapper .section-title {
  text-align: start;
}

.about-temple-text-wrapper .about-temple-paragraph{
  font-size: 18px;
  margin: 15px 0 30px;
  margin: 15px 0 clamp(15px,2vw,30px);
  line-height: 1.4;
}
.about-temple-list{
  list-style: none;
  margin: 0;
  padding: 0;
}
.about-temple-list li{
  font-size: 22px;
  line-height: 1.4;
  margin-bottom: 15px;
}
.about-temple-list li:last-child{margin-bottom: 0;}
.about-temple-list li b{
  color: #be5d06;
}
.about-temple-list li span{
  font-size: 18px;
  line-height: 1.6;
}
.timings-card{
  border: none;
  border-radius: 0;
  flex: 2 !important;
  margin-left: -100px;
  background: #fffaf5;
  /* padding-top: 110px; */
}
.timings-card .timings-card-inner-wrapper{
  padding-right: 100px;
}
.timings-card .swastik{
  max-width: 120px;
  height: 120px;
  /* position: absolute;
  right: 15px;
  top: 15px; */
  opacity: 0.3;
  margin-right: -10px;
  margin-left: auto;
  margin-bottom: -30px;
}
.timings-wrapper{
  display: flex;
  align-items: center;
  gap: 20px;
}
.timings-wrapper .card{
  flex: 1;
}
.timings-img-card{
  border-radius: 0;
  border: none;
  background: none !important;
  box-shadow: none;
  padding: 0;
}
.timings-img-card img {
  max-width: 350px;
  width: 100%;
  object-fit: cover;
}
.timings-img2-card{
  border-width: 8px;
  border-radius: 0;
  padding: 0 !important;
  max-width: 280px;
  max-height: 280px;
  margin-left: -70px;
}
.timings-img2-card img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  max-width: calc(280px - 16px);
  max-height: calc(280px - 16px);
}
.navbar{padding: 0;}

.pooja-section {
  background-color: var(--saffron);
  background-color: #ffe3ca;
  padding:70px 0 70px;
  margin: 70px 0 0;
}
.pooja-section .container{
  position: relative;
  z-index: 1;
}
.pooja-img-wrapper img{
  width: 100%;
  max-width: 400px;
  max-height: 400px;
  border-radius: 50%;
}
.pooja-content-wrapper{
  display: flex;
  gap: 15px;
  flex-direction: column;
}
.pooja-content-wrapper .card{
  background-color: #ffe8d3;
  background-color: #fffaf5bd;
  padding: 20px 15px;
  border-radius: 10px;
  text-align: center;
  border-width: 0 0 1px 0;
}
.new-timings-section {
  background: linear-gradient(rgba(0, 0, 0, 0.35),rgba(0,0,0,0.35)), url(../images/image\ \(14\).jpeg) no-repeat;
  background-position: center;
  background-size: cover;
  background-attachment: fixed;
  padding: 70px 0;
  margin-top: 70px;
}
.new-timings-section .timings-wrapper{
  max-width: 50%;
  margin-left: auto;
}
.new-timings-section .timings-wrapper .timings-card{
  position: relative;
  margin-left: 0;
}
.new-timings-section .timings-wrapper .timings-card .section-title{
  position: absolute;
  top: 30px;
}
.bg-wrapper{
  position: relative;
}
.bg-wrapper::before{
  content: '';
  background: url(../images/bg-2.png) no-repeat;
  background-position: center;
  background-size: 75%;
  position: absolute;
  left: -50px;
  z-index: 0;
  filter: brightness(0) saturate(100%) invert(0%) sepia(7%) saturate(7500%) hue-rotate(59deg) brightness(94%) contrast(95%);
  right: 85%;
  top: 0;
  bottom: 0;
}
.temple-svg svg{
  width: 180px;
  height: 180px;
  margin: auto auto 35px;
  fill: var(--maroon);
}

/* RESPONSIVE */
@media(max-width:1199.98px){
 .new-timings-section .timings-wrapper .timings-card .section-title h2 {
    font-size: 25px;
  }
  .temple-svg svg {
    width: 175px;
    height: 175px;
    margin: auto auto 25px;
  }
  #contact .card{
    padding: 18px;
  }
}
@media(max-width:991.98px){
  .about-temple-list li {
    font-size: 20px;
  }
  .about-temple-list li span {
      font-size: 16px;
  }
  .timings-card {
      margin-left: -20px;
      padding: 20px;
  }
  .timings-card .swastik {
      max-width: 80px;
      height: 80px;
      margin-right: 0;
      margin-bottom: -20px;
  }
  .timings-card .timings-card-inner-wrapper {
      padding-right: 70px;
  }
    .timings p {
      padding: 0 0 12px;
      font-size: 14px;
      margin-bottom: 12px;
    }
  .new-timings-section .timings-wrapper{
    max-width: 60%;
  }
  .new-timings-section .timings-wrapper .timings-card .section-title h2 {
    font-size: 22px;
  }
  .temple-svg svg {
    width: 140px;
    height: 140px;
    margin: auto auto 22px;
  }
  #contact .card {
    padding: 13px;
  }
  #contact iframe {
    height: 327px;
  }
}
@media(max-width:991.98px) and  (min-width:580px){
  .about-temple-image-wrapper {
    position: relative;
    margin-left: auto;
    max-width: 90%;
  }
  footer .container p a.ms-4{
    margin-left: 10px !important;
  }
}

@media(max-width:767.98px){
  .navbar .nav-link{
    margin-left: 0;
  }
  .offcanvas-title .navbar-brand svg {
    width: 70px;
    height: 70px;
  }
  .navbar .offcanvas-body{
    position: relative;
  }
  .navbar .offcanvas-body::after{
    content: '';
    background: url(../images/swastik.svg) no-repeat;
    background-position: center;
    background-size: cover;
    position: absolute;
    z-index: -1;
    width: 200px;
    height: 200px;
    opacity: 0.3;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
  }
  .hero{
    padding:45px 0;
    height: 45vh;
  }
  section{padding:40px 0px 0;}
  .new-timings-section{
    margin-top: 40px;
    padding: 50px 0;
  }
  .pooja-section {
    padding:40px 0 40px;
    margin: 40px 0 0;
  }
  footer{
    margin-top: 40px;
    padding: 15px 0;
    font-size: 14px;
    line-height: 1.4;
  }
  .contact-btns a {
    padding: 10px 20px;
    font-size: 14px;
  }
  .card{
    padding: 15px;
  }
  .about-temple-image-wrapper .bottom-image {
    max-height: 420px;
    margin-top: -100px;
  }
  .timings-wrapper {
    gap: 15px;
    flex-wrap: wrap;
  }
  .timings-wrapper .card {
    flex: unset;
    width: 100%;
  }
  .timings-img-card {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 0;
    margin-top: -15px;
  }
  .timings-card {
    margin-left: 0;
    padding: 20px;
  }
  
  .timings-img2-card {
    max-width: 200px;
    max-height: 200px;
    margin-left: -55px;
    margin-top: 20px;
  }
  .timings-img2-card img {
    max-width: calc(200px - 16px);
    max-height: calc(200px - 16px);
  }
  .new-timings-section{
    background-position: left center;
  }
  .new-timings-section .timings-wrapper{
    max-width: 70%;
  }
  footer .container {
    justify-content: center;
    gap: 10px;
    column-gap: 25px;
    flex-wrap: wrap;
  }

}
@media(max-width:575.98px){
  .navbar-brand{
    margin-left: 0 !important;
    padding: 0 !important;
    font-size: 20px;
  }
  .section-title h2 {
    font-size: 22px;
  }
  .section-title {
    margin-bottom: 20px;
  }
  .grid {
    gap: 15px;
  }
  .card {
    padding: 15px;
    border-radius: 12px;
  }
  .timings p {
    font-size: 14px;
  }
  .timings p:last-child{margin-bottom: 0;border-bottom:none;}
  .booking-info{
    font-size: 15px;
  }
  .about-temple-text-wrapper .about-temple-paragraph {
    font-size: 16px;
  }
  .about-temple-list li {
    font-size: 18px;
  }
  .about-temple-list li span {
      font-size: 14px;
  }
  .timings-card {
    flex: unset !important;
  }
  .timings-card .swastik {
    margin-bottom: -10px;
  }
  .timings-card .timings-card-inner-wrapper {
    padding-right: 0;
  }
  .timings-img2-card {
    max-width: 100%;
    max-height: 100%;
    width: auto !important;
    margin-left: 0;
    margin-top: 0;
    border-radius: 0 !important;
    margin: 0 auto;
  }
  .timings-img2-card img {
    max-width: unset;
    max-height: 450px;
  }
  .gallery-item{
    min-height: unset;
    max-height: unset;
  }
  iframe{
    height: 300px;
  }
  footer .container {
    justify-content: center;
    gap: 10px;
    column-gap: 15px;
    flex-wrap: wrap;
  }
  .new-timings-section .timings-wrapper{
    max-width: 75%;
  }
  .new-timings-section .timings-wrapper .timings-card .section-title h2 {
    font-size: 20px;
  }
  .contact-btns {
    margin-top: 0;
  }

  .temple-svg svg {
    width: 120px;
    height: 120px;
    margin: auto auto 20px;
  }
}
@media(max-width:425px){
  .new-timings-section .timings-wrapper{
    max-width: 100%;
  }
  .new-timings-section .timings-wrapper .timings-card .section-title h2 {
    font-size: 15px;
  }
  .about-temple-image-wrapper .top-image {
    max-width: 215px;
    margin: 0;
    position: relative;
    z-index: 1;
    margin-right: auto;
  }
  .about-temple-image-wrapper .bottom-image {
    position: relative;
    max-width: 215px;
    max-height: unset;
    z-index: 0;
    margin-top: -60px;
    margin-right: 0;
    margin-left: auto;
  }
}
@media(min-width:500px) and (max-width: 767.98px){
  .owl-item{
    border-radius: 12px;
  }
  .gallery-item{
    min-height: unset;
    max-height: unset;
    border-radius: 12px;
  }
  .gallery-item img{
    height: 100%;
    width: 100%;
    border-radius: 12px;
    min-height: unset;
  }
}