/* comfortaa-600 - latin-ext */
@font-face {
    font-display: swap;
    /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Comfortaa';
    font-style: normal;
    font-weight: 600;
    src: url('../fonts/comfortaa-v40-latin-ext-600.woff2') format('woff2'),
        /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
        url('../fonts/comfortaa-v40-latin-ext-600.ttf') format('truetype');
    /* Chrome 4+, Firefox 3.5+, IE 9+, Safari 3.1+, iOS 4.2+, Android Browser 2.2+ */
}

/* comfortaa-700 - latin-ext */
@font-face {
    font-display: swap;
    /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Comfortaa';
    font-style: normal;
    font-weight: 700;
    src: url('../fonts/comfortaa-v40-latin-ext-700.woff2') format('woff2'),
        /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
        url('../fonts/comfortaa-v40-latin-ext-700.ttf') format('truetype');
    /* Chrome 4+, Firefox 3.5+, IE 9+, Safari 3.1+, iOS 4.2+, Android Browser 2.2+ */
}

/* poppins-regular - latin-ext */
@font-face {
    font-display: swap;
    /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/poppins-v20-latin-ext-regular.woff2') format('woff2'),
        /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
        url('../fonts/poppins-v20-latin-ext-regular.ttf') format('truetype');
    /* Chrome 4+, Firefox 3.5+, IE 9+, Safari 3.1+, iOS 4.2+, Android Browser 2.2+ */
}

/* lexend-tera-300 - latin-ext */
@font-face {
    font-display: swap;
    /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Lexend Tera';
    font-style: normal;
    font-weight: 300;
    src: url('../fonts/lexend-tera-v27-latin-ext-300.woff2') format('woff2'),
        /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
        url('../fonts/lexend-tera-v27-latin-ext-300.ttf') format('truetype');
    /* Chrome 4+, Firefox 3.5+, IE 9+, Safari 3.1+, iOS 4.2+, Android Browser 2.2+ */
}

* {
    font-family: 'Poppins', sans-serif;
    scroll-behavior: smooth;
}

body {
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    height: 200vh;
    background-color: white;
}

header {
    background-color: rgba(20, 20, 20, 0);
    display: flex;
    justify-content: space-between;
    height: 35vh;
    width: 100%;
    z-index: 2;
    position: fixed;
    top: 0;
    transition: background-color 0.1s ease-in-out;
    font-size: 115%;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
}

button {
    border-radius:10px;
    border:1px solid rgba(0,0,0,0.3);
    box-shadow: none;
    background-color: white;
    padding-top:1%;
    padding-bottom:1%;
    font-size:120%;
    width:fit-content;
}

#headerLogo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 30%;
}

#logo {
    padding: 4% 8% 4% 8%;
    margin-top: 1%;
    height:20%;
}

main {
    background-image: url("../images/background.webp");
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 200%;
    text-shadow: 3px 5px 2px #474747, 2px 2px 4px rgba(0, 0, 0, 0.56);
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    height: 100vh;
}

.pFont {
    font-family: 'Comfortaa', cursive;
}

#menu {
    display: flex;
    margin: 1%;
    padding: 1%;
    justify-content: space-between;
    color: white;
    width: 40%;
    align-items: flex-start;
}

.click {
    transition: opacity 0.25s ease-in-out;
}

.click:hover {
    cursor: pointer;
    opacity: 0.6;
}

a {
    --c: linear-gradient(#00d400 0 0);
    /* update the color here */

    padding-bottom: .15em;
    background: var(--c), var(--c);
    background-size: .3em .1em;
    background-position: 50% 100%;
    background-repeat: no-repeat;
    transition: .3s linear, background-size .3s .2s linear;
    color:white;
    text-decoration: none;
}

a:hover {
    cursor: pointer;
    opacity: 0.8;
    background-size: 40% .1em;
    background-position: 10% 100%, 90% 100%;
}

.contactBlock {
    width: 20%;
    margin: 1%;
    padding: 1%;
    background-color: rgb(10, 10, 10);
    border-radius: 20px;
    color: white;
    height: 70%;
    display: flex;
    flex-direction: column;
}

.contactBlock>h4 {
    margin: 0;
    margin-bottom: 5%;
    align-self: center;
}

.contactBlock p {
    margin: 0.7rem;
}

.contactBlock>.row {
    font-size: 0.8em;
    word-break: break-all;
    width: 100%;
}

.row {
    display: flex;
    align-items: center;
    transition: opacity 0.25s ease-in-out;
}

.row img {
    height: 4vh;
    margin-right: 5%;
}

.smallFont {
    font-size: 60%;
    text-align: center;
    animation: flash 1s ease-in-out infinite;
}

main>div {
    height: 15%;
    position: relative;
    top: 20%;
}

img{
    max-width:98%;
}

@keyframes flash {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0.7;
    }

    100% {
        opacity: 1;
    }
}

