@import url('https://fonts.googleapis.com/css2?family=Merriweather&family=Montserrat&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;1,500;1,600&family=Roboto:wght@300;400;500;700&family=Sacramento&display=swap');

*{
    margin:0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
    scroll-behavior: smooth;
}

:root{
    --black: #333;
    --white: #fff;
}



header{
    position:fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 100px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--white);
    z-index: 1000;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    
}

header img{
    position: relative;
    display: inline-block;
    width: 40px;
    height: 40px;
    border-radius: 20px;
    
    
}

header.sticky{
    padding: 10px 100px;
}

.logo{
    position: relative;
    display: inline-block;
    color: var(--black);
    text-decoration: none;
    font-size: 1.5em;
    font-weight: 800;
    letter-spacing: 2px;
    margin-right: 900px;
}

.menuToggle{
    position: relative;
    width: 30px;
    height: 30px;
    background: url(imageA/menu.png);
    background-size: 30px;
    background-repeat: no-repeat;
    background-position: center;
    cursor: pointer;
}

.menuToggle.active{
    background: url(imageA/close.png);
    background-size: 25px;
    background-repeat: no-repeat;
    background-position: center;
}

.navigation{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--white);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    z-index: 999;
    transition: 0.25s;
    opacity: 0;
    visibility: hidden;
}

.navigation.active{
    opacity: 1;
    visibility: visible;
}

.navigation li{
    list-style: none;
    margin: 10px 0;
}

.navigation li a{
    color: var(--black);
    font-size: 1.2em;
    letter-spacing: 2px;
    display: inline-block;
    font-weight: 400;
    text-decoration: none; 
    text-transform: uppercase;
}

section{
    position: relative;
    padding: 100px;
    width: 100%;
    min-height: 100vh;
    background: var(--white);
}

.cover{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.banner{
    display: flex;
    justify-content: center;
    align-items: center;
}

.banner .contentBx{
    position: relative;
    z-index: 1;
    background: var(--black);
    padding: 70px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.banner .contentBx h2{
    font-size: 2em;
    font-weight: 500;
    color: var(--white);
    letter-spacing: 2px;
    text-align: center;
    text-transform: uppercase;
}

.banner .contentBx h5{
    font-size: -1em;
    font-weight: 300;
    letter-spacing: 1px;
    font-display: inline;
    color: var(--white);
}

.btn{
    position:relative;
    display: inline-block;
    padding: 8px 20px;
    margin-top: 20px;
    border: 2px solid var(--black);
    color: var(--black);
    background: var(--white);
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: 0.25s;
}

.btn:hover{
    color: var(--white);
    background: var(--black);
}

.title{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.title h2{
    position: relative;
    font-weight: 500;
    letter-spacing: 2px;
    font-size: 1.4em;
    color: var(--black);
}

.title p{
    margin-top: 40px;
    max-width: 700px;
    text-align: center;
}

.title h2:before{
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 6px;
    background: var(--black);
}

p{
    color: var(--black);
    font-weight: 300;
    text-align: justify;
}

.about .contentBx{
    position: relative;
    margin-top: 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 40px;
    
}

.about .contentBx .content{
    position: relative;
}

.about .contentBx .content .imgBx{
    min-height: 400px;
}

.gallery{
    position: relative;
}

.gallery .contentBx{
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-gap: 20px;
    margin-top: 20px;
} 

.gallery .contentBx .postColumn{
    position: relative;
}   

.gallery .contentBx .postColumn .postBox{
    position: relative;
    width: 100%;
    height: 400px;
    margin-top: 20px;
}

.gallery .contentBx .postColumn .postBox.extraHeight{
    height: 600px;
}

.gallery .contentBx .postColumn .postBox .textBx{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--white);
    padding: 20px;
    display: flex;
    justify-content: flex-end;
    align-items: flex-start;
    flex-direction: column;
    transition: 0.25s;
    opacity: 0;
    visibility: hidden;
}

.gallery .contentBx .postColumn .postBox:hover .textBx{
    opacity: 0.9;
    visibility: visible;
}
.gallery .contentBx .postColumn .postBox .textBx h3{
    font-weight: 400;
    font-size: 1em;
    letter-spacing: 1px;
    color: var(--black)
}

.gallery .contentBx .postColumn .postBox .textBx .btn{
    padding: 4px 10px;
    background: var(--black);
    color: var(--white);
    font-weight: 300;
    font-size: 1em;
}


.contact{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    
}

.contact-info {
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 20px;
}

/* Style the icon block */
.icon-block {
    text-align:center;
    align-items:center;
    display:flex;
    
}

/* Style the icons */
i {
    font-size: -30px;
    margin-bottom: 10px;
    
}

/* Style the text */
p {
    color: #333;
    font-size: 20px;
    
}

.pa{
    font-size: 25px;

}


/* Add styles for hover effect on links */
a:hover {
    text-decoration: underline;
}

.icons{
    height:auto;
    width:auto;
}



.contact{
    position:relative;
    min-height: 100vh;
    padding: 50px 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}



.contact-info{
    
    display:inline;
}

.contact-info h3{
    
    display:inline;
    font-size: 24px;
    margin-bottom: 10px;
    color: #333;
}

.contact-info p{
    
    display: inline;
    margin-bottom: 10px;
    color: #333;
    display:block;
    
}

.contact-info i{
    
    display:inline;
    margin-bottom: 10px;
    margin-right: 20px;
}



footer{
    padding: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    background: #f8f8f8;
    border-top: 1px solid rgba(0,0,0,0.05);
}

footer .contact-info {
    display:inline;
    flex-direction:row;
    align-items: center;
    text-align: center;
}

footer .footerMenu{
    display: flex;
}

footer .footerMenu li{
    list-style: none;
}

footer .footerMenu li a{
    display: inline-block;
    text-decoration: none;
    margin: 20px;
    color: var(--black);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.copyrightText{
    color: var(--black);
    text-align: center;
    letter-spacing: 1px;
}


/* now, we will make it responsive */

@media (max-width: 767px){
    
        
    header{
        padding: 20px;
        
    }

    header .logo{
        margin-right: 20px;
    }

    

    header.sticky{
        padding: 10px;
    }

    .menuToggle {
        margin-right: 20px;
    }

    section{
        padding: 20px;
    }
    
    .cover {
        max-height: 600px; 
        margin: 0 auto;
    }
    .banner .contentBx{
        padding: 40px 30px;
    }
    .about .contentBx{
        grid-template-columns: repeat(1,1fr);
    }
    .gallery .contentBx{
        grid-template-columns: repeat(1,1fr);
    }
    .gallery .contentBx .postColumn .postBox{
        height: 300px;
    }
    .gallery .contentBx .postColumn .postBox .extraHeight{
        height: 300px;
    }
    .contact .contactForm .row{
        grid-template-columns: repeat(1,1fr);
    }
    footer{
        padding: 40px 20px;
    }
    footer .footerMenu{
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        margin: 20px 0;
    }
    footer .footerMenu li a{
        margin: 5px 0;
    }
    .title{
        padding-top: 50px;
    }
    .mgt60{
        margin-top: 0px;
    }
}


