*,
*::before,
*::after {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
@font-face {
    font-family: "uncutSans", sans-serif;
    src: url("../../assets/fonts/Uncut-Sans-Font-Family/Variable/Uncut-Sans-VF.ttf");
}

:root {
    --orange: #f99408;
    --darkBlue: #122d39;
    --lightGreen: #b2de43;
    --darkGreen: #52661f;
    --lighterGreen: #e4faac;
    --uncut: "uncutSans", sans-serif;
    --signup: #b6bec2;
    --signin: #122d39;
}
body {
    /* font-family: var(--uncut) ; */
    font-family: "uncutSans", sans-serif;
}
a {
    text-decoration: none;
}
li {
    list-style: none;
}

/* Navbar laptop */
nav.nav-main {
    background-color: white;
    padding-inline: 4rem;
    padding-block: 1rem;
    width: 100%;
    height: 90px;
    box-shadow: 10px 10px 7px #c4c4c41a;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 999;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 30px;
}
.nav-links a {
    color: var(--darkBlue);
    font-weight: 500;
    line-height: 20px;
}
.nav-links a:hover {
    opacity: 0.5;
}

.auth-signs a {
    padding: 0.7rem 1.5rem;
    border-radius: 4px;
}
.auth-signs a:hover {
    opacity: 0.7;
}
.auth-signs .sign-up {
    background-color: var(--signup);
    margin-right: 30px;
    color: var(--signin);
}
.auth-signs .sign-in {
    background-color: var(--signin);
    color: white;
}

/* Nav mobile */
nav.nav-mobile {
    background-color: white;
    padding-inline: 4rem;
    padding-block: 1rem;
    width: 100%;
    height: 90px;
    box-shadow: 10px 10px 7px #c4c4c41a;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 999;
    display: none;
}

section.start-journey {
    margin-inline: 4rem;
    margin-block: 5rem 3rem;
    padding-inline: 4rem;
    padding-block: 3rem;
    background-color: #fbf3dc;
    display: flex;
    height: 50vh;
    border-radius: 16px;
    position: relative;
    /* overflow: hidden; */
}
section.start-journey .start-content {
    width: 60%;
}
section.start-journey .start-content h1 {
    font-weight: 700;
    font-size: 30px;
    line-height: 30px;
}
section.start-journey .start-content p {
    font-weight: 400;
    font-size: 18px;
    line-height: 25px;
    padding-block: 1.5rem;
}
.start-img {
    width: 50%;
    height: 60vh;
    position: absolute;
    top: -60px;
    right: -50px;
    z-index: 99;
    /* background: red; */
}
.start-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* footer */
.footer {
    background-color: #122d39;
    color: #fff;
    /* padding: 40px; */
    padding-inline: 5rem;
    padding-block: 4rem 3rem;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 3rem;
}

.footer-logo {
    width: 55%;
}

.footer-logo img {
    max-width: 100%;
    height: auto;
}

.footer-content {
    width: 40%;
}

.footer-content h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.footer-content p {
    margin-bottom: 20px;
    color: #fbf3dc;
}

.newsletter-form {
    display: flex;
    gap: 10px;
}

.newsletter-form input {
    padding: 10px;
    width: 70%;
    border: none;
    border-radius: 4px;
    background-color: #60727a;
    color: white;
}
.newsletter-form input::placeholder {
    color: white;
}
.newsletter-form button {
    padding: 10px;
    background-color: #f99408;
    color: #122d39;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    list-style: none;
    padding: 0;
    margin-top: 20px;
    gap: 1rem;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #f0f0f0;
    text-decoration: none;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 40px;
    border-top: 1px solid #333;
    padding-top: 20px;
}

.footer-bottom p {
    margin: 0;
}

.footer-bottom-links {
    list-style: none;
    padding: 0;
    display: flex;
    gap: 15px;
}

.footer-bottom-links a {
    color: #f0f0f0;
    text-decoration: none;
}

.back-to-top {
    /* width: 24px;
    height: 24px; */
    cursor: pointer;
    position: fixed;
    bottom: 30px;
    right: 30px;
    font-size: 24px;
    color: var(--lightGreen);
    border-radius: 50%;
    padding: 4px;
    background-color: var(--darkBlue);
    display: none; /* Hidden by default */
}
/* media query */

.socials-footer {
    width: 60%;
    display: flex;
    justify-content: space-between;
    padding-block: 1rem;
}
.socials-footer a {
    color: white;
    font-size: 20px;
    background-color: #415761;
    padding: 0.4rem;
    border-radius: 50%;
}
.socials-footer img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}
.socials-footer a:hover {
    transform: scale(1.05);
}

