
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    background-color:#F9D326;
    scroll-behavior: smooth;
}

#language p{
    font-size: 20px;
    float: right;
    font-family:'Viga-Regular';
}

#language a{
    color: inherit;
}

#language a:hover{
        color: #FFF;
    }

.ul{
    list-style: none;
}
.audioc{
    display:flex;
    justify-content: center;
    align-items: center;
}
.header{
    background-color: #2C2C2C;
    box-shadow: 1px 1px 5px 0px grey;
    position: sticky;
    top: 0;
    width: 100%;
    font-family: 'Marathi-Kanak';
    transition: top 0.3s;
    display: inline-block;
    border-bottom: #fff 5px dotted;
}

/* Logo */
.logo{
    font-size: 30px;
    margin-left: 75px;
    color:white;
    font-family: 'Marathi-Kanak';
    text-decoration: none;
}
.heading{
    font-size: 56px;
    margin-left: 10px;
    line-height: 75px;
    font-family: 'Marathi-Kanak';
    color:white;
}

.nav{
    width: 100%;
    height: 100%;
    position: fixed;
    background-color: #2C2C2C;
    overflow: hidden;
    float: right;
}
.menu{
     list-style-type: none;
     margin: 0;
     padding: 0;
}
.menu a{
    display: block;
    padding: 10px 20px 10px 10px;
    color: white;
    font-size: 25px;
    text-decoration: none;
    border-right: #FFF 1px solid;
}
.menu a:hover{
    background-color: grey;
}
.nav{
    max-height: 0;
    transition: max-height .5s ease-out;
}

#diety p{
    background-color: #fff;
}
.content {
    align-items: center;
    justify-content: space-between;
    display: block;
    max-width: 1200px;
    margin: 0 auto;
    padding: 5px 20px 0 20px;
    font-family: 'Marathi-Kanak';
}

.content p{
    font-size: 1.8em;
    line-height: 1.5em;
    text-align: center;
    font-family: 'Marathi-Kanak';
    letter-spacing: 0px;
}
.content h2{
    text-align: center;
    font-size:2.5em;
    background-color: #fff;
    font-family: 'Marathi-Kanak';
}

.content img {
  width: 100%;
  height: 600px;
  object-fit: cover;
  object-position: bottom;
}

.content #title {
    color:firebrick;
}
.content #titletext {
    font-size: 1.5em;
}
.content #diety {
    font-size: 2.5em;
    font-weight:bold;
}
.headername {
    padding: 50px 0 5px 0;
}
.headername{
    border-bottom: 5px dotted firebrick ;
}
.about-devasthan {
    border-bottom: 5px dotted #E9E9E9;
}
.about-bhimalpen-baba {
    border-bottom: 5px dotted #E9E9E9;
}
.devasthan-facilities {
    border-bottom: 5px dotted #E9E9E9; 
} 
.about-devasthan p {
    text-align: justify;
}
.about-devasthan h2{
    font-family: 'Marathi-Kanak';
}
.about-bhimalpen-baba p {
    text-align: justify;
    
}
.devasthan-facilities p {
    text-align: justify;
    
} 
.contact p {
    text-align:center;
}

.footer{
    background-color: #2C2C2C;
    color: #fff;
    padding: 10px 0;
    border-top: 5px solid #E9E9E9;
}
.copy-right {
    text-align:center;
	padding:10px 0px;
	position:relative;
}
.copy-right a{
    color: inherit;
    text-decoration: none;
}

.copy-right a:hover{
    color:#F9D326;
}

.copy-right p{
    color: #FFF;
	font-size: 0.9500em;
    font-family: 'Viga-Regular';
}
.location img{
    width: 100%;
    height: auto;
    display: block;
    margin-left: auto;
    margin-right: auto;
    padding-bottom: 50px;
}

.hamb {
    cursor: pointer;
    float: right;
    padding: 80px 20px;
}

.hamb-line {
    background: white;
    display: block;
    height: 2px;
    position: relative;
    width: 24px;

}


.hamb-line::before,
.hamb-line::after{
    background: white;
    content: '';
    display: block;
    height: 100%;
    position: absolute;
    transition: all .2s ease-out;
    width: 100%;
}
.hamb-line::before{
    top: 5px;
}
.hamb-line::after{
    top: -5px;
}
.side-menu {
    display: none;
}
.about-d{
    display: none;
}

.side-menu:checked ~ nav{
    max-height: 100%;
}
.side-menu:checked ~ .hamb .hamb-line {
    background: transparent;
}
.side-menu:checked ~ .hamb .hamb-line::before {
    transform: rotate(-45deg);
    top:0;
}
.side-menu:checked ~ .hamb .hamb-line::after {
    transform: rotate(45deg);
    top:0;
}

 .gallery {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
}

.gallery img {
  width: 350px;
  height: auto;
  border-radius: 8px;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.gallery img:hover {
  transform: scale(1.05);
}


.lightbox {
  display: none;
  position: fixed;
  z-index: 10;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0,0,0,0.8);
  justify-content: center;
  align-items: center;
}

.lightbox img {
  max-width: 150%;
  max-height: 140%;
  border-radius: 10px;
}

.close {
  position: absolute;
  top: 30px;
  right: 40px;
  font-size: 40px;
  color: white;
  cursor: pointer;
}

.social-icons {
    display: inline-flex;
    gap: 12px;
    align-items: center;
  }

  .social-icons .icon {
    display: inline-flex;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    background: #f3f4f6;
    transition: transform .14s ease, box-shadow .14s ease;
    color: #000; /* all icons black */
  }

  .social-icons .icon svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
  }

  .social-icons .icon:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 14px rgba(0,0,0,0.12);
  }

@keyframes slideIn {
  from {
    transform: translateY(-100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.side-menu:checked~nav .menu a {
  animation: slideIn 0.5s forwards;
}


@media (min-width: 768px){
   
    .nav{
        max-height: none;
        top: 0;
        position: relative;
        float: right;
        width: fit-content;
        background-color: transparent;
    }
    .menu li{
        float: left;
        padding-top: 20px;
    }
    .menu a:hover{
        background-color: transparent;
        color: grey;
    }
    .hamb{
        display: none;
    }

    .heading h1{
        display: none;
    }

    .content {
    flex-direction: column;
    align-items: flex-start;
    }

    .content p{
    text-align:center;
    line-height: 1.5em;
    font-family: 'Marathi-Kanak';
    padding: 5px 10px 5px 10px;
    }

    .content #titletext {
        font-size:1.0em;
        }

    #language p{
    font-size: 20px;
    float: right;
    font-family:'Viga-Regular';
    }
    #language a{
    color: inherit;
}
    #language a:hover{
        color: #FFF;
    }
   
}