*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Merriweather', serif;
    /*font-family: 'Gloock', serif;*/
    scroll-behavior: smooth;
}
body{
    background-color: #eee;
    
}
.container{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: auto;
    width: 980px;
}

/*Header*/

nav{
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    padding: 10px;
    width: inherit;
}
.logo{
    width: 150px;
}
.menu{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 10px 15px;
}
.menu a{
    text-decoration: none;
    color: #000;
    font-weight: 900;
    display: block;
    padding: 10px 15px;
    border: solid 1px #aaa;
    box-shadow: 4px 4px 1px #aaa;
    transition: 0.5s;
}
.menu a:hover{
    border: solid 1px #000;
    box-shadow: 4px 4px 1px #000;
    background-color: #fff;
}
.navBtn{
    text-decoration: none;
    color: #fff;
    font-weight: 900;
    display: block;
    padding: 10px 15px;
    border: solid 1px transparent;
    background-color: #000;
    box-shadow: 4px 4px 1px #aaa;
    transition: 0.5s;
}
.navBtn:hover {
    background-color: #fff;
    color: #000;
    border: solid 1px #000;
    box-shadow: 4px 4px 1px #000;
}
.fa-whatsapp{
    padding: 0 10px 0 0;
    font-size: 20px;
}


/*Hero Section*/
.heroSection{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}
.heroText{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 10px;
}
.heroTitle h2{
    font-family: 'Gloock', serif;
    font-size: 75px;
    width: 95%;
    /* margin-bottom: 20px; */
}
.heroDescription p{
    line-height: 30px;
    width: 90%;
}
.heroButtons{
    display: flex;
    gap: 15px;
    padding: 10px 0;
}
.blackBtn{
    text-decoration: none;
    color: #fff;
    font-weight: 900;
    display: block;
    padding: 10px 15px;
    border: solid 1px transparent;
    background-color: #000;
    box-shadow: 4px 4px 1px #aaa;
    transition: 0.5s;
}
.blackBtn:hover{
    background-color: #fff;
    color: #000;
    border: solid 1px #000;
    box-shadow: 4px 4px 1px #000;
}
.whiteBtn{
    text-decoration: none;
    color: #000;
    font-weight: 900;
    display: block;
    padding: 10px 15px;
    border: solid 1px #aaa;
    background-color: #eee;
    box-shadow: 4px 4px 1px #aaa;
    transition: 0.5s;
}
.whiteBtn:hover{
    background-color: #fff;
    color: #000;
    border: solid 1px #000;
    box-shadow: 4px 4px 1px #000;
}
.heroImg{
    width: 100%;
    margin: auto;
    box-shadow: 8px 8px 1px #000;
}


/*Services Section*/
.servicesSection{
    margin-top: 30px;
    background-color: #000;
    color: #fff;  
    padding-bottom: 20px;  
}
.servicesContainer{
    display: flex;
    flex-direction: column;
    padding: 30px 10px;
}
.servicesTitle{
    font-family: 'Gloock', serif;
    font-size: 30px;
    text-align: center;
    margin-bottom: 20px;
}
.servicesCardsContainer{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 10px;
}
.serviceCard{
    padding: 15px;
    border: solid 1px #aaa;
    box-shadow: 4px 4px 1px #aaa;
    text-align: center;
}
.whiteCard{
    background-color: #eee;
    color: #000;
}
.cardIcon{
    width: 100px;
}
.blackIcon{
    filter: invert(100%);
}
.serviceCard h2{
    margin-bottom: 20px;
}
.serviceCard a{
    text-decoration: none;
    color: #000;
    font-weight: 900;
    display: block;
    padding: 10px 15px;
    border: solid 1px #aaa;
    background-color: #eee;
    box-shadow: 4px 4px 1px #aaa;
    transition: 0.5s;
    margin: 10px auto;
    width: fit-content;
}

/*See more section*/
/*Decoration*/
.decorationContainer{
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding: 0 10px;
    gap: 20px;
}
.decorationText h2{
    font-size: 40px;
    padding: 20px 10px;
    font-family: 'Gloock', serif;
}
.decorationText p{
    padding: 10px 10px;
}
.decorationText .blackBtn{
    width: fit-content;
    margin: 10px;
}
.decorationImg{
    width: 100%;
}

/*Construction*/
.blackSection{
    background-color: #000;
    color: #fff;
}
.constructionContainer{
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding: 0 10px;
    gap: 20px;
}
.constructionText h2{
    font-size: 40px;
    padding: 20px 10px;
    font-family: 'Gloock', serif;
}
.constructionText p{
    padding: 10px 10px;
}
.constructionText .whiteBtn{
    width: fit-content;
    margin: 10px;
}
.constructionImg{
    width: 100%;
}

/*Projects Section*/
.projectsSection{
    background-color: #000;
    color: #fff;
    padding-bottom: 20px;
}
.projectsTitle{
    font-family: 'Gloock', serif;
    font-size: 30px;
    text-align: center;
    padding: 30px 0;
}
.projectsText{
    padding: 10px;
    text-align: center;
}
.projectsGrid{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    place-items: center;
    gap: 10px;
    padding: 10px;
}
.projectImg{
    width: 100%;
}

