/* Woman who recently gave birth adding "Developer" to her resume caused even more confusion. */
@font-face {
    font-family: futuraBold;
    src: url("./media/fonts/futuraBold.otf") format("opentype");
}

@font-face {
    font-family: futura;
    src: url("./media/fonts/futuraPTBook.otf") format("opentype");
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    font-family: futura;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

a {
    text-decoration: none;
    color: #000;
}

.lp_header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 3;
    background-color: #f4edeaf0;
    border-bottom: 1px solid #b0b1b2;
}

.lp_nav {
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-around;
}

.lp_header_title {
    font-family: futuraBold;
    font-size: 2rem;
    font-weight: 600;
    padding: 0;
    /* padding-right: .7rem; */
    margin: 0;
    color: #2b3990;
}

.GLDS_logo_text {
    background: linear-gradient(90deg, #00a651 3%, #2b3990 100%);
    background-clip: text;
    -webkit-background-clip: text;
    /* Clips the background to the text */
    -webkit-background-clip: text;
    /* Clips the background to the text */
    -webkit-text-fill-color: transparent;
    /* Makes the text transparent to show the background */
}

.lp_menu_list {
    display: flex;
    flex-direction: row;
}

.lp_link {
    position: relative;
    padding: .4rem 1rem;
    font-size: 1.2rem;
}

.lp_link::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 4px;
    border-radius: 4px;
    background-color: #18272F;
    bottom: 0;
    left: 0;
    transform-origin: right;
    transform: scaleX(0);
    transition: transform .3s ease-in-out;
}

.lp_link:hover::after {
    transform-origin: left;
    transform: scaleX(1);
}

.hamburger_icon {
    display: none;
    border: none;
    background-color: #00000000;
}

/* Switch navbar to hamburger menu */
@media only screen and (max-width: 1200px) {

    .hamburger_icon {
        display: block;
        padding: 1rem;
    }

    /* I'll gladly pay you Tuesday for a hamburger today */

    .lp_menu_list {
        /* Hide the links until clicked on hamburger */
        display: none;
    }

    /* The responsive class is added and removed in JS by clicking the hamburger */
    .lp_menu_list.responsive {
        position: absolute;
        right: 0;
        left: 0;
        top: 100%;
        display: flex;
        flex-direction: column;
        gap: .7rem;
        padding: 0 1rem 1rem;
        background-color: #f4edeaf0;
        text-align: right;
    }

    /* Don't show the animation on hover of links when they are in hamburger mode */
    .lp_link::after {
        display: none;
    }
}

@media only screen and (max-width: 900px) {

    /* Hide the logo */
    .logo {
        display: none;
    }

    /* Give header extra padding to make up for missing space of logo */
    .lp_nav {
        padding: 1rem 2rem;
    }
}

/* Shrink the header text on a small screen */
@media only screen and (max-width: 550px) {
    .lp_header_title {
        font-size: 1.6rem;
        font-weight: 500;
    }

    .lp_nav {
        padding: 1rem;
    }
}

@media only screen and (max-width: 430px) {
    .lp_header_title {
        font-size: 1.4rem;
    }

    .lp_nav {
        padding: .5rem;
    }
}

@media only screen and (max-width: 375px) {
    .lp_header_title {
        font-size: 1.2rem;
    }

    .lp_nav {
        padding-right: 0;
    }
}






/* MAIN HERO SECTION */

.lp_main_background_img {
    width: 100vw;
    height: 100vh;
    background-image: url('./media/pexels-photo-1283219.jpeg');
    background-position: 0 -170px;
    background-size: cover;
    filter: blur(4px);
}

.lp_main_content {
    backdrop-filter: blur(12px) saturate(180%);
    color: #FFFFFF;
    background-color: rgba(0, 0, 0, 0.735);
    box-shadow: rgba(0, 0, 0, 0.4) 0px 30px 90px;
    padding: 3rem;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 50%;
    height: 10rem;
    transform: translate(-50%, -50%);
    border-radius: 8px;

    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    overflow: hidden;
}


#lp_main_paragraph {
    font-size: 2.5rem;
    flex: 1;
}

.lp_main_button_container {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    width: 250px;
    margin-left: 2rem;
}

.lp_main_heading {
    margin-top: 0;
    text-align: center;
    font-family: futuraBold;
}

.lp_main_button {
    padding: 1rem;
    margin: 0;
    border: none;
    border-radius: 7px;
    font-size: 1.2rem;
}

.liquid_animation {
    transition: all 0.3s ease;
    background: linear-gradient(#646cff 0 0) no-repeat calc(200% - var(--p, 0%)) 100% / 200% var(--p, 0.2em);
    transition: 0.3s var(--t, 0s),
        background-position 0.3s calc(0.3s - var(--t, 0s));
    background-color: orange;
}

.liquid_animation:hover {
    --p: 100%;
    --t: 0.3s;
}

.liquid_animation>a {
    transition: color 0.3s ease-in-out;
    transition-delay: .3s;
}

.liquid_animation:hover>a {
    color: #FFFFFF;
}

.lower_main_button {
    display: none;
}

@media screen and (max-width: 1200px) {

    /* Hide the header and button in the main display and show the button underneath the main display */
    .lp_main_content {
        flex-direction: column;
        justify-content: center;
        padding: 1.5rem;
        height: 12rem;
    }

    .lp_main_button_container {
        display: none;
    }

    .lp_main_heading {
        display: none;
    }

    .lp_main_button {
        display: none;
    }

    .lower_main_button {
        display: block;
        position: absolute;
        transform: translate(-50%, 200%);
        top: 50%;
        left: 50%;
        width: 54%;
    }

    .lp_main_background_img {
        background-position: 0 0;
    }
}

@media screen and (max-width: 840px) {

    .lp_main_background_img {
        filter: blur(1.5px);
        background-position: -220px 0px;
    }
}

@media screen and (max-width: 700px) {
    .lp_main_content {
        padding: 0 1.5rem;
        width: 66.6%;
    }
}

@media screen and (max-width: 510px) {
    .lp_main_content {
        width: 70%;
        height: 14rem;
    }

    #lp_main_paragraph {
        font-size: 2rem;
    }

    .lower_main_button {
        transform: translate(-50%, 210%);
    }
}






