@font-face {
    font-family: "Blippo";
    src: url("assets/Blippo_Blk_BT.ttf");
}

html {
    margin-top: 1vh;
    font-family: 'Raleway', sans-serif;
}

#logo {
    height: 10vh;
}

.navbar {
    margin-left: 3vw;
    margin-right: 3vw;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.right_nav {
    float: right;
    display: flex;
}

.nav_button {
    display: flex;
    align-items: center;
    margin-right: 3vw;
}

#nav_icon {
    height: 5vh;
    margin-right: 0.5vw;
}

#nav_text {
    font-size: 16px;
    display: inline-block;
    position: relative;
}

#nav_text:after {
    content: '';
    position: absolute;
    width: 100%;
    transform: scaleX(0);
    height: 3px;
    bottom: -5px;
    left: 0;
    background-color: #6089C1;
    transform-origin: bottom right;
    transition: transform 0.30s ease-out;
}

#nav_text:hover:after {
    transform: scaleX(1);
    transform-origin: bottom left;
}

#nav_divider {
    height: 0.1vh;
    width: 90%;
    margin-top: 2vh;
    margin-left: auto;
    margin-right: auto;
    background-color: #1A1A1A;
    opacity: 15%;
}

a {
    text-decoration: none;
    color: black;
}


.website_body {
    height: fit-content;
    margin-left: 10vw;
    margin-right: 10vw;
    margin-top: 3vh;
    display: flex;
    align-items: flex-start;
    flex-direction: column;
}

.hero_section {
    height: fit-content;
    width: 100%;
    display: flex;
    align-items: flex-start;
}

#profile {
    height: 72.5vh;
    animation: fadeIn 2s;
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

#profile_divider {
    height: 68.5vh;
    width: 0.4vw;
    margin-left: 1.2vw;
    background-color: #6089C1;
}

.view_more {
    margin-top: 1.5vh;
    margin-bottom: 5vh;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    align-items: center;
    flex-direction: column;
}

.view_more:hover #view_more_icon {
    transform-origin: bottom top;
    animation: scale 400ms ease-in-out forwards;
}

@keyframes scale {
    to {
        transform: scale(1.1);
    }
}

.view_more:hover #view_more_text {
    transform-origin: bottom top;
    animation: scale 400ms ease-in-out forwards;
}

@keyframes scale {
    to {
        transform: scale(1.1);
    }
}

#view_more_text {
    font-size: 24px;
}

#view_more_icon {
    margin-top: 1.5vh;
}

.hero_text {
    width: 100%;
    margin-left: 10vw;
    margin-top: 10vh;
    animation: 2s ease slideIn;
    position: relative;
}

@keyframes slideIn {
    from {
        bottom: -50px;
    }

    to {
        bottom: 0px;
    }
}

#hero_heading {
    font-family: "Blippo";
    font-size: 64px;
}

#hero_subheading {
    margin-top: 3vh;
    font-size: 16px;
    line-height: 174%
}

#hero_dots {
    margin-top: 12vh;
    float: right;
    margin-right: -4vw;
}

.products_section {
    height: fit-content;
    width: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    justify-content: space-evenly;
    margin-top: 10vh;
}

#products_heading {
    font-family: "Blippo";
    font-size: 64px;
    margin-left: auto;
    margin-right: auto;
}

#products_dots {
    transform: rotate(-90deg);
    height: 22vh;
    margin-right: -12vw;
    margin-top: -5vh;
}

#product_one {
    min-height: 50vh;
    height: max-content;
    width: 17vw;
    background-color: white;
    box-shadow: 10px 10px 20px rgba(0, 0, 0, 0.15);
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 2vh;
    padding-left: 1vh;
    padding-right: 1vh;
    position: relative;
}

#product_two {
    min-height: 50vh;
    height: max-content;
    width: 23vw;
    background-color: white;
    box-shadow: 10px 10px 20px rgba(0, 0, 0, 0.15);
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 2vh;
    padding-left: 1vh;
    padding-right: 1vh;
    position: relative;
}

