@import url('../fonts/Roboto/roboto.css');

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

:root {
    --color-1: #212121;
    --color-2: #e0e0e0;
    --color-3: #bdbdbd;
    --color-4: #137fcc;
    --color-5: #ffffff;
}

body {
    /* font-family: 'Roboto', sans-serif; */
    font-family: "Sansation", sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    min-height: 100vh;
    flex-direction: column;
    background-color: var(--color-1);
    color: var(--color-3);
}

main {
    flex: 1 0 auto;
}

h1, h2, h3 {
    font-weight: bold;
}

/* .h1 {
    font-family: "Unbounded", sans-serif;
}

.h2 {
    font-family: "Tektur", sans-serif;
}

.h3 {
    font-family: "Sansation", sans-serif;
} */

.hello-section {
    height: 100vh;
    width: 100vw;

    & .hello-section__flex-container {
        width: 90%;
        max-width: 1200px;
        margin-left: auto;
        margin-right: auto;
        width: 100%;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 40px;
        padding: 5%;


        & .hello-section__content {
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            gap: 24px;

            h1 {
                margin: 0;
                padding: 0;
                text-transform: uppercase;
                font-weight: 700;
                font-size: 3rem;
                letter-spacing: 5px;
            }
            p {
                margin: 0;
                padding: 0;
            }
        }

        & .hello-section__image {
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            border: 4px solid #424242;
            overflow: hidden;
            width: 100%;
            max-width: 600px;
            aspect-ratio: 1 / 1;
            /* flex-shrink: 0; */
            position: relative;
            z-index: 1;
            background-color: #000000;
            background-image: url(../img/logo-7200.png);
            background-position: center;
            background-size: 96%;
            background-repeat: no-repeat;
            box-shadow: 0px 4px 22px 2px rgba(0, 0, 0, 0.75);
        }
    }

    .button {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 6px;
        min-height: 52px;
        min-width: 52px;
        padding: 0 52px;
        font-size: 1rem;
        line-height: 0;
        background-color: var(--color-4);
        color: var(--color-5);
        border-radius: 50px;
        opacity: 1;
        transition: 0.5s;
        
        &:hover {
            opacity: 0.7;
        }
    }

    @media screen and (max-width: 820px) {
        height: auto;

        & .hello-section__flex-container {
            flex-direction: column-reverse;

             & .hello-section__content {
                align-items: center;
                text-align: center;

                h1 {
                    font-size: 2rem;
                }
            }

            & .hello-section__image {
                max-width: 300px;
                height: auto;
                aspect-ratio: 1 / 1;
                flex-shrink: 0;
            }
        }
    }
}
