/* utilities */
* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    font-family: "Inter", sans-serif;
    /* background: #e6e6e6; */
    background: #F2E5E5;
    /* padding-bottom: 50vh; */

    /* Scroll Animation */
    perspective: 1px;
    transform-style: preserve-3d;
}

.container {
    display: block;
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
}

ul, li {
    list-style-type: none;
}

/* home page styles */
.offer {
    background-color: #2a2a2a;
    color: #ffffff;
    padding: 0.5em 0;
    font-weight: bold;
}

.offer-content {
    display: flex;
    justify-content: center;
    align-items: center;
}

.offer-content span {
    margin: 0 0.25em;
}

.offer-content button {
    cursor: pointer;
    padding: 0.1em 0.3em;
    margin: 0 0.75em;
    color: inherit;
    border: 1px solid #ffffff;
    background-color: inherit;
    font-weight: inherit;
    font-size: inherit;
}

#header {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
        url("assets/img/hero.jpg") center center/cover no-repeat;
    color: #ffffff;
}

nav {
    padding: 1em;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-content .logo {
    font-size: 2em;
    /* font-size: clamp(1rem, 2rem, 5em); */

    font-weight: bolder;
}

.nav-content .menu {
    display: flex;
    list-style-type: none;
}

.nav-content .menu li {
    margin: 1em;
}

.nav-content .menu a {
    text-decoration: none;
    color: inherit;
}

.hero {
    color: inherit;
}

.hero-content {
    margin: 5em 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-content h1 {
    font-family: "Kavoon", serif;
    text-align: center;

    font-weight: 400;
    font-size: 4em;
    line-height: 120px;

    display: block;
    max-width: 900px;
    margin: 0 auto;
}

.hero-content .cta-button {
    cursor: pointer;
    display: block;
    padding: 1em;
    font-size: 1.5em;
    margin: 1em;
    border: 1px solid #ffffff;
    color: inherit;
    background-color: transparent;
}

.about {
    display: block;
    /* max-width:  100em; */
    margin: 0 auto;
    overflow: hidden;
}

.about h2 {
    display: block;
    text-align: center;
    margin: 1.5em 0;
    font-size: 2.5em;
}

.about-content {
    /* background: red; */
    display: flex;
    margin: -5px 0;
    width: 100%;
}

.about-content .about-image {
    width: 50vw;
}

.about-content .about-image img {
    max-height: 734px;
    width: 100%;
    object-fit: cover;
}

.about-content .about-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    /* margin: 0 2em; */
    width: 50vw;
}

.about-content .about-text-content {
    max-width: 400px;
    margin: 0 5em;
}

.about-content .about-text h3 {
    margin: 1em 0;
}

.about-content .about-text p {
    margin: 1em 0;
}

.about-content .about-text button {
    cursor: pointer;
    display: block;
    padding: 1em;
    font-size: 1.25em;
    margin: 1em 0;
    color: inherit;
    background-color: transparent;
    border: 3px solid #000000;
    width: 9em;
    font-weight: bold;
}

.about-content.indoor .about-text-content {
    margin-right: auto;
    /* margin-left: 6em;
    margin-right: 11em; */
}

.about-content.outdoor .about-text-content {
    margin-left: auto;
    margin-left: 9em;
    /*
    margin-right: 6em; */
}

/* Quote Section  */
.quote {
    border-top: 10px solid red;
    border-bottom: 10px solid red;
    padding: 5em;
    margin: 5em 0;
}

.ellipse {
    position: absolute;
    width: 50em;
    height: 50em;
    left: 45%;
    top: -10%;
    background: radial-gradient(50% 50% at 50% 50%,
            #e99393 0%,
            rgba(255, 153, 153, 0.03) 45%);
    z-index: -1;
}

.quote-content {
    position: relative;
    padding: 4em 0 2em 0;
}

.quote-content p {
    font-family: "Kavoon", serif;
    text-align: center;

    font-weight: 400;
    font-size: 64px;
    line-height: 120px;

    max-width: 900px;
    margin: 0 auto;

    filter: drop-shadow(34px 28px 25px rgba(0, 0, 0, 0.5));
}

.quote-content span.author {
    margin: 3em 0;
}

.quote-content span {
    display: block;
    font-family: "Kavoon", serif;
    text-align: center;
    font-weight: 400;
}


/* Contact Us Section   */
#contact-us {}

.contact-us-container {
    background: #F42B2B;
    color: #ffffff;
    min-height: 600px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 50px;

}

.contact-us-content {
    max-width: 500px;
    margin: 0% auto;
    font-size: 2em;
    font-size: clamp(.5em, 5vw, 2em);
    font-weight: 500;
    /* background: #000; */
}

.contact-us-content>* {
    text-align: center;
}

.contact-us-content h3 {
    padding: .5em;
}

.contact-us-content p {
    padding: 1em;
}

.contact-us-content button {
    cursor: pointer;
    background-color: #ffffff;
    color: #F42B2B;
    padding: 1em 3em;
    font-size: 1.2rem;
    font-size: clamp(1rem, 5vw, 1.2rem);

    display: block;
    margin: 1em auto;


    border: 3px solid #E99393;

}


/* Newsletter Section  */

#newsletter {
    margin: 3em 0;

}