/*LightBox*/
.lightbox {
  /* Default to hidden */
  display: none;
  /* Overlay entire screen */
  position: fixed;
  z-index: 999;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  text-align:center;
  text-decoration:none;
  font-weight:bold;
  color: #fff;
  /* A bit of padding around image */
  padding: 10px;
  /* Translucent background */
  background: rgba(0, 0, 0, 0.8);
}
/* Unhide the lightbox when it's the target */
.lightbox:target {
  display: block;
}
.lightbox span {
  /* Full width and height */
  display: block;
  width: 100%;
  height: 100%;
  /* Size and position background image */
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
.closeLightbox{
    position: absolute;
    right: 25px;
    top: 15px;
    color: #fff;
    font-size: 25px;
    text-decoration: none;
}


/*Testimonial Section*/
.testimonialContainer{
    padding: 10px;
    padding-bottom: 30px;
}
.testimonialCardContainer{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}
.testimonialTitle{
    padding: 20px 10px;
    font-family: 'Gloock', serif;
    font-size: 30px;
    text-align: center;
}
.testimonialCard{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    max-width: 450px;
    min-height: 400px;
    padding: 20px;
    border: solid 1px #aaa;
}

.fa-quote-right{
    display: flex;
    justify-content: end;
    
}

.clientLogoInvert{
    width: 150px;
    filter: invert(100%);
}
.clientLogo{
    width: 150px;
}
.clientName{
    text-align: center;
}

/*Contact Modal*/
.contactModal{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center; 
    max-width: 700px;
    margin: auto;
    height: 100%;
    background-color: #000;
    background-image: url(./img/background.jpg);
    background-position: center;
    background-size: cover;
    border-radius: 25px;
    gap: 20px;
}
.contactModalLogo{
    width: 250px;
    
}
.contactModal .contactTitle{
    font-family: "Gloock", serif;
    font-size: 30px;
    letter-spacing: 3px;
}
.contactModal p{
    font-size: 20px;
    padding: 0 15px;
}


/*Contact and Footer*/
footer{
    background-color: #000;
    color: #fff;
}
.footerContainer{
    padding: 10px;
}
.footerInfo{
    display: flex;
    justify-content: space-between;
    width: 100%;
    padding-bottom: 20px;
}
.footerText{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    flex: 1;
    padding: 20px;
}
.footerLogo{
    width: 200px;
}
.footerDescription{
    max-width: 320px;
    text-align: center;
}
.footerContact{
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
    
}
.footerBtn{
    text-decoration: none;
    color: #000;
    font-weight: 900;
    display: block;
    padding: 10px 15px;
    border: solid 1px transparent;
    background-color: #fff;
    box-shadow: 4px 4px 1px #aaa;
    transition: 0.5s;
}
.footerBtn:hover {
    background-color: #00b10f;
    color: #fff;
    border: solid 1px #000;
    box-shadow: 4px 4px 1px #fff;
}



.copyright{
    text-align: center;
    font-size: 15px;
    margin-top: 20px;
    padding: 10px 5px;
    
}



/* Banner Template */
.bannerTemplate{
    display: flex;
    flex-direction: column;
    gap: 5px;
    justify-content: center;
    align-items: center;
    padding: 10px;
    background-color: #222;
    color: #fff;
    position: fixed;
    bottom: 10px;
    right: 0;
    left: 0;
    margin: 0 10px;
    border-radius: 10px;
    z-index: 100;
}
.templateText{
    text-align: center;
}
.templateBtn{
    display: block;
    text-decoration: none;
    color: #000;
    background-color: #fff;
    padding: 5px 8px;
    border-radius: 5px;
}




@media (max-width:980px) {
    .container{
        width:100%;
    }
    .heroTitle h2{
        font-size: 50px;
    }
    .heroImg{
        width: 90%;
    }
    .servicesCardsContainer{
        grid-template-columns: 1fr;
        padding: 10px 50px;
    }

    .blackSection,
    .whiteSection{
    padding-bottom: 10px;
    }
    .decorationText h2{
        font-size: 35px;
    }
    .decorationImg{
        width: 95%;
        box-shadow: 8px 8px 1px #000;
    }
    .constructionText h2{
        font-size: 35px;
    }
    .constructionImg{
        width: 95%;
        box-shadow: 8px 8px 1px #aaa;
    }


    .projectsGrid{
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width:730px) {
    nav{
        flex-direction: column;
    }
    .menu{
        margin-top: 10px;
    }
    .menu a{
        padding: 10px 0 5px 0;
        padding-top: 0;
        border: none;
        border-bottom: solid 1px #333;
        box-shadow: none;
    }
    .menu a:hover{
        border: none;
        box-shadow: none;
    }
    .navBtn{
        margin-top: 10px;
    }


    .heroSection{
        grid-template-columns: 1fr;
    }
    .heroText{
        order: 2;
        text-align: center;
        align-items: center;
    }
    .heroTitle h2,
    .heroDescription p{
        margin: auto;
    }
    .heroImg{
        order: 1;
    }


    .servicesCardsContainer{
        grid-template-columns: 1fr;
        padding: 10px 10px;
    }


    .decorationContainer{
        grid-template-columns: 1fr;
        place-items: center;
        padding-bottom: 30px;
    }
    .decorationText h2{
        text-align: center;
    }
    .decorationText p{
        text-align: justify;
        hyphens: auto;
    }
    .decorationText .blackBtn {
        margin: 20px auto;
    }


    .constructionContainer{
        grid-template-columns: 1fr;
        place-items: center;
        padding-bottom: 30px;
    }
    .constructionText h2{
        text-align: center;
    }
    .constructionText p{
        text-align: justify;
        hyphens: auto;
    }
    .constructionText .whiteBtn {
        margin: 20px auto;
    }

    .contactModalLogo{
        width: 200px;
    }
    .contactModal .contactTitle {
        font-size: 20px;
    }
    .contactModal p{
        font-size: 15px;
    }
    .footerInfo{
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
    }
    .footerLogo{
        margin: auto;
    }
}