
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@100;200;300;500;600;700&family=Open+Sans:wght@300;400;500;600;700;800&display=swap');



:root{
    --grey: #283036;
    --green: #00a462;
    --light-green: #72b599;
}

*{
    margin: 0;
    padding: 0;
}

html, input{
    font-family: 'Montserrat', sans-serif;
}

.light{
    font-weight: 300;
}

i.hamburger{
    font-size: 40px;
    position: absolute;
    top: 20px;
    left: 20px;
    transition: 0.2s;
    display: none;
}

.hamburger:hover{
    cursor: pointer;
    scale: 1.1;
}

.nav{
    color: white;
    margin: 20px auto;
    width: 90%;
    display: flex;
    /* position: sticky; */
    top: 0;
    z-index: 1;
    position: fixed;
    left: 50%;
    transform: translate(-50%, 0);

}

.nav-triangle{
    border-color: transparent transparent var(--grey);
    border-width: 0px 0px 120px 80px;
    transform: scaleY(-1);
    border-style: solid;
    height: 100%;
}

.nav-top{
    display: flex;
    width: 100%;
    justify-content: space-between;
}

.nav-top .contact{
    gap: 20px;
    font-size: 14px;
    font-weight: 300;
}

.nav-top .contact li{
    display: flex;
    gap: 5px;
}

.nav-top .contact .icon{
    color: var(--light-green);
}

.nav-top .social{
    gap: 10px;
}

.nav-content{
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 20px;
    width: 80%;
    background: var(--grey);
    justify-content: space-between;

}

.nav-content ul{
    display: flex;
    padding: 0px;
}

.nav-content li{
    display: block;
}

.logo{
    width: 20%;
    height: 100fr;
    display: block;
    background: var(--light-green);
}

.nav-links{
    display: flex;
}

.nav-links li{
    flex-grow: 1;
}

.nav-link{
    display: block;
    color: white;
    text-decoration: none;
    padding: 10px 0;
}

.language{
    border: 1px solid white;
    padding: 5px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.page-content{
    position: absolute;
    top: 0;
    display: flex;
    flex-direction: column;
    width: 100%;
}

.home-section{
    position: relative;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    height: 100vh;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
}

.home-section .content{
    position: relative;
}

.home-section::before{
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.274);
}

