/*_*_*_*_*_*_*_*_*_*|*_*_*_*_*_*_*_*_*_*/
/*                BASE                 */
/*_*_*_*_*_*_*_*_*_*|*_*_*_*_*_*_*_*_*_*/

:root {
    --blue: #414993;
    --cyan: #32699A75;
}

html {
    scroll-behavior: smooth;
    font-family: 'lorano-Regular';
}

@font-face {
    font-family: 'lorano-Bold';
    src: url("../fonts/Lorano-Bold.ttf");
    font-weight: bold;
}

@font-face {
    font-family: 'lorano-Regular';
    src: url("../fonts/Lorano-Regular.ttf");
    font-weight: normal;
}

@font-face {
    font-family: 'lorano-semiBold';
    src: url("../fonts/Lorano-SemiBold.ttf");
    font-weight: 600;
}

@font-face {
    font-family: 'lorano-News';
    src: url("../fonts/Lorano-News.ttf");
    font-weight: 500;
}

@font-face {
    font-family: 'lorano-SemiLight';
    src: url("../fonts/Lorano-SemiLight.ttf");
    font-weight: 500;
}

h1 {
    font-family: 'lorano-Bold', 'open sans';
    font-size: 40px;
}

h2 {
    font-family: 'lorano-Regular';
    font-size: 30px;
}

h3 {
    font-family: 'lorano-Regular';
    font-size: 22px;
}

p {
    font-family: 'lorano-SemiLight';
    font-size: 15px;
}

/*_*_*_*_*_*_*_*_*_*|*_*_*_*_*_*_*_*_*_*/
/*           GLOBAL CLASSES            */
/*_*_*_*_*_*_*_*_*_*|*_*_*_*_*_*_*_*_*_*/

.button {
    background-color: var(--blue);
    padding: 20px;
    color: white;
    border-radius: 10px;
    display: inline-block;
    transition: all 0.5s ease-in-out;
}

.button:hover {
    transform: scale(1.15);
}

.mb-2 {
    margin-bottom: 2rem;
}

/*_*_*_*_*_*_*_*_*_*|*_*_*_*_*_*_*_*_*_*/
/*              SECTIONS               */
/*_*_*_*_*_*_*_*_*_*|*_*_*_*_*_*_*_*_*_*/

/********** HEADER **********/

header nav {
    margin: 1rem;
    color: white;
}

header nav ul {
    display: flex;
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 40px;
}

header div.img {
    display: flex;
    justify-content: center;
}

header div.img img {
    width: 50%;
}

header div.wave {
    position: relative;
    overflow: hidden;
    bottom: -1rem;
}

header div.wave h1 {
    position: absolute;
    top: 40%;
    width: 100%;
    text-align: center;
    color: white;
    font-weight: 400;
}

/********** MAIN **********/

main {
    background-color: black;
    color: white;
    padding-bottom: 10rem;
}

main h2 {
    font-weight: 400;
    margin-bottom: 5rem;
    margin-left: 5rem;
    position: relative;
}

main h2::after {
    position: absolute;
    content: '';
    width: 200px;
    height: 2px;
    background-color: white;
    top: 50%;
    margin-left: 2rem;
}

main #about {
    margin-bottom: 5rem;
    scroll-margin-top: 80px;
}

main #about article {
    display: inline-block;
    margin: 0 2.5%;
    background-color: var(--cyan);
    border-radius: 400px 0 100px 400px;
}

main #about article img {
    max-width: 400px;
    border-radius: 50%;
    shape-outside: circle();
    float: left;
    margin-right: 3rem;
}

main #about article p {
    padding: 1rem;
}

@media screen and (max-width:1200px) {
    p {
        font-size: 13px;
    }
}

@media screen and (max-width:950px) {
    main #about article {
        display: flex;
        flex-direction: column;
        border-radius: 50% 50% 0 0;
        background-color: black;
    }

    main #about article img {
        align-self: center;
        margin-bottom: 2rem;
        margin-right: 0;
    }

    main #about article p {
        padding: 3rem;
        text-align: center;
        background-color: var(--cyan);
    }
}

@media screen and (max-width:700px) {
    main #about article img {
        border-radius: 50%;
        max-width: 300px;
    }
}

main #contact h3 {
    text-align: center;
    margin-bottom: 1rem;
}

main #contact ul {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10rem;
}

main #contact ul li {
    background-color: var(--cyan);
    padding: 2rem;
    border-radius: 20px 0 20px 20px;
}

main #contact a,
main #contact div {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

main #contact a:last-child,
main #contact div:last-child {
    margin-bottom: 0;
}

main #contact a.status {
    flex-direction: column;
}

main #contact a.status div {
    display: flex;
}

main #contact a i {
    margin-right: 1rem;
}

/********** FOOTER **********/

footer {
    background-color: black;
}

footer p {
    background-color: var(--cyan);
    color: white;
    padding: 2rem;
    text-align: center;
}

footer p a {
    transition: all 0.25s ease-in-out;
}

footer p a:hover {
    color: var(--blue);
}

/*_*_*_*_*_*_*_*_*_*|*_*_*_*_*_*_*_*_*_*/
/*              RESPONSIVE             */
/*_*_*_*_*_*_*_*_*_*|*_*_*_*_*_*_*_*_*_*/

@media screen and (max-width: 900px) {
    h1 {
        font-size: 35px;
    }
    
    h2 {
        font-size: 25px;
    }

    h3 {
        font-size: 18px;
    }

    p {
        font-size: 12px;
    }

    header div.img img {
        width: 75%;
    }
}

@media screen and (max-width: 600px) {
    h1 {
        font-size: 30px;
    }

    h2 {
        font-size: 20px;
    }

    main h2::after {
        width: 100px;
    }

    h3 {
        font-size: 15px;
    }

    .button {
        padding: 10px;
        font-size: 13px;
    }

    header nav ul {
        justify-content: center;
    }

    header div.img img {
        width: 85%;
    }
}

@media screen and (max-width: 400px) {
    main h2::after {
        width: 50px;
    }
}