.newsletter-container {
    display: flex;
    align-items: center;
    justify-content: center;
}

.newsletter-content {
    /* background: red; */
    margin-right: -3em;
}

.newsletter-content h2 {
    font-size: clamp(1em,6vw,3em);
    margin: 1em 0 0 0;
    white-space: nowrap;
}

.newsletter-content p {
    font-size: 1em;
    font-size: clamp(.5em,3vw,1em);

    margin: 1em 0 2em 0;

}

.newsletter-content .form {
    margin: 1em 0;
}

.newsletter-content .form input {
    padding: 1em;
    width: 300px;
    font-size: 1.2rem;
    border: 1px solid #000000;

}

.newsletter-content .form button {
    display: block;
    cursor: pointer;
    background-color: #ffffff;
    color: #F42B2B;
    /* text-align: left; */
    padding: 1em;
    font-size: 1.2rem;
    display: block;
    margin: .5em 0;
    width: 300px;
    font-weight: 600;
    border: 3px solid #E99393;
}

.newsletter-illustration {
    height: 650px;
    width: 800px;
}





/* <!-- Footer Section --> */
footer {
    font-size: 1.5em;

}

footer .footer-logo {
    font-size: 2em;
}

.footer-menu {
    display: flex;
    justify-content: space-between;
    padding: 2em 0;
}

.footer-menu h5 {
    margin: 2em 0;
    cursor: pointer;
}

.footer-menu li {
    cursor: pointer;
    margin: 1em 0;

}

.footer-menu .products-menu {}

.footer-menu .products-menu h5 {}

.footer-menu .products-menu ul {}

.footer-menu .products-menu li {}

.footer-menu .community-menu {}

.footer-menu .community-menu h5 {}

.footer-menu .community-menu ul {}

.footer-menu .community-menu li {}

.footer-menu .terms-menu {}

.footer-menu .terms-menu h5 {}

.footer-menu .terms-menu ul {}

.footer-menu .terms-menu li {}

.footer-menu .contact-menu {}

.footer-menu .contact-menu h5 {}

.footer-menu .contact-menu button {
    cursor: pointer;
    background-color: #ffffff;
    color: #000;
    padding: 1em 3em;
    font-size: 1.2rem;
    display: block;
    margin: 1em auto;

    border: 3px solid #000;
}

footer .copy {
    background-color: #ffffff;
    padding: 1em 0;
}

footer .copy p {
    text-align: center;
}






/* Responsive */

@media(max-width:1250px) {
    .nav-content {
        justify-content: space-evenly;
    }

    .quote-content p,
    .hero-content h1 {
        font-size: clamp(1.5em, 2em, 4em);
        width: 50vw;
        line-height: 3em;
    }

    .ellipse {
        top: -42%;
        left: 30%;
    }

    .contact-us-container {
        border-radius: 20px;
        min-height: clamp(300px,50vh,600px);
    }

 .newsletter-illustration ,

    .contact-us-container {
        height: 50vh;
        width: 80vw;
        margin: 0 auto;
    }

}

@media(max-width:1150px) {

    .newsletter-container {
        flex-direction: column;
    }
}



@media(max-width:1000px) {
    .nav-content {
        justify-content: center;
    }

    .nav-content .menu {
        display: none;
    }

    .ellipse {
        left: 0%;
    }
}

@media(max-width:900px) {
    .about-content .about-text-content {
        margin: 0 1em;
    }

    .about-content.outdoor .about-text-content {
        margin-left: 3em;
    }
    .newsletter-content {
    margin: 0;
    }
    footer .footer-logo {
        text-align: center;

    }
    .footer-menu{
        flex-direction: column;
        width: 80vw;
        margin: 0 auto;
    }
}

@media(max-width:768px) {

    .hero-content {
        margin: 2em 0;
    }

    .quote-content p,
    .hero-content h1 {
        line-height: 1.75em;
    }

    .hero-content .cta-button {
        font-size: 1em;
    }

    .about-content {

        flex-direction: column;
        align-items: center;
    }

    .about-content .about-text,
    .about-content .about-image {
        width: 75vw;
        margin-left: auto;
        margin-right: auto;
    }

    .about-content.indoor .about-text-content,
    .about-content.outdoor .about-text-content {
        margin: 0em;
    }


    .about-content.indoor,
    .about-content.outdoor {
        margin: 2em 0;
    }

    .ellipse {
        left: -30%;
    }
    .quote{
        padding: 0;
    }


}

@media(max-width:576px) {
    .ellipse {
        background: none;
    }
    .newsletter-content .form input ,
    .newsletter-content .form button {
        width: 80vw;
        margin: .5rem 0;
    } 
}