*,
*::before,
*::after {
    box-sizing: border-box;
}



html, body {
    margin: 0;
    font-size: 16px;
    font-family: "Montserrat", sans-serif;
    font-weight: 400;
    background-color: rgb(204, 170, 0);
    /* background-color: rgb(165, 137, 0); */
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.wrapper {
    display: flex;
    flex-direction: column;
    min-height: 100dvh;
}

img {
    max-width: 100%;
}

h1 {
    margin: 0;
    font-weight: 700;
}

p {
    margin: .4em 0;
}

.container {
    width: 85%;
    max-width: 1200px;
    margin: 0 auto;
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgb(165, 137, 0);
    padding: .7em 0;
    align-content: center;
}

.header-row {
    display: flex;
    justify-content: space-between;
}

.nav {
    align-content: center;
}

.nav__list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    gap: 1.5em;
}

.nav__link {
    text-decoration: none;
    text-transform: uppercase;
    color: white;
    font-weight: 600;
    font-size: .9rem;
    white-space: nowrap;
}

main {
    flex: 1;
    align-items: center;
}

.main {
    margin-top: 4em;
}

.section-one {
    width: 90%;
    margin: 1em auto;
    padding: 1em;
}

.main-title {
    font-size: 2rem;
}

.slogan {
    font-weight: 600;
    font-size: 1.2rem;
}

.companion {
    font-weight: 500;
    font-size: 1.2rem;
}

.description {
    margin-top: 1em;
    text-align: justify;
}

.btn {
    text-align: center;
    margin: 1.8em 0;
}

.linkToMarket {
    display: inline-block;
}

.walmart-logo {
    border-radius: 100px;
    width: 45%;
    cursor: pointer;
}

.walmart-logo:hover {
    content: url(./images/walmart_white_logo.svg);
}

.footer {
    background-color: rgb(165, 137, 0);
    padding: 1em 0;
    text-align: center;
    color: white;
}

.footer-text {
    text-decoration: none;
    color: white;
}

.footer-text + .footer-text {
    margin-left: 1em;
}

.copyright {
    margin: .8em 0 0;
    font-size: .8rem;
}

@media (min-width: 600px) {

    .nav__logo {
        width: 6em;
    }

    .nav__link {
        font-size: 1.5rem;
    }

    .section-one {
        width: 70%;
    }

    .main-title {
        font-size: 3rem;
    }

    .slogan {
        font-size: 2.2rem;
    }

    .companion {
        font-size: 2rem;
    }

    .description {
        font-size: 1.6rem;
    }

    .btn {
        margin: 2.5em 0;
    }

    .walmart-logo {
        width: 55%;
    }
}

@media (min-width: 900px) {
    .row {
        display: flex;
    }

    .side__text {
        width: 100%;
        margin-top: 6em;
    }

    .main-title {
        font-size: 2.5rem;
    }

    .slogan {
        font-size: 2rem;
    }

    .companion {
        font-size: 1.8rem;
    }

    .description {
        font-size: 1.4rem;
    }
}

@media (min-width: 1089px) {

    .main-title {
        font-size: 3rem;
    }

    .slogan {
        font-size: 2.4rem;
    }

    .companion {
        font-size: 2rem;
    }

    .description {
        font-size: 1.4rem;
    }

}

@media (min-width: 1600px) {

    .container {
        max-width: 1500px;
    }

    .main-title {
        font-size: 3.8rem;
    }

    .slogan {
        font-size: 2.8rem;
    }

    .companion {
        font-size: 2.6rem;
    }

    .description {
        font-size: 1.6rem;
    }

}



.contact-container {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.contact-form {
    width: 85%;
    max-width: 600px;
    background-color: white;
    border-radius: 10px;
    padding: 2em 3em;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
}

.contact-us {
    font-size: 1.5rem;
    text-align: center;
    margin-bottom: 1em;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: .8em;
    font-size: 1rem;
    margin-top: 0.5dvh;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.contact-form textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-form button {
    margin-top: 3dvh;
    padding: .5em 1em;
    background-color: rgb(165, 137, 0);
    color: white;
    font-size: 1.1rem;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.contact-form button:hover {
    background-color: #0071CE;
}