#product_three {
    min-height: 50vh;
    height: max-content;
    width: 17vw;
    background-color: white;
    box-shadow: 10px 10px 20px rgba(0, 0, 0, 0.15);
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 2vh;
    padding-left: 1vh;
    padding-right: 1vh;
    margin-right: 1vw;
    position: relative;
}

#option_heading {
    font-size: 32px;
    margin-bottom: 2vh;
}

#option_subheading {
    font-size: 24px;
    font-style: italic;
}

ul {
    list-style-position: outside;
}

#option_text {
    font-size: 16px;
    line-height: 174%;
}

#option_one_button {
    height: 6vh;
    width: 8vw;
    background-color: #6089C1;
    border: none;
    position: absolute;
    bottom: -2.5vh;
    left: 5vw;
    font-family: 'Raleway', sans-serif;
    font-size: 24px;
    color: white;
}

#option_two_button {
    height: 6vh;
    width: 8vw;
    background-color: #6089C1;
    border: none;
    position: absolute;
    bottom: -2.5vh;
    left: 8vw;
    font-family: 'Raleway', sans-serif;
    font-size: 24px;
    color: white;
}

#option_three_button {
    height: 6vh;
    width: 8vw;
    background-color: #6089C1;
    border: none;
    position: absolute;
    bottom: -2.5vh;
    left: 5vw;
    font-family: 'Raleway', sans-serif;
    font-size: 24px;
    color: white;
}

#option_one_button:hover {
    transform-origin: bottom top;
    animation: scale 400ms ease-in-out forwards;
    background-color: #b4caca;
}

#option_two_button:hover {
    transform-origin: bottom top;
    animation: scale 400ms ease-in-out forwards;
    background-color: #b4caca;
}

#option_three_button:hover {
    transform-origin: bottom top;
    animation: scale 400ms ease-in-out forwards;
    background-color: #b4caca;
}

#products_divider {
    width: 68.5vh;
    height: 0.4vw;
    background-color: #6089C1;
    margin-top: 15vh;
    margin-left: 45vw;
}

#contact_heading {
    font-family: "Blippo";
    font-size: 64px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 5vh;
}

.contact_section {
    height: fit-content;
    width: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    margin-top: 10vh;
}

#contacts_us {
    height: 68.5vh;
}

#contact_divider {
    height: 68.5vh;
    width: 0.4vw;
    margin-left: 1.2vw;
    background-color: #6089C1;
}

#contact_form {
    height: 47vh;
    min-height: fit-content;
    width: 33vw;
    background-color: white;
    box-shadow: 10px 10px 20px rgba(0, 0, 0, 0.15);
    display: flex;
    flex-direction: column;
    padding-top: 2vh;
    padding-left: 2.5vh;
    padding-right: 3vh;
    margin-top: auto;
    margin-bottom: auto;
    margin-left: 7vw;
    position: relative;
    align-items: center;
}

#contact_form_button {
    height: 6vh;
    width: 8vw;
    background-color: #6089C1;
    border: none;
    position: absolute;
    bottom: -2.5vh;
    font-family: 'Raleway', sans-serif;
    font-size: 24px;
    color: white;
}

#contact_form_button:hover {
    transform-origin: bottom top;
    animation: scale 400ms ease-in-out forwards;
    background-color: #b4caca;
}

#contact_form label {
    font-size: 24px;
    margin-bottom: 0.2vh;
    display: flex;
    justify-content: flex-start;
}

#contact_form input {
    width: 16vw;
    height: 4vh;
    opacity: 0.50;
    margin-bottom: 1vh;
    background: white;
    box-shadow: 2px 2px 6px rgba(30, 30, 30, 0.12) inset;
    border-radius: 10px;
    border: 1px rgba(30, 30, 30, 0.25) solid
}

#contact_form #name {
    margin-right: 0.7vw;
}

#contact_form #email {
    width: 33vw;
}

#contact_form #message {
    width: 33vw;
    height: 20vh;
}