/* ABOUT SECTION */

.about_container {
    scroll-margin-top: 94px;
    background: linear-gradient(90deg, rgba(38, 194, 192, 1) 0%, rgba(253, 29, 29, 1) 50%, rgba(252, 176, 69, 1) 100%);
    padding: 3rem;
    padding-top: 1rem;
}

.about_heading {
    font-family: futuraBold;
    font-size: 2.5rem;
    text-align: center;
    border-bottom: 3px solid #000;
    padding-bottom: 1rem;
    margin: 0;
}

.about_content {
    display: flex;
    flex-direction: row;
    width: 100%;
    border-bottom: 3px solid #000;
    padding: 3rem 0;
}

.about_content>img {
    width: 60%;
    margin: 0 1rem;
    border-radius: 6px;
    box-shadow: rgba(255, 255, 255, 0.1) 0px 1px 1px 0px inset, rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px;
    transition: transform 0.3s ease-in-out;
}

.about_content>img:hover {
    transform: scale(1.02);
}

.about_text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    z-index: 2;
}

.about_text>h2 {
    margin: 0;
    padding: 0;
    font-size: 2rem;
    font-weight: 600;
}

.about_text>p {
    margin: 1rem 0;
    padding: 0;
    font-size: 1.5rem;
}

/* Hide the about divs until displayed in javascript */
.hidden {
    visibility: hidden;
}



.popupContainer {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #000000b3;
    z-index: 4;
}

.popupContainer>img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 6px;
    box-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px, rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px, rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px;
}

.close_icon {
    position: absolute;
    top: 0;
    right: 0;
    margin: 1rem;
    cursor: pointer;
    height: 5rem;
}

@media screen and (max-width: 1000px) {
    .about_content {
        flex-direction: column;
        align-items: center;
    }

    .about_content>img {
        width: 80%;
    }

    #lp_about>div:nth-of-type(even)>.about_text {
        order: -1;
    }
}

@media screen and (max-width: 770px) {
    .about_content>img {
        width: 100%;
    }

    .about_container {
        background: linear-gradient(90deg, rgba(253, 29, 29, 0.8) 0%, rgba(252, 176, 69, 0.8) 100%);
    }
}

/* That moment when you're talking to yourself and just start smiling like an idiot cuz you're just so hilarious. */









/* Contact us form */
#contact_us {
    scroll-margin-top: 90px;
    background-color: rgb(163, 163, 163);
    padding: 2rem;
    font-size: 1.5rem;

    /* This flexbox contains the header and the form */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.contact_us_header {
    margin-top: 0;
}

.contact_form {
    /* This flexbox contains the contact_form_fields_container the textarea and the button */
    display: flex;
    flex-direction: column;
    gap: .5rem;
}

.contact_form_fields_container {
    /* This flexbox contains two input fields */
    display: flex;
    flex-wrap: wrap;
    column-gap: 3rem;
    row-gap: .5rem;
    margin-bottom: .33rem;
}

.contact_form_field {
    flex: 1;
    min-width: 250px;
    /* This flexbox contains a label and an input */
    display: flex;
    flex-direction: column;
}

.contact_form {
    /* The king is dead. Long live the king! */
    max-width: 770px;
}

@media screen and (min-width: 800px) {}

.contact_form input,
.contact_form textarea {
    padding: .33rem;
    border: none;
    border-radius: 4px;
}

.contact_form input::placeholder,
.contact_form textarea::placeholder {
    font-size: 1rem;
}

.contact_form textarea {
    height: 5rem;
}

#send_message_submit_button {
    padding: .5rem;
    border: none;
    border-radius: 4px;
    background-color: grey;
    color: #FFFFFF;
    cursor: pointer;
}

#send_message_submit_button:hover {
    background-color: lightgray;
    color: #000;
}

.red {
    color: red;
}

.green {
    color: green;
}







/* Footer */
.footerArea {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 2rem;
    border-top: 1px solid black;
    background-color: #2d2d2d;
    color: rgb(217, 217, 217);
    padding: 4rem 0;
    justify-content: space-around;
}

.address {
    margin: 0 1rem;
}

.contact_header {
    margin: 0;
    font-size: 1.5rem;
    padding-bottom: 1rem;
}

.footerArea a {
    color: rgb(217, 217, 217);
}

.address_info {
    display: flex;
    flex-direction: column;
    gap: .3rem;
}

.address_info>* {
    display: flex;
    flex-wrap: nowrap;
    gap: .8rem;
}

.address_info>*>i {
    display: flex;
    flex-wrap: nowrap;
    width: 18px;
}

.footer_link:hover {
    color: #FFFFFF;
}

.copyright {
    text-align: center;
}

.btyb_logo {
    max-width: 100%;
    /* Prevents the image from growing beyond its container */
    height: auto;
    /* Maintains the aspect ratio */
}

/* A bunch of cows were playing poker and smoking weed. The stakes were high. */