/* --------------- FONTS --------------- */
/* #region */
.title {
    font-size: clamp(50px, 9vw, 70px);
    margin-right: 5px;

}

.heading {
    font-family: 'Roboto Serif', system-ui;
    font-size: clamp(40px, 7vw, 48px);
    font-weight: 500;
    text-align: center;
    margin: 0;
    padding: 0;
}

.subheading {
    font-family: 'Roboto Serif', system-ui;
    font-size: clamp(30px, 5vw, 38px);
    font-weight: 400;
    margin: 0;
    padding: 0;
}

.body {
    font-family: 'Roboto', system-ui;
    font-size: clamp(15px, 3vw, 18px);
    margin: 0;
    padding: 0;
}
/* #endregion */

html {
    box-sizing: border-box;
    /* Might replace with JS later */
    scroll-behavior: smooth;
}
 
*, *:before, *:after {
    box-sizing: inherit;
}

body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    background-color: teal;
    color: white;
    font-family: sans-serif;
}

.hero{
    width: 100vw;
    max-width: initial;
    margin: 0;
    padding-top: 10px;
    background-color: white;
    color: teal;
}

.content1{
    width: 100vw;
    max-width: initial;
    margin: 0;
    background-color: teal;
    color: white;
    padding: 20px;
}

.content2{
    display: flex;
    background-color: white;
    color: teal;
    align-items: center;
    justify-content: center;
    text-align: center;
    flex-direction: column;
}

.form {
    flex-direction: column;
    display: flex;
    gap: 15px;
    max-width: 33%;
    width: 70%;
    margin-bottom: 1.8156em;
}

.form input, textarea {
    border: none;
    background-color: #f7f7f7;
    padding: 0.5rem;
    border-radius: 10px;
    font-family: inherit;
    font-size: inherit;
    outline:1px solid #ccc;
    box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.2), 0 3px 10px 0 rgba(0, 0, 0, 0.19);
}

input[type=text]:focus, input[type=email]:focus, textarea:focus {
    outline: 2px solid teal;
}

.content2 .text {
    font-size: 35px;
}

.container {
    width: 90%;
    max-width: 1296px;
    margin: 15px auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.reversed{
    flex-direction: row-reverse;
}

.section  {
    background-color: white;
    border-radius: 20px;
    padding: 5px;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

.form button{
    background-color: teal;
    color: white;
    outline:none;
    font-size: inherit;
    padding: 8px;
    border:0;
    border-radius: 10px;
    padding: 5px;
    box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.2), 0 3px 10px 0 rgba(0, 0, 0, 0.19);
    transition-duration: 0.4s;
}

.form button:hover{
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.3), 0 6px 20px 0 rgba(0, 0, 0, 0.24);
}

.form textarea{
    height:200px;
}
.hero__img {
    width: 100%;
    height: auto;
    aspect-ratio: 1;
    margin-left: 5px;
}

/* .hero__container {
    display: flex;
    justify-content: space-between;
} */

.hero__content {
    max-width: 643px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    text-align: right;
}

.hero__image {
    max-width: 643px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero__text {
    color: teal;
}

.content {
    width: 75%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    /*text-align: right;*/
    flex-direction: column;
}

.content p,h1 {
    padding: 0 25px 0 25px;
    text-align: center;
}


.content__image {
    width: 25%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;

}

.content__img {
    width: 100%;
    height: auto;
    aspect-ratio: 1;
}


.text {
    color:teal
}

.footer__img {
    display: none;
}

footer {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
footer a{
    text-decoration: none;
    color:inherit;
}

.insta a{
    display: flex;
    flex-direction:row;
    flex-wrap:wrap;
}
.insta img {
    max-width: 30px;
    height: 30px;
    margin:10px 4px;
}

@media only screen and (max-width: 730px) {
    .container {
        flex-direction: column-reverse;
        justify-content: center;
        align-items: center;
    }

    .section {
        flex-direction: column;
        width: 95%;
    }

    .content__image {
        width: 60%;
    }

    .hero__content {
        justify-content: flex-start;
        text-align: center;
    }

    .hero__image {
        max-width: 350px;
    }

    .hero__img{
        margin-left: 0px;
        margin-top: 16px;
    }

    .content {
        width:auto;
        text-align: center;
        word-wrap: break-word;
    }

    .footer__img {
        display: none;
    }

    footer {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    footer a{
        text-decoration: none;
        color:inherit;
    }

    .insta a{
        display: flex;
        flex-direction:row;
        flex-wrap:wrap;
    }
    .insta img {
        max-width: 30px;
        height: 30px;
        margin:10px 4px;
    }
    .title {
        margin-right: 0px;    
    }

    .form {
        max-width: 1020px;
    }
}