@import url('https://fonts.googleapis.com/css2?family=Poller+One&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Josefin+Sans:wght@100;200;300;400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@100;300;400;500;700;900&display=swap');

:root {
    --primary: #E93E4B;
    --secondary: #F6F4EF;
    --black: #000;
    --white: #fff;
    --light: #f8f8f8;
    --dark: #1A1A1A;
    --gray: #9aa1a7;
    --gray-100: #F8F8F8;
    --gray-200: #E8E6E1;
    --gray-300: #DCDAD4;
    --gray-800: #3D3A38;
    --orange: #F68A25;
    --border-radius: 2rem;
}

body {
    font-family: "Josefin Sans", Roboto, sans-serif;
    font-size: 20px;
    font-weight: 300;
    line-height: 1.5;
    color: #1A1A1A;
    background-color: #F6F4EF;
    letter-spacing: 0.03rem;
    box-sizing: border-box;
}

section {
    width: 100%;
    border: none;
    padding: 5rem 0;
    overflow: hidden;
    display: flex;
    justify-content: center;
}

.container-lg {
    max-width: 1800px;
}

.container-md {
    max-width: 1530px;
}

button {
    cursor: pointer;
    font-family: "Josefin Sans", Roboto, sans-serif;
}

h1 {
    font-size: 4rem;
    font-family: "Poller One", Roboto, sans-serif;
    font-weight: 400;
    color: var(--primary);
    line-height: 1.24;
    margin: 25px 0;
}

h2 {
    font-size: 3.6rem;
    font-family: "Poller One", Roboto, sans-serif;
    font-weight: 400;
    color: var(--primary);
    line-height: 1.24;
    margin: 25px 0;
}

h3 {
    font-size: 2.8rem;
    font-family: "Poller One", Roboto, sans-serif;
    font-weight: 400;
    color: var(--primary);
    line-height: 1.24;
    margin: 25px 0;
}

h4 {
    font-size: 1.8rem;
    font-family: "Poller One", Roboto, sans-serif;
    font-weight: 400;
    color: var(--black);
    line-height: 1.24;
}

h5 {
    font-size: 1.4rem;
    font-family: "Poller One", Roboto, sans-serif;
    font-weight: 400;
    color: var(--black);
    line-height: 1.2;
    letter-spacing: 1px;
}

h6 {
    font-size: 1rem;
    font-family: "Poller One", Roboto, sans-serif;
    font-weight: 400;
    color: var(--black);
    line-height: 1.2;
    letter-spacing: 1px;
}

.light {
    color: var(--light)
}

a {
    text-decoration: none;
}

link {
    color: #111;
    text-decoration: underline;
}

.active {
    color: var(--primary) !important;
}

.visible {
    display: block !important;
}

/*=============== Header ===============*/
nav {
    overflow: hidden;
    display: flex;
    justify-content: center;
}

.navbar {
    width: 100vw;
    height: 4rem;
    display: flex;
    text-align: center;
    justify-content: space-between;
    margin-top: 1.5rem;
    background-color: var(--secondary);
    position: fixed;
    z-index: 99;
}

.navbar-logo {
    margin-left: 4rem;
    display: flex;
    align-items: center;
}

.navbar-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 5%;
    margin-right: 7rem;
}

.navbar-links {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--gray-800);
}

.navbar-links:hover {
    color: var(--primary);
}

.navbar-mobile-btn-open {
    display: none;
    border: none;
    background-color: transparent;
    padding-right: 5%;
    align-items: center;
}

.navbar-mobile-menu {
    display: none;
    width: 100%;
    height: 100%;
    position: fixed;
    z-index: 5;
    top: 0;
}

.mobile-menu-overlay {
    background-color: var(--gray);
    opacity: 0.6;
    width: 100%;
    height: 100%;
}

.mobile-menu-content {
    width: 85vw;
    height: 100vh;
    position: fixed;
    z-index: 999 !important;
    top: 0;
    right: 0;
    padding-top: 2.5rem;
    background-color: var(--secondary);
}

.mobile-menu-content-heading {
    display: flex;
    justify-content: space-between;
}

.mobile-logo {
    margin-left: 1rem;
    width: 50%;
}