.arrow-btn .arrow{
    position: absolute;
    right: 100%;
    top: 50%;
    transform: translate(0, -50%);
    height: 14px;
    width: 14px;
    /* background: var(--grey); */
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.arrow-btn.header{
    padding: 10px 20px;
}

.arrow-btn .topborder{
    position: absolute;
    left: 0;
    top: 0px;
    height: 10px;
    width: 1px;
    border-left: 1px solid white;
}

.arrow-btn .bottomborder{
    position: absolute;
    left: 0;
    bottom: 0px;
    height: 10px;
    width: 1px;
    border-left: 1px solid white;
}

.arrow-btn .arrow .line{
    height: 1px;
    background: white;
    width: 100%;
}

.arrow-btn{
    position: relative;
    padding: 12px 40px;
    border: 1px solid white;
    border-left: none;
    display: flex;
    width: max-content;
    margin: 0px auto;
    color: white;
    text-decoration: none;
}

.main-header{
    color: white;
    font-size: 50px;
    text-align: center;
}

.main-header.black{
    color: black;
}

.home-section h2{
    color: white;
    font-size: 25px;
    text-align: center;
    font-weight: 500;
}

.availability-section{
    /* background: lightcoral; */
    position: relative;
    background-image: url("theater.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    height: 100vh;
    /* padding: 100px 0; */
    box-sizing: border-box;
}

.availability-section .content{
    /* margin-top: 100px;
    margin-bottom: 50px; */
    background-color: rgba(0, 0, 0, 0.614);
    /* filter: blur(8px); */
    height: 100%;
    padding: 50px 0;
    box-sizing: border-box;
    backdrop-filter: blur(8px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    font-size: 18px;
}

.availability-section .bg-img{
    width: 100%;
    position: absolute;
    top: 0;
}

.table-wrapper{
    overflow: auto;
}

.availability-table{
    color: white;
    width: 100%;
    padding: 50px;
    box-sizing: border-box;
    text-align: center;
    table-layout: fixed;
}

.availability-table .table-label{
    font-size: 1.2em;
}

.availability-table .fa-buildings{
    font-size: 2.8em;
    padding: 10px;
}

.fa-buildings.green{
    color: var(--green);
}

.availability-table thead>tr>td{
    padding: 20px 0;
    width: 100px;
    font-size: 1em;
}

.availability-box{
    position: relative;
    width: 50px;
    height: 40px;
    display: flex;
    align-items: center;
}

.availability-box .line{
    left: 0;
    position: absolute;
    width: 40px;
    height: 1px;
    background: white;
}

.availability-box .box{
    position: absolute;
    background: var(--green);
    width: 30px;
    height: 30px;
    right: 0;
}

.availability-box.invert .line{
    background: var(--green);
    right: 0;
    left: unset;
}

.availability-box.invert .box{
    background: white;
    left: 0;
    right: unset;
}

.availability-info{
    display: flex;
    gap: 20px;
    align-items: center;
    justify-content: center;
}

.availability-info p{
    display: flex;
    color: white;
    font-weight: 300;
}

.user-section {
    position: relative;
    height: 100vh;
    display: flex;
}

.user-section .img-left{
    background-image: url("street.jpeg");
    width: 50%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    margin-top: 15vh;
}

.user-section .img-right{
    background-image: url("street.jpeg");
    opacity: 0.1;
    width: 50%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.user-section .content-container{
    position: absolute;
    right: 10%;
    width: 50%;
    /* height: 80vh; */
    bottom: 0;
    background-color: white;
    padding: 40px;
    box-sizing: border-box;
}

.main-header.user{
    color: black;
    text-align: left;
    margin-bottom: 40px;
}

.user-link{
    position: relative;
    border-bottom: 1px solid lightgrey;
    text-decoration: none;
    color: black;
    padding: 40px 0;
    display: flex;
    align-items: center;
}

.user-link div{
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.user-link .title{
    color: black;
    font-weight: 500;
    transition: 0.1s;
}

.user-link .description{
    display: none;
    font-weight: 300;
}

.user-link .arrow{
    position: absolute;
    right: 0;
    font-size: 30px;
    color: var(--green);
}

.user-link:hover .description{
    display: block;
    color: grey;
}

.user-link:hover .title{
    color: var(--green);
}

.user-link:hover{
    border-color: black;
}

.contact-section{
    height: 100vh;
    padding: 100px 0;
    box-sizing: border-box;
}

.main-header.contact{
    margin-bottom: 30px;
}

.contact-section .content{
    position: relative;
    display: grid;
    grid-template-columns: 1fr 0.9fr 1fr;
    height: 100%;
    box-sizing: border-box;
    background-image: url("zaal.jpg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.contact-section .content:before{
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: rgba(34, 31, 46, 0.788);
}

.contact-section .form{
    backdrop-filter: blur(8px);
    padding: 40px;
    display: flex;
    justify-content: center;
    flex-direction: column;
}

.contact-section .form>form{
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-section .img{
    position: relative;
    top: -5%;
    height: 110%;
    background-image: url("zaal.jpg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.contact-section .info{
    backdrop-filter: blur(8px);
    color: white;
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding: 40px;
    justify-content: center;
}

.contact-section .info p{
    font-weight: 300;
    margin: 2px 0;
}

.contact-section .info h3{
    font-weight: 600;
    margin-bottom: 4px;
}



.contact-input{
    padding: 15px;
    width: 100%;
    box-sizing: border-box;
    display: block;
    border: 1px solid white;
    background: transparent;
    color: white;
}

.contact-dropdown-placeholder{
    position: relative;
    padding: 15px;
    border: 1px solid white;
    font-size: 14px;
    color: grey;
    box-sizing: border-box;
}

.contact-dropdown-placeholder>div{
    display: flex;
    justify-content: space-between;
}

.contact-dropdown-placeholder i{
    color: white;
}

.contact-dropdown-placeholder:hover{
    cursor: pointer;
}

.contact-dropdown{
    display: flex;
    flex-direction: column;
    position: absolute;
    top: calc(100% + 1px);
    width: 100%;
    left: -1px;
}

.contact-dropdown input[type="radio"]{
    position: fixed;
    opacity: 0;
    pointer-events: none;
}

.contact-dropdown-item{
    padding: 15px;
    border: 1px solid white;
    border-top: none;
    color: white;
    border-left: 5px solid white;
    background-color: #1b1e21c4;
    width: calc(100% + 2px);
    box-sizing: border-box;
}

.contact-dropdown-item:hover{
    background-color: rgba(27, 23, 23, 0.864);
    cursor: pointer;
}

.contact-dropdown input[type="radio"]:checked + .contact-dropdown-item{
    background-color: rgb(12, 11, 17);
    color: var(--green);
}

.contact-submit{
    display: flex;
    margin: 20px 0;
    transition: 0.1s;
}

.contact-submit:hover{
    cursor: pointer;
    opacity: 0.8;
}

.contact-submit .parts{
    width: 10%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: end;
}

.contact-submit .parts>.block-top{
    background-color: var(--light-green);
    height: 25%;
    width: 60%;
}

.contact-submit .parts>.line{
    width: 150%;
    height: 1px;
    margin-right: -50%;
    background-color: white;
}

.contact-submit .parts>.block-bottom{
    background-color: var(--light-green);
    height: 25%;
    width: 60%;
}

.contact-submit .btn-content{
    background: var(--light-green);
    color: white;
    padding: 15px 15px 15px;
    text-align: center;
    width: 90%;
    padding-right: 10%;
    z-index: -1;

}

.review-section{
    padding: 30px;
}

.main-header.review{
    margin-bottom: 30px;
    color: black;
}

.review-section .review-arrows{
    display: flex;
    justify-content: flex-end;
    font-size: 25px;
    gap: 5px;
    color: grey;
}

.review-arrow.white{
    color: white;
}

.review-section .row{
    display: flex;
    width: 80%;
    margin: 0 auto;
}

.review-section .img{
    height: fit-content;
    margin-top: 30px;
    margin-right: -40px;
    position: relative;
}

.review-section .content{
    background: var(--grey);
    color: white;
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 30px 50px 30px 80px;
    width: 60%;
}

.review-section .content .text{
    font-weight: 300;
    line-height: 25px;
    font-size: 14px;
}


.review-section .quote{
    font-size: 60px;
    color: grey;
}

.review-section .user{
    display: flex;
    gap: 10px;
}

.review-box{
    width: 65px;
    position: relative;
    display: flex;
    align-items: center;
}

.review-box .line{
    right: 0;
    position: absolute;
    width: 45px;
    height: 1px;
    background: white;
}

.review-box .box{
    position: absolute;
    background: var(--light-green);
    width: 35px;
    height: 35px;
    left: 0;
}

.information-section{
    display: flex;
}

.main-header.information{
    text-align: left;
    margin: 20px 0;
}

.green-header{
    color: var(--green);
    font-weight: 300;
}

.information-section .content{
    background: var(--grey);
    padding: 50px 60px;
}

.information-section .content .text{
    font-weight: 300;
    color: white;
    line-height: 25px;
}

.information-section{
    align-items: center;
}

.information-section img{
    height: max-content;
}

.arrow-btn.information{
    margin: 40px 15px;
    font-weight: 300;
}

.newsletter-section{
    /* width: 80%; */
    gap: 40px;
    margin: 50px auto;
    padding: 50px 30px;
    box-shadow: 0 0 10px 10px rgba(0, 0, 0, 0.03);
    display: flex;
    align-items: center;
    justify-content: space-around;
}

.newsletter-section h2{
    font-weight: 400;
}

.arrow-btn.newsletter{
    color: var(--green);
    border-color: var(--green);
    font-weight: 300;
    white-space: nowrap;
}

.arrow-btn.newsletter .topborder{
    background-color: var(--green);
}

.arrow-btn.newsletter .bottomborder{
    background-color: var(--green);
}

.arrow-btn.newsletter .line{
    background-color: var(--green);
}

.newsletter-section .row{
    display: flex;
    border: 1px solid lightgrey;
    padding: 10px;
}

.newsletter-section .input{
    outline: transparent;
    border: none;
    min-width: 300px;
    padding-right: 15px;
    font-weight: 300;
}

.footer{
    width: 100%;
    display: flex;
}

.footer a{
    text-decoration: none;
    color: black;
}

.footer .logo{
    background: var(--grey);
    padding: 30px;
    color: white;
    font-weight: 300;
    font-size: 12px;
    width: 30%;
    padding-left: 50px;
    line-height: 18px;
    box-sizing: border-box;
}

.footer .content{
    padding: 10px 30px;
    width: 100%;
    background: #f8f8f8;
    padding-right: 50px;
    box-sizing: border-box;
}

.footer-nav{
    display: flex;
    font-weight: 300;
    border-bottom: 1px solid grey;
    gap: 0 10px;
    flex-wrap: wrap;
}

.footer-nav>li{
    display: flex;
    flex-grow: 1;
    padding: 20px 0;
}

.footer-legal{
    font-weight: 300;
    /* text-decoration: none; */
    display: flex;
    justify-content: space-between;
    padding: 20px 0;
    border-top: 1px solid grey;
}

.footer .divider{
    height: 100%;
    /* background: black; */
    border-left: 1px solid black;
}

.footer-legal div{
    display: flex;
    gap: 10px;
}

.footer .social{
    color: var(--light-green);
    display: flex;
    gap: 20px;
    padding: 30px 0;
}

.footer .social>li{
    display: flex;
}

.footer-contactinfo{
    display: flex;
    padding: 30px 0;
    gap: 20px;
}

.footer-contactinfo i{
    color: var(--light-green);
}

.footer-contactinfo .item{
    display: flex;
    align-items: center;
    gap: 15px;
    flex-grow: 1;
}

.footer-contactinfo .type{
    font-size: 14px;
    font-weight: 400;
}

.footer-contactinfo .info{
    font-size: 14px;
    font-weight: 300;
    white-space: nowrap;
}

.footer .content .middle{
    display: flex;
    align-items: center;
}

.footer-triangle{
    border-color: transparent transparent var(--grey);
    border-width: 0px 0px 120px 80px;
    transform: scaleY(-1);
    border-style: solid;
    height: 100%;
    width: 100%;
    margin-right: -50px;
}




@media (max-width: 800px) {
    i.hamburger{
        display: block;
    }
    .nav{
        flex-direction: column;
        margin: 0;
        width: 100%;
        background: var(--grey);
    }
    .logo{
        width: 30%;
        height: auto;
        /* min-height: 100px; */
        margin: 0 auto
    }

    .nav-content{
        width: 100%;
        box-sizing: border-box;
    }

    .nav-links{
        flex-direction: column;
    }

    .nav-triangle{
        display: none;
    }

    .availability-section{
        height: auto;
    }

    .contact-section{
        height: auto;
    }

    .contact-section .img{
        display: none;
    }

    .contact-section .content{
       grid-template-columns: 1fr 1fr;
    }

    .contact-section .form{
        padding: 30px;
    }

    .contact-section .info{
        padding: 30px;
    }
    
    .review-section .row{
        flex-direction: column;
        width: 100%;
    }

    .review-section .img{
        margin-right: 0;
    }

    .review-section .content{
        padding: 30px;
        width: 100%;
        box-sizing: border-box;
    }

    .information-section{
        flex-direction: column;
    }

    .information-section .content{
        padding: 30px;
    }

    .newsletter-section{
        width: 100%;
        box-sizing: border-box;
        flex-direction: column;
        padding: 20px 40px;
    }

    .newsletter-section .row{
        width: 100%;
    }

    .newsletter-section .input{
        min-width: unset;
        width: 60%;
    }

    .footer{
        flex-direction: column;
    }

    .footer .logo{
        width: 100%;
        padding: 30px;
    }

    .footer-triangle{
        display: none;
    }
}

@media (max-width: 500px) {

    .nav-top{
        flex-wrap: wrap;
        justify-content: center;
        gap: 5px;
    }

    .main-header{
        font-size: 40px;
    }

    .contact-section{
        padding: 30px 0;
    }

    .user-section{
        height: auto;
    }

    .availability-table{
        padding: 30px;
    }

    .availability-section .content{
        font-size: 15px;
    }

    .user-section .content-container{
        position: unset;
        width: 100%;
        height: auto;
        padding: 30px;
    }

    .user-section .img-right{
        display: none;
    }

    .user-section .img-left{
        display: none;
    }

    .contact-section{
        height: auto;
    }
    .contact-section .content{
        display: flex;
        flex-direction: column;
    }

    .arrow-btn.newsletter{
        width: 95%;
        box-sizing: border-box;
        padding: 10px;
    }

    .newsletter-section .row{
        flex-direction: column;
    }

    .newsletter-section .input{
        padding: 10px;

    }

    .footer-contactinfo{
        flex-direction: column;
    }

    .footer-nav>li{
        padding: 15px 0;
    }

    .footer-legal .divider{
        display: none;
    }
}