@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

html {
	scroll-behavior: smooth;
}

body {
    background-color: #000000;
    margin: 0;
    padding: 0;
}

p {
    margin: 0;
    margin-bottom: 10px;
}

a {
    text-decoration: none;
    color: inherit;
}

.header {
    height: 45px;
    background-color: #F5FBFF;
    padding: 15px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.logo {
    height: 100%;
}

.logo img {
    height: 100%;
}

.title {
    text-transform: uppercase;
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
    font-size: 30px;
    text-align: center;
}

.languageMenu {
    width: 80px;
    height: 100%;
    display: flex;
    flex-direction: row;
    gap: 10px;
    justify-content: end;
    align-items: center;
}

.languageMenu img {
    height: 50%;
    transition: all .2s ease-in-out;
}

.languageMenu img:hover {
    cursor: pointer;
    transform: scale(1.1);
}

.menu {
    background-color: #E5F3FD;
    display: flex;
    justify-content: center;
    flex-direction: row;
    gap: 25px;
    align-items: center;
    padding: 10px;
}

.tab {
    text-transform: uppercase;
    font-family: "Montserrat", sans-serif;
    font-weight: 500;
    font-size: 20px;
    transition: all .2s ease-in-out;
}

.tab:hover {
    cursor: pointer;
    transform: scale(1.1);
}

.aboutUs {
    background-color: #D1E5F4;
    padding: 15px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
}

.aboutUsText {
    font-family: "Montserrat", sans-serif;
    font-weight: 300;
    font-size: 18px;
}

.gallery {
    background-color: #BDD5E7;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    padding: 15px;
    gap: 15px;
}

.galleryImage img {
    width: 100%;
    border-radius: 10px;
}

.contactUs {
    background-color: #AECCE4;
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding: 15px;
    gap: 15px;
}

.contactUsText {
    display: grid;
    grid-template-rows: 1fr 1fr 1fr;
}

.contactUsField {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.contactUsTextLabel {
    text-transform: uppercase;
    font-family: "Montserrat", sans-serif;
    font-weight: 400;
    font-size: 18px;
    margin-bottom: 15px;
}

.contactUsTextValue {
    font-family: "Montserrat", sans-serif;
    font-weight: 300;
    font-size: 18px;
}

.contactUsMap {
    min-height: 300px;
}

.contactUsMap iframe {
    height: 100%;
    border-radius: 10px;
}

.footer {
    background-color: #9ABDDC;
    padding: 10px;
    display: flex;
    flex-direction: column;
}

.footerText {
    font-family: "Montserrat", sans-serif;
    font-weight: 600;
    font-size: 18px;
    text-align: center;
}

.footerImage {
    width: 100%;
    display: flex;
    justify-content: center;
}

.footerImage img {
    max-width: 100%;
}

.footerImageBig {
    display: block;
}

.footerImageSmall {
    display: none;
}

@media only screen and (max-width: 1000px) {
    .gallery {
        grid-template-columns: 1fr 1fr;
    }
}   

@media only screen and (max-width: 800px) {
    .header {
        height: 35px;
    }

    .title {
        font-size: 20px;
    }

    .languageMenu {
        width: 61px;
    }

    .languageMenu img {
        height: 70%;
    }

    .menu {
        gap: 20px;
    }

    .tab {
        font-size: 18px;
    }

    .aboutUsText {
        font-size: 16px;
    }

    .contactUsTextLabel {
        font-size: 16px;
    }

    .contactUsTextValue {
        font-size: 16px;
    }

    .footerText {
        font-size: 16px;
    }
}   

@media only screen and (max-width: 600px) {
    .contactUs {
        grid-template-columns: 1fr;
    }
}

@media only screen and (max-width: 500px) {
    .gallery {
        grid-template-columns: 1fr;
    }

    .footerImageBig {
        display: none;
    }
    
    .footerImageSmall {
        display: block;
    }
}   

@media only screen and (max-width: 400px) {
    .header {
        height: 25px;
    }

    .title {
        font-size: 14px;
    }

    .languageMenu {
        width: 44px;
    }

    .languageMenu img {
        height: 70%;
    }

    .menu {
        gap: 15px;
    }

    .tab {
        font-size: 14px;
    }

    .aboutUsText {
        font-size: 14px;
    }

    .contactUsTextLabel {
        font-size: 14px;
        margin-bottom: 8px;
    }

    .contactUsTextValue {
        font-size: 14px;
    }

    .footerText {
        font-size: 14px;
    }
}   