@import url('https://fonts.googleapis.com/css2?family=Roboto+Slab&display=swap');
.navbar{
    background: linear-gradient(to right, #555555, #000000);
    box-shadow: 0 12px 20px rgba(0, 0, 0,0.5);
    font-family: 'Roboto Slab', serif;
}

.navbar h2{
    font-family: 'Roboto Slab', serif;
}

.insta-btn{
    transition: all 0.4s ease;
    text-decoration: none;
    padding: 14px 14px;
    background: linear-gradient(to right, #bd0000, #790000);
    border-radius: 100px;
    border: none;
    font-weight: 600;
    color: white;
}

.insta-btn:hover{
    transform: translateY(-5px);
    color: white;
}

section{
    padding-top: 100px;
    padding-bottom: 100px;
    z-index: 2;
    position: relative;
}


.bg-cover{
    background-position:center;
    background-repeat: no-repeat;
    background-size:cover;
    background-attachment: fixed;
  
}

.hero-section{
    width: 100%;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
   
}

.welcome{
    font-family: 'EB Garamond', serif;
}

.card-effect{
    box-shadow: none;
    background-color: #fff;
    padding: 25px;
    transition: all 0.35s ease;
    color: white;
}


.card-effect{
    box-shadow: none;
    background-color: #fff;
    padding: 25px;
    transition: all 0.35s ease;
    color: white;
    font-family: 'EB Garamond', serif;
}
.touch{
    color: black;
}

.card-effect:hover{
    background: linear-gradient(to right, #bd0000, #790000);
    box-shadow: 0 12px 20px rgba(0, 0, 0,0.5);
    transform: translate(-5);
}

.card-effect:hover .touch{
  color: #9b0000;
}


#gallery{
    font-family: 'EB Garamond', serif;
}


#location{
    font-family: 'EB Garamond', serif;
}


  
.project{
    
    position: relative;
    overflow: hidden;
    box-sizing: border-box;
    border: 3px  black;
    border-style:ridge;
    box-shadow: 0 12px 20px rgba(0.3, 0.5, 0.5,0.5);
}

.project .overlay{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, #bd000063, #79000060);
    padding: 30px;
    display: flex;
    align-items: flex-end;
    transition: all 0.4s ease;
    opacity: 0;
    
}

.project img{
    transition: all 0.4s ease;   
    width: 100vh;
}

.project div{
    color: white;
}

.project:hover .overlay{
    opacity: 1;

}

.project:hover img{
    transform: scale(1.1);
}


#timing{
    text-align: center;
    font-family: 'EB Garamond', serif;
}


 .mailbtn{
    transition: all 0.3s ease;
    text-decoration: none;
    padding: 15px 60px;
    background: linear-gradient(to right, #bd0000, #790000);
    border-radius: 100px;
    border: none;
    font-weight: 600;
    color: white;
}
 .mailbtn:hover{
    transform: translatey(5px);
    background: linear-gradient(to right,#ff0000f5, #ffffffef);
    color: white;
} 


.wpbtn{
    transition: all 0.4s ease;
    text-decoration: none;
    padding: 15px 60px;
    background: linear-gradient(to right, #bd0000, #790000);
    border-radius: 100px;
    border: none;
    font-weight: 600;
    color: white;
}

.wpbtn:hover{
    transform: translateY(-5px);
    background: linear-gradient(to right, #1a9b00ef, #30fe07);
    color: white;  
}

#contact{
    font-family: 'EB Garamond', serif;
}

.footer{
    background: linear-gradient(to right, #555555, #000000);
    background-attachment: fixed;
    font-family: 'EB Garamond', serif;
}

/* From css.buttons.io by @westitan */
.button {
    position: relative;
    padding: 19px 36px;
    display: block;
    text-decoration: none;
    text-transform: uppercase;
    overflow: hidden;
    border-radius: 40px;
    border: none;
    font-family: 'EB Garamond', serif;
    box-shadow: 0 12px 20px rgba(122, 121, 121, 0.5);
}
   
   
   .button span {
    position: relative;
    color: #fff;
    font-family: Arial;
    letter-spacing: 8px;
    z-index: 1;
   }
   
   .button .liquid {
    position: absolute;
    top: -80px;
    left: 0;
    width: 100%;
    height: 200px;
    background: linear-gradient(to right, #bd0000, #790000);
    box-shadow: inset 0 0 50px rgba(0, 0, 0, .5);
    transition: .5s;
   }
   
   .button .liquid::after,
   .button .liquid::before {
    content: '';
    width: 200%;
    height: 200%;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -75%);
    background: #fff;
   }
   
   .button .liquid::before {
    border-radius: 45%;
    background: rgba(20, 20, 20, 1);
    animation: animate 5s linear infinite;
   }
   
   .button .liquid::after {
    border-radius: 40%;
    background: rgba(20, 20, 20, .5);
    animation: animate 10s linear infinite;
   }
   
   .button:hover .liquid {
    top: -120px;
   }
   
   @keyframes animate {
    0% {
     transform: translate(-50%, -75%) rotate(0deg);
    }
   
    100% {
     transform: translate(-50%, -75%) rotate(360deg);
    }
   }