#contactLink {
    display: none;
}

section {
    min-height: 70vh;
    width: 100%;
    padding-left:5%;
    padding-right:5%;
    display: flex;
    flex-direction: column;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    scroll-margin-top:15vh;
}

section.blbg {
    border-radius: 20px;
}

section>div {
    width: 100%;
}

.bigHeading {
    font-size: 300%;
    width: 100%;
}

.textRight {
    text-align: right;
}

section.sectionDark{
    border-radius:20px;
}

.wbg {
    background-color: white;
    color: black;
}

@keyframes wideText {
    0% {
        letter-spacing: 1em;
    }

    100% {
        letter-spacing: normal;
    }
}

#contactHeading {
    animation: wideText 0.25s ease-in;
    font-weight: bold;
    text-align: center;
    margin-top:0;
}

footer {
    display: flex;
    align-items: center;
    justify-content: space-around;
    flex-direction: column;
    width: 100%;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
}

footer .row {
    white-space: nowrap;
}

footer>div {
    display: flex;
    align-items: center;
    justify-content: space-around;
    width: 100%;
}

.footerInfo {
    font-size: 80%;
    margin: 10%;
    white-space: nowrap;
}

footer .bigHeading {
    margin-left: 5%;
    width: 95%;
}

footer>div:nth-of-type(2) {
    flex-direction: column;
}

.clivia {
    font-family: 'Lexend Tera', sans-serif !important;
    color: white;
}

.mobile {
    display: none;
}

#mobilemenu {
    position: fixed;
    z-index: 3;
    background-color: rgba(0, 0, 0, 0.8);
    height: 100%;
    width: 100%;
    color: white;
    backdrop-filter: blur(3px);
    transition: opacity 0.25s ease-in-out;
    display: none;
    opacity: 0;
    top: 0;
}

#mobilemenu>div:first-of-type {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

#mobilemenu>div:nth-of-type(2) {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 90%;
}

#mobilemenu a {
    margin: 5%;
    font-size: 200%;
}

#mobilemenu img {
    margin-right: 5%;
    margin-top: 5%;
}

#mobilemenuBtn {
    margin: 3%;
}

#offer{
    padding-bottom:5%;
    align-items: center;
}

#about p {
    font-size:150%;
}

.elem{
    border:1px solid rgba(0,0,0,0.1);
    border-radius:10px;
    margin-bottom:1%;
    padding:1%;
    width: 80%;
}

.elem:nth-of-type(2n){
    text-align: right;
}

hr{
    border-top: 1px solid #00d400;
}

section>h1{
    width:100%;
    font-size:300%;
}

.gallery{
    padding:1%;
    border-radius:10px;
    margin-top:1%;
    margin-bottom:1%;
}

@media (max-width:900px) {
    #menu {
        display: none;
    }

    .contactBlock {
        display: none;
    }

    main {
        font-size: 150%;
        text-align: center;
        height: 80vh;
    }

    #headerLogo {
        width: 90%;
    }

    #logo {
        padding: 4%;
        height:6vh;
    }

    footer{
        padding-bottom:10%;
    }

    footer>div {
        flex-direction: column;
    }

    .footerInfo {
        font-size: 100%;
        margin: 0;
        display: none;
    }

    .mobile {
        display: block;
    }

    header {
        height: 12vh;
    }

    section h1 {
        text-align: center;
    }

    .textRight {
        text-align: center;
    }

    footer h1 {
        text-align: center;
    }

    .elem{
        padding:3%;
    }

    #about p{
        font-size: 115%;
        padding-left: 3%;
    }
}