@import url('https://fonts.googleapis.com/css2?family=Beau+Rivage&family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

/* Dynamic style */
*{
	box-sizing:border-box;
}
body {
  background-color: #fbff000a !important;
  font-family: "Lato", sans-serif;
  margin:0;
  padding:0;
/*overflow:hidden; */
}
h1, h2, h3, h4, h5, h6, a{
	font-family: "Montserrat", sans-serif;
}
ul{
	list-style:none;
	padding:0 !important;
}
h3 a{
	color:#000 !important;
}
a{
	color:#fff !important;
	text-decoration:none !important;
}
/* navber */
img.custom-logo {
    height: 40px;
    width: 160px;
}
.prakriti-menu-wrap {
    display: flex;
    gap: 38px;
    list-style: none;
}
.menu-item-has-children{
	position:relative;
}
ul.sub-menu {
    background: #fff;
    position: absolute;
    top: 100px;
    left: 0;
	transition:0.5s all ease-in-out;
    opacity: 0;
    visibility: hidden;
	min-width:15rem;
	list-style:none;
}
ul.sub-menu a{
	color:#000 !important;
}
.sub-menu .menu-item {
    padding: 16px 20px !important;
    border-bottom: 1px solid #ccc !important;
}
.sub-menu .menu-item:hover{
	background:#fff5eb;
}
.menu-item-has-children:hover ul.sub-menu{
	top:35px;
	opacity:1;
	visibility:visible;
}
.prakriti-menu-wrap a {
	color: #fff;
    text-decoration: none;
    font-size: 14px;
	letter-spacing: 0.0325rem;
}
.prakriti-menu-wrap a:hover {
    color: #fff;
}
.pll-parent-menu-item {
    background: #9c4526;
    padding: 8px 40px;
}
.pll-parent-menu-item a {
    font-weight: 600;
}
.pll-parent-menu-item  {
	position:relative;
}
.pll-parent-menu-item ::after{
	position:absolute;
	content:"";
	top: 25%;
    left: 74%;
    width: 20px;
    height: 20px;
	background-image: url("https://prakritimandir.lies.co.in/wp-content/uploads/2025/09/arrow_drop_down_24dp_FFFFFF_FILL0_wght400_GRAD0_opsz24.png");
	background-size: contain;
  	background-repeat: no-repeat;
}
.pll-parent-menu-item .sub-menu {
    right: 0;
    min-width: 20px;
}
/* main */
.glass-effect {
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    background: rgb(102 96 96 / 40%);
    border-radius: 16px !important;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
	max-width:750px;
	margin:auto;
}
.blessing-card-image{
	height:180px;
	width:322px;
}
.blessing-card-image img{
	object-fit:cover;
	object-position:center center;
}
.prakriti-submit {
    padding: 12px 25px !important;
    display: block;
    font-family:"Montserrat", sans-serif !important;
	background: #65764d !important;
	border-color: #65764d !important;
}
/*gallary*/
 /* --- GRID CONTAINER --- */
.uneven-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  grid-auto-rows: 200px; /* base row height */
  gap: 15px;
  margin: 20px 0;
}

/* --- ITEMS --- */
.uneven-gallery .gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 3px 6px rgba(0,0,0,0.2);
}

.uneven-gallery .gallery-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .3s ease;
}

.uneven-gallery .gallery-img:hover {
  transform: scale(1.05);
}

/* --- IRREGULAR LAYOUT --- */
.uneven-gallery .item-2 {
  grid-row: span 2;
}
.uneven-gallery .item-4 {
  grid-column: span 2;
}
.uneven-gallery .item-6 {
  grid-column: span 2;
  grid-row: span 2;
}
.uneven-gallery .item-8 {
  grid-row: span 2;
}

/* --- RESPONSIVE --- */
@media (max-width: 768px) {
  .uneven-gallery {
    grid-auto-rows: 150px;
  }
}
@media (max-width: 480px) {
  .uneven-gallery {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
  }
}

/* footer  */
.prakriti-footer {
    background: #65764d;
    padding: 60px 0 20px;
    color: #ffffff;
}
.prakriti-footer h5{
	font-weight:700;
}
.prakriti-footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(15.25rem, 1fr));
    grid-gap: 2rem;   
}

a.custom-logo-link {
    margin-bottom: 20px;
    display: block;
}
.prakriti-images .elementor-image-carousel-wrapper .swiper-slide-inner{
	height: 250px;
    width: 220px;
}
.prakriti-images .elementor-image-carousel-wrapper .swiper-slide-inner img{
	object-fit:cover;
	object-position:center center;
	height:100%;
	width:100%;
}
/* Scroll to Top Button Style - Prakriti Mandir Theme */
.scroll-to-top {
  display: none; /* Hidden by default */
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 99;
  font-size: 20px;
  border: none;
  outline: none;
  background-color: #2E7D32; /* 60% - Primary Green */
  color: #FFFFFF; /* 30% - White text */
  cursor: pointer;
  padding: 10px 20px;
  border-radius: 50%;
  box-shadow: 0 4px 6px rgba(0,0,0,0.2);
  transition: all 0.8s ease;
  border: 2px solid #FFD700; /* 10% - Gold accent */
}

.scroll-to-top:hover {
  background-color: #1B5E20; /* Darker green on hover */
  color: #FFD700; /* Gold text hover effect */
  border-color: #FFFFFF; /* Switch border to white */
}
