@import url('https://fonts.googleapis.com/css2?family=Libre+Baskerville:ital,wght@0,400..700;1,400..700&family=Merriweather:ital,opsz,wght@0,18..144,300..900;1,18..144,300..900&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto+Condensed:ital,wght@0,100..900;1,100..900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Libre+Baskerville:ital,wght@0,400..700;1,400..700&family=Merriweather:ital,opsz,wght@0,18..144,300..900;1,18..144,300..900&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto+Condensed:ital,wght@0,100..900;1,100..900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');



* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Roboto Condensed", sans-serif;
    font-family: "Libre Baskerville", serif;
}

:root {
    --lead: #212121;
    --gold: #f2bd12;
    --eye: #fffdf7;
    --hint: #fcf1cc;
    --white: #fff;
    --primary: "Roboto Condensed", sans-serif;
    --secondary: "Libre Baskerville", serif;
}

body {
    background-color: var(--eye);
}

/*basic   */
a {
    font-size: 1.1rem;
    text-decoration: none;
    color: var(--lead);
}

.flex {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

li {
    list-style: none;
}

.between {
    justify-content: space-between;
}

.gap-2 {
    gap: 2rem;
}

.gap-3 {
    gap: 3rem;
}

.wrapper {
    max-width: 1400px;
    margin: auto;
    padding-inline: 1.5rem;
    text-align: center;
}

img {
    max-width: 100vh;
    height: auto;
    margin: auto;
    display: block;
}

.p-top {
    padding-top: 10rem;
}

.test-center {
    text-align: center;
}

.mt-4 {
    margin-top: 4rem;
}

.mt-one-half {
    margin-top: .5rem;
}

.m-auto {
    margin: auto;
}

.mt-one-half {
    margin-top: 1.5rem;
}

/*header*/

.navbar {
    min-height: 14vh;
}

.logo {
    font-size: 2rem;
    font-weight: bold;
    color: var(--gold);
}

.btn {
    display: inline-block;
    padding: .9rem 2rem;
    background: var(--gold);
    border-radius: 1rem;
    font-size: 1.1rem;
    color: var(--white);
    box-shadow: rgba(0, 0, 0, 0.257) 0 2px 1px;
    transition: .3d ease-in-out;
}

.btn:hover {
    background: var(--lead);

}

.cart-icon {
    color: var(--lead);
    font-size: 1.3rem;
    position: relative;
}

.cart-icon .cart-value {
    position: absolute;
    top: 50%;
    right: -10px;
    font-size: .85rem;
    width: 20px;
    height: 20px;
    aspect-ratio: 1;
    border-radius: 100vw;
    background: var(--gold);
    color: var(--lead);
    text-align: center;
    line-height: 20px;
}


.hamburger {
    font-size: 1.5rem;
    display: none;
}

.mobile-menu {
    display: none;
}

/*section*/
.hero-section {
    min-height: calc(100vh -14vh);
}

.content,
.img-container,
.service-card {
    flex: 1;
    flex-basis: 300px;
}

h1 {
    font-size: 5.6vw;
    color: var(--lead);

}

h1 span {
    color: var(--gold);
}

p {
    font-size: 1rem;
    cursor: grey;
    line-height: 1.8rem;
    font-weight: 400;
}

.para {
    margin-top: 2rem;
    margin-block: 2rem;
    max-width: 550px;
}

.social-icon {
    background: var(--hint);
    width: 3rem;
    aspect-ratio: 1;
    border-radius: 1rem;
    font-size: 1.2rem;
    text-align: center;
    line-height: 3rem;
    box-shadow: rgba(0, 0, 0, 0.257) 0 2px 1px;
    transition: .3s ease-in-out;
    margin-top: 1rem;
}

.social-icon:hover {
    background: var(--lead);
    color: var(--white);
}


/*section 1*/
h5 {
    font-size: 1.2rem;
    letter-spacing: .2rem;
    color: var(--gold);
    text-transform: uppercase;
}

h2 {
    font-size: 3.7rem;
    text-transform: capitalize;
    color: var(--lead);
}

h3 {
    font-size: 2rem;
    text-transform: capitalize;
    color: var(--lead);
}

.service-card h3 {
    margin-top: 1.5rem;
    margin-bottom: 1rem;
}


/*section 2*/
.order-card {
    flex: 1;
    flex-basis: 300px;
    background: var(--white);
    padding: 0 1rem 2rem 1rem;
    border: .1rem solid var(--gold);
    border-radius: 2rem;
    box-shadow:
        rgb(0, 0, 0, 0.05) 8px 8px 8px,
        rgb(0, 0, 0, 0.05) 8px 8px 8px inset;

}

.order-card img {
    width: 15rem;
    filter: drop-shadow(rgba(0, 0, 0, 0.2) 0 10px 10px);
}

h4 {
    font-size: 1.8rem;
    color: var(--lead);
}

.order-card .price {
    font-size: 1.7rem;
    color: var(--gold);
    padding: 0.8rem 0 1rem 0;
}

/*cart tab*/
.cart-tab {
    position: fixed;
    inset: 0 0 0 auto;
    width: 25rem;
    padding-block: 2rem;
    background: var(--hint);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.cart-list {
    flex: 1;
    width: 100%;
    
}
.total-container {
    width: 100%;
    background: var(--gold);
    text-align: center;
    margin-block: 1rem;
    padding-block: 1rem;
}
.total-container h4{
    display: inline-block;
    font-size: 1.3rem;
    font-weight: 400; 
}
.btn-container .btn{
    background: var(--lead);
    transition: .3s ease-in-out;
}

.btn-container .btn:hover{
    background: var(--gold);
    color: var(--lead);
}
/*
.item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .8rem;
}
.item h4{
    font-size: 1.3rem;
    color: var(--lead);
}
.item .img-container-1 img{
    width: 2rem;
}/*
/*section3*/    
.wrapper-1 {
    justify-content: space-between;
    align-items: center;
    display: flex;
}

.review-container {
    width: 650px;
    max-width: 100%;
    flex: 1;

}

.swiper {
    width: 100%;
    height: 100%;
}

.profile {
    width: 4rem;
    aspect-ratio: 1;
    border-radius: 100vw;
    overflow: hidden;
}

.profile img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.fa-star {
    color: var(--gold);
}

.arrow {
    width: 2.5rem;
    aspect-ratio: 1;
    border-radius: 100vw;
    background: var(--gold);
    color: var(--lead);
    text-align: center;
    line-height: 2.5rem;
}

/*section 4*/

.app-container {
    background: var(--hint);
    padding: 3rem 6rem;
    border-radius: 3rem;

}

.app-container img {
    width: 25rem;
}



.app-container h2 {
    font-size: 3.5rem;
    text-align: start;
}

.app-container .para {
    text-align: start;
    font-style: italic;
}

.app-container h5 {
    text-align: start;
}

.app-container .btn {
    text-align: start;
}





/* section 5*/

.input-container {
    width: 43rem;
    max-width: 100%;
    padding: .8rem;
    background: var(--white);
    box-shadow:
        rgba(0, 0, 0, 0.1) 0 5px 8px;
    border-radius: 1rem;
}

input[type="email"] {
    flex: 1;
    height: 7vh;
    background: transparent;
    border: none;
    font-size: 1.1rem;
    padding-left: 1rem;
}

input[type="email"]:focus {
    outline: none;
}

/*footer*/
.footer-container .flex {
    align-items: start;
    flex-basis: 150px;
}

.footer-wrapper:nth-child(1) {
    flex: 2;
    flex-basis: 300px;
}

.footer-container {
    margin-top: 10rem;
    padding-block: 4rem;
    background: var(--hint);
}

.footer-wrapper {
    flex: 1;
}

.footer-wrapper .social-icon {
    background: var(--white);
}

.footer-wrapper .social-icon:hover {
    background: var(--lead);
    color: var(--white);
}

.footer-link {
    color: gray;
    font-size: 1.1rem;
    transition: .3s ease-in-out;
}

.footer-link:hover {
    color: var(--lead);
}





/*media querry*/
@media screen and (max-width: 780px) {

    /*Header*/
    .navlist,
    .action .btn {
        display: none;
    }

    .action .hamburger {
        display: block;
    }

    .mobile-menu {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        position: absolute;
        top: 20%;
        left: -100%;
        width: 20rem;
        padding: 2rem;
        transform: translateX(-50%);
        background: var(--white);
        border: .1rem solid var(--gold);
        border-radius: 2rem;
        box-shadow:
            rgb(0, 0, 0, 0.05) 8px 8px 8px,
            rgb(0, 0, 0, 0.05) 8px 8px 8px inset;
        transition: all .5s ease-in-out;
    }

    .mobile-menu-active {
        left: 50%;
        transform: translateX(-50%);
    }

    /*hero section*/
    /*section*/
    h1 {
        font-size: 3.6rem;

    }

    .content {
        padding-top: 3rem;
    }

    .gap-2 {
        gap: 1rem;
    }

    .gap-4 {
        gap: 4rem;
    }

    /*section 1*/
    h2 {
        font-size: 3rem;
    }

    /* section4*/
    .app-container {
        padding: 2.2rem;
    }

    .app-container h2 {
        font-size: 3.5rem;
    }

}

  