@media screen and (max-width: 768px) {
    nav.nav-mobile .nav-logo img {
        width: 90px;
    }
    nav.nav-main {
        display: none;
    }
    nav.nav-mobile {
        display: flex;
        padding-inline: 2rem;
        height: 70px;
    }
    nav.nav-mobile .nav-links {
        background-color: white;
        width: 100%;
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 70px;
        left: 100%;
        height: calc(100vh + 1700px);
        min-height: calc(1700px) !important;
        padding-block: 3rem;
        transition: 400ms ease-in;
    }
    nav.nav-mobile .nav-links.open {
        left: 0;
    }
    nav.nav-mobile .auth-signs {
        display: flex;
        gap: 1rem;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        /* padding-top:1rem; */
    }
    nav.nav-mobile .auth-signs a {
        width: 120px;
        text-align: center;
        text-wrap: no-wrap;
    }
    .auth-signs .sign-up {
        margin-right: 0;
    }

    /* gghj */

    section.start-journey {
        margin-inline: 1.5rem;
        margin-block: 2rem 2rem;
        padding-inline: 1.5rem;
        padding-block: 0rem 1.5rem;
        background-color: #fbf3dc;
        display: flex;
        flex-direction: column-reverse;
        height: 100%;
        border-radius: 16px;
        position: relative;
    }
    section.start-journey .start-content {
        width: 100%;
    }
    section.start-journey .start-content h1 {
        font-weight: 700;
        font-size: 24px;
        line-height: 30px;
    }
    section.start-journey .start-content p {
        font-weight: 400;
        font-size: 18px;
        line-height: 25px;
        padding-block: 1.5rem;
    }
    .start-img {
        width: 100%;
        height: 45vh;
        position: static;
    }
    .start-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    /* footer */
    .footer {
        background-color: #122d39;
        color: #fff;
        /* padding: 40px; */
        padding-inline: 2rem;
        padding-block: 4rem 3rem;
    }

    .footer-top {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        align-items: flex-start;
        gap: 3rem;
    }

    .footer-logo {
        width: 55%;
    }

    .footer-logo img {
        max-width: 100%;
        height: auto;
    }

    .footer-content {
        width: 100%;
    }

    .footer-content h3 {
        font-size: 20px;
        margin-bottom: 10px;
    }

    .footer-content p {
        margin-bottom: 20px;
        color: #fbf3dc;
    }

    .newsletter-form {
        display: flex;
        gap: 10px;
    }

    .newsletter-form input {
        padding: 10px;
        width: 70%;
        border: none;
        border-radius: 4px;
        background-color: #60727a;
        color: white;
    }
    .newsletter-form input::placeholder {
        color: white;
    }
    .newsletter-form button {
        padding: 10px;
        background-color: #f99408;
        color: #122d39;
        border: none;
        border-radius: 4px;
        cursor: pointer;
    }

    .footer-links {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        list-style: none;
        padding: 0;
        margin-top: 20px;
        gap: 1rem;
    }

    .footer-links li {
        margin-bottom: 10px;
    }

    .footer-links a {
        color: #f0f0f0;
        text-decoration: none;
    }

    .footer-bottom {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-top: 40px;
        border-top: 1px solid #333;
        padding-top: 20px;
        font-size: 12px;
    }

    .footer-bottom p {
        margin: 0;
    }

    .footer-bottom-links {
        list-style: none;
        padding: 0;
        display: flex;
        gap: 15px;
    }

    .footer-bottom-links a {
        color: #f0f0f0;
        text-decoration: none;
    }

    .back-to-top {
        /* width: 24px;
    height: 24px; */
        cursor: pointer;
        position: fixed;
        bottom: 30px;
        right: 30px;
        font-size: 24px;
        color: var(--lightGreen);
        border-radius: 50%;
        padding: 4px;
        background-color: var(--darkBlue);
    }
}

/* Start making money */
.make-money {
    margin-block: 1.5rem;
}
.make-money a {
    background-color: var(--darkBlue);
    color: white;
    padding: 10px;
    padding-inline: 30px;
    border-radius: 5px;
}