#footer_divider {
    height: 0.1vh;
    width: 90%;
    margin-top: 10vh;
    margin-bottom: 4vh;
    margin-left: auto;
    margin-right: auto;
    background-color: #1A1A1A;
    opacity: 15%;
}

.footer_section {
    height: 25vh;
    width: 100%;
    display: flex;
    justify-content: space-between;
}

#footer_about {
    height: 100%;
    width: 17vw;
}

#footer_products {
    height: 100%;
    width: 17vw;
}

#footer_workshops {
    height: 100%;
    width: 17vw;
}

#footer_socials {
    height: 100%;
    width: 17vw;
}

#footer_heading {
    font-size: 24px;
    margin-bottom: 2vh;
}

#footer_subheading {
    font-size: 16px;
    line-height: 174%;
    text-align: justify;
}

#footer_list {
    font-size: 16px;
    line-height: 174%;
    list-style: none;
}

#footer_list ul {
    list-style: none;
    padding-left: 0;
}

#footer_list li {
    margin-bottom: 3vh;
}

#footer_list li:hover {
    font-weight: bold;
}

#conta{
    display: flex;
    flex-direction: row;
}
















/* Media query for smaller screens */
@media screen and (max-width: 932px) {
    html {
        font-size: 14px;
        /* Adjust font size for better readability */
        font-family: 'Raleway', sans-serif;
    }

    #logo {
        height: 4vh;
    }

    .navbar {
        margin-left: 5vw;
        margin-right: 5vw;
        display: flex;
        align-items: center;
    }

    .right_nav {
        float: none;
        justify-content: center;
        align-items: center;
    }

    .nav_button {
        margin-right: 3vw;
    }

    #nav_icon {
        height: 2vh;
    }

    #nav_text {
        font-size: 14px;
    }

    #profile {
        height: 60vh;
        animation: fadeIn 2s;
    }

    @keyframes fadeIn {
        0% {
            opacity: 0;
        }

        100% {
            opacity: 1;
        }
    }

    .website_body {
        margin-left: 5vw;
        margin-right: 5vw;
        margin-top: 2vh;
    }

    .hero_section {
        flex-direction: column;
        width: 80vw;
    }

    #hero_dots {
        margin-top: 2vh;
        float: right;
        margin-right: -1vw;
    }


    #profile_divider {
        height: 0vh;
        width: 0vw;

    }

    .hero_text {
        margin-left: 5vw;
        margin-top: 0vh;
    }

    #hero_heading {
        font-size: 40px;
        text-align: center;
    }

    #hero_subheading {
        font-size: 14px;
        line-height: 150%;
    }

    .view_more {
        display: none;
    }

    .products_section {
        flex-direction: column;
    }

    #products_dots {
        height: 0vh;
    }


    #products_heading {
        font-size: 40px;
        text-align: center;
        margin-top: 5vh;
    }

    #product_one,
    #product_two,
    #product_three {
        width: 80%;
        margin-bottom: 5vh;
        margin-left: 6vw;
    }

    #product_one {
        min-height: 20vh;
        height: max-content;
        background-color: white;
        box-shadow: 10px 10px 20px rgba(0, 0, 0, 0.15);
        display: flex;
        flex-direction: column;
        align-items: center;
        padding-top: 2vh;
        padding-left: 1vh;
        padding-right: 1vh;
        position: relative;
    }

    #product_two {
        min-height: 35vh;
        height: max-content;
        background-color: white;
        box-shadow: 10px 10px 20px rgba(0, 0, 0, 0.15);
        display: flex;
        flex-direction: column;
        align-items: center;
        padding-top: 2vh;
        padding-left: 1vh;
        padding-right: 1vh;
        position: relative;
    }

    #product_three {
        min-height: 35vh;
        height: max-content;
        background-color: white;
        box-shadow: 10px 10px 20px rgba(0, 0, 0, 0.15);
        display: flex;
        flex-direction: column;
        align-items: center;
        padding-top: 2vh;
        padding-left: 1vh;
        padding-right: 1vh;
        margin-right: 1vw;
        position: relative;
    }

    #option_one_button {
        height: 6vh;
        width: 8vw;
        background-color: #6089C1;
        border: none;
        position: absolute;
        bottom: -2.5vh;
        left: 25vw;
        font-family: 'Raleway', sans-serif;
        font-size: 24px;
        color: white;
    }

    #option_two_button {
        height: 6vh;
        width: 8vw;
        background-color: #6089C1;
        border: none;
        position: absolute;
        bottom: -2.5vh;
        left: 25vw;
        font-family: 'Raleway', sans-serif;
        font-size: 24px;
        color: white;
    }

    #option_three_button {
        height: 6vh;
        width: 8vw;
        background-color: #6089C1;
        border: none;
        position: absolute;
        bottom: -2.5vh;
        left: 25vw;
        font-family: 'Raleway', sans-serif;
        font-size: 24px;
        color: white;
    }


    #option_heading {
        font-size: 24px;
    }

    #option_subheading {
        font-size: 18px;
    }

    #option_text {
        font-size: 14px;
    }

    #option_one_button,
    #option_two_button,
    #option_three_button {
        width: 30%;
        font-size: 18px;
    }

    #products_divider {
        margin-left: 0;
        margin-top: 2vh;
        width: 85vw;
    }

    #contact_heading {
        font-size: 40px;
        margin-top: 5vh;
    }

    .contact_section {
        flex-direction: column;
        align-items: center;
        margin-top: 2vh;
    }

    #contacts_us,
    #contact_divider {
        display: none;
    }

    #contact_form {
        width: 80%;
        height: 57vh;
        margin-left: 0;
        margin-right: 0;
        margin-bottom: 1vh;
        align-items: flex-start;
        display: flex;
        flex-direction: column;
    }

    #conta {
        display: flex;
        flex-direction: column;
    }

    #contact_form #name {
        width: 68vw;
        height: 4vh;
        opacity: 0.50;
        margin-bottom: 1vh;
        background: white;
        padding: 0.2vh;
        padding-left: 0.5vw;
        padding-right: 0.5vw;
        box-shadow: 2px 2px 6px rgba(30, 30, 30, 0.12) inset;
        border-radius: 10px;
        border: 1px rgba(30, 30, 30, 0.25) solid;
        margin-right: 0.7vw;
    }

    #contact_form #surname {
        margin-right: 0.7vw;
        width: 68vw;
    }

    #contact_form #email {
        width: 68vw;
    }

    #contact_form #message {
        width: 68vw;
        height: 20vh;
    }

    #contact_form_button {
        width: 30%;
        font-size: 18px;
        left: 25vw;
    }

    #footer_divider {
        margin-top: 5vh;
        margin-bottom: 3vh;
    }

    .footer_section {
        height: 25vh;
        width: 100%;
        display: flex;
        flex-direction: column;
        margin-top: 2vh;
    }

    #footer_about {
        height: 100%;
        width: 100%;
        margin-bottom: 3vh;
        display: flex;
        flex-direction: column;
        align-content: center;
        align-items: center;
        text-align: justify;
    }

    #footer_products {
        height: 100%;
        width: 100%;
        margin-bottom: 3vh;
        display: flex;
        flex-direction: column;
        align-content: center;
        align-items: center;
        text-align: justify;
    }

    #footer_list {
        font-size: 16px;
        line-height: 174%;
        list-style: none;
    }

    #footer_list ul {
        text-align: justify;
        display: flex;
        flex-direction: column;
        align-content: center;
        align-items: center;
    }
    
    #footer_list li {
        text-align: justify;
    }

    #footer_workshops {
        height: 100%;
        width: 100%;
        margin-bottom: 3vh;
    }

    #footer_socials {
        height: 100%;
        width: 100%;
        margin-bottom: 3vh;
        display: flex;
        flex-direction: column;
        align-content: center;
        align-items: center;
        text-align: justify;
    }
}