.navbar-mobile-btn-close {
    border: none;
    background-color: transparent;
    padding-right: 5%;
    margin-top: -50px;
}

.mobile-list {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: repeat(6, 1fr);
    padding-top: 3rem;
    gap: 20%;
    text-align: start;
}


/*=============== Home section ===============*/
.home-container,
.footer-main-container {
    width: 100%;
    height: 850px;
    background-image: url(assets/banner-image1.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.home-section {
    position: relative;
    height: 900px;
    padding: 0 !important;
}

.patern-overlay-home {
    position: absolute;
    max-width: 100%;
    bottom: 30px;
}

.home-container {
    position: absolute;
    top: 0;
}

.container-banner {
    background-color: var(--orange);
    opacity: 0.9;
    border-radius: var(--border-radius);
    width: 55rem;
    height: 13rem;
    padding: 1.5rem;
}

.container-banner h1 {
    font-size: 4rem;
    font-weight: 300;
    line-height: 1.2;
    text-align: center;
}

/*=============== About section ===============*/
.about-text p,
.reviews-card p {
    font-size: 2.5rem;
    text-align: center;
    padding: 0 1.5rem;
}

/*=============== Product section ===============*/
.products-heading {
    display: flexbox;
    text-align: center;
    justify-content: center;
    padding: 0 25rem 5rem 25rem;
}

.product-card {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    position: relative;
}

.product-img {
    border-radius: var(--border-radius);
    max-width: 100%;
    height: auto;
}

.product-card-title {
    max-width: 100%;
    width: 60%;
    background-color: var(--white);
    border-radius: 1rem;
    border: 1px solid var(--border-color);
    text-align: center;
    padding: 1rem 0.5rem;
    position: absolute;
    bottom: -20px;
}

.product-card-title h5 {
    margin: 1rem 0.5rem;
}

.product-card-btn {
    background-color: var(--primary);
    color: var(--white);
    border-radius: 2.5rem;
    border: none;
    padding: 0.7rem 1.2rem;
    margin: 0 !important;
    font-size: 1rem;
    position: absolute;
    transform: translateY(200px);
    transition: all 0.5s ease;
}

.product-card:hover .product-card-btn {
    transform: translateY(140px);
    transition: all 0.5s ease;
}

.product-card-btn:hover {
    background-color: var(--black);
}

.products-swiper {
    width: 1500px;
    height: 50vh;
}

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

.swiper-pagination span.swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background-color: var(--secondary);
    border-radius: 50%;
    border: 2px solid var(--gray-800);
}

.swiper-pagination span.swiper-pagination-bullet-active {
    width: 12px;
    height: 12px;
    background-color: var(--primary);
    border: 2px solid var(--primary);
}

/*=============== Reviews section ===============*/
.reviews-quotes-img {
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
}

.reviews-card {
    display: flexbox;
    text-align: center;
    margin: 0;
}

.reviews-swiper {
    width: 1400px;
    height: 30vh;
}

/*=============== Overview section ===============*/
.overview-container {
    display: flex;
    justify-content: center;
    margin: 0 3rem;
}

.overview-video-content {
    width: 800px;
    height: 750px;
    border-bottom-left-radius: var(--border-radius);
    border-top-left-radius: var(--border-radius);
    background-image: url(assets/video-item.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
}

.play-btn {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: none;
    background-color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
}

.overview-text-content {
    width: 800px;
    height: 750px;
    border-bottom-right-radius: var(--border-radius);
    border-top-right-radius: var(--border-radius);
    background-color: var(--white);
    text-align: center;
    padding: 0 50px;
}

/*=============== Features section ===============*/
.features-container {
    display: flex;
    gap: 100px;
}

.feature-card {
    text-align: center;
    justify-content: center;
}

/*=============== Newsletter section ===============*/
.newsletter-container {
    display: flexbox;
    justify-content: center !important;
    text-align: center;
}

.email-input-field {
    width: 1000px;
    position: relative;
}

.email-input-field input {
    width: 100%;
    height: 70px;
    padding-left: 20px;
    border-radius: 3px;
    background-color: var(--white);
    border: none;
}

.email-input-field input::placeholder {
    font-family: "Josefin Sans", Roboto, sans-serif;
    font-size: 20px;
}

.email-input-field button {
    position: absolute;
    align-items: center;
    text-align: end;
    right: 0;
    top: 0;
    border: none;
    height: 100%;
    width: 35%;
    background-color: var(--white);
}

.subscribe-btn h6 {
    margin: 0;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 50px;
}

.social-links svg:hover path {
    fill: var(--primary);
}

/*=============== Footer section ===============*/
.footer-section {
    flex-wrap: wrap;
    position: relative;
    padding: 5rem 0 0 0 !important;
}

.patern-overlay-footer {
    position: absolute;
    transform: rotate(180deg);
    max-width: 100%;
    top: 0;
}

.footer-main-container {
    height: 680px !important;
    background-image: url(assets/footer-bg.jpg) !important;
}

.footer-bottom {
    width: 100%;
    text-align: center;
}

.footer-banner h1 {
    margin: 15px 0;
}

.footer-banner a {
    text-decoration: underline;
    color: var(--white);
    font-size: 17px;
    font-weight: 700;
}

/*========== Media queries (max-width: 1600px) ==========*/
@media screen and (max-width: 1600px) {
    .container-lg {
        max-width: 1400px;
    }

    .container-md {
        max-width: 1200px;
    }

    .products-swiper {
        width: 1300px;
        height: 80vh;
    }

    .reviews-swiper {
        width: 1300px;
        height: 55vh;
    }

    .product-card:hover .product-card-btn {
        transform: translateY(110px);
    }
}

/*========== Media queries (max-width: 1200px) ==========*/
@media screen and (max-width: 1200px) {
    .container-lg {
        max-width: 1200px;
    }

    .container-md {
        max-width: 900px;
    }

    .products-swiper {
        width: 1000px;
        height: 90vh;
    }

    .reviews-swiper {
        width: 1000px;
        height: 75vh;
    }

    .product-card:hover .product-card-btn {
        transform: translateY(140px);
    }

    .overview-container {
        flex-wrap: wrap;
    }

    .overview-video-content {
        width: 800px;
        height: 500px;
        border-bottom-right-radius: var(--border-radius);
        border-top-right-radius: var(--border-radius);
    }

    .overview-text-content {
        width: 700px;
        border-bottom-left-radius: var(--border-radius);
        border-top-left-radius: var(--border-radius);
    }

    .features-container {
        gap: 40px;
        padding: 0 2rem;
    }
}

/*========== Media queries (max-width: 1000px) ==========*/
@media screen and (max-width: 1000px) {
    .container-lg {
        max-width: 1000px;
    }

    .container-md {
        max-width: 700px;
    }

    .navbar-list {
        display: none;
    }

    .navbar-mobile-btn-open {
        display: flex;
    }

    .mobile-list {
        display: grid !important;
    }

    .container-banner {
        width: 35rem;
        height: 12rem;
    }

    .container-banner h1 {
        font-size: 3rem;
    }

    .products-heading {
        padding: 0 10rem 5rem 10rem;
    }

    .products-swiper {
        width: 900px;
    }

    .reviews-swiper {
        width: 900px;
    }

    .email-input-field {
        width: 800px;
    }
}

/*========== Media queries (max-width: 800px) ==========*/
@media screen and (max-width: 800px) {
    section {
        padding: 2rem 0;
    }

    .container-lg {
        max-width: 800px;
    }

    .container-md {
        max-width: 600px;
    }

    .container-banner h1 {
        font-size: 2.6rem;
    }

    h2 {
        font-size: 2.2rem;
    }

    h3 {
        font-size: 2rem;
    }

    h4 {
        font-size: 1.5rem;
    }

    h5 {
        font-size: 1.1rem;
    }

    .about-text p,
    .reviews-card p {
        font-size: 1.4rem;
    }

    .products-swiper {
        width: 500px;
        height: 90vh;
    }

    .reviews-swiper {
        width: 500px;
        height: 75vh;
    }

    .product-card-btn {
        transform: translateY(220px);
    }

    .product-card:hover .product-card-btn {
        transform: translateY(150px);
    }

    .overview-video-content {
        width: 500px;
        height: 500px;
    }

    .overview-text-content {
        width: 400px;
    }

    .email-input-field {
        width: 450px;
    }
}