@import url('https://fonts.googleapis.com/css2?family=Libertinus+Math&family=Miniver&family=Nunito:ital,wght@0,200..1000;1,200..1000&family=Poppins:wght@200&family=Roboto+Condensed:ital,wght@0,100..900;1,100..900&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Roboto Condensed", sans-serif;
    /* border: 0.1rem solid red; */
}
:root{
    /* --primary-color: #2A9D8F;
    --secondary-color: #E76F51;
    --main-color: #C52233;
    --lead: #FF3366;
    --bg-color: #d1a7b69d;
    --text-color: #000000; */
    --primary-color: #2A9D8F;     
    --secondary-color: #F4A261;   
    --main-color: #264653;       
    --lead: #E9C46A;              
    --bg-color: #1A2B32;          
    --text-color: #1F1F1F;       
    /* --primary-color: #F3722C;   
    --secondary-color: #F9C74F;   
    --main-color: #43AA8B;       
    --lead: #F94144;              
    --bg-color: #FFF5EC;          
    --text-color: #1A1A1A;        */

}
body{
    background: var(--bg-color);
}
html {
    scroll-behavior: smooth;
}
/* Basic Style */
a{
    font-size: 1.3rem;
    text-decoration: none;
    color: var(--text-color);
}
li{
    list-style: none;
}
.wrapper{
    max-width: 1400px;
    margin: auto;
    padding-inline: 1.5rem;
}
img{
    max-width: 100%;
    height: auto;
    display: block;
}


/* Navbar + Hero */
.hero-wrapper{
    position: relative;
    min-height: 100vh;
    background-image: url("images/bg-img"); 
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #fff;
}
.hero-wrapper::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
} 
/* NAVIGATION BAR */
.navbar{
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    min-height: 8vh;
    z-index: 1000;
    background-color: transparent;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;

}
.navbar > * {
    max-width: 1400px; 
    margin: auto;
}
.navbar.scrolled {
    background-color: #916d50;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
}
.nav-list{
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 3rem;
    font-weight: 700;
}
.nav-list a{
    color: var(--bg-color);
}
/* .nav-list a:hover{
    color: var(--bg-color);
} */
.logo{
    font-size: 2.5rem;
    font-weight: bolder;
    /* background: linear-gradient(to top right, #ef2759, #577b76, #790f1a, #180606); */
    background: linear-gradient(to top right, var(--primary-color), var(--secondary-color), var(--main-color));
    background-size: 200%;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: animate-gradient 2s linear infinite;
    -webkit-animation: animate-gradient 2s linear infinite;
}
@keyframes animate-gradient{
    to{
        background-position: 200%;
    } 
}
.desktop-action{
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}
.cart-icon{
    font-size: 1.5rem;
    position: relative;
}
.cart-icon .cart-value{
    position: absolute;
    top: 50%;
    right: -10px;
    font-size: 0.95rem;
    width: 20px;
    aspect-ratio: 1;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    background: var(--secondary-color);
    color: white;
    text-align: center;
    line-height: 20px;
}
.btn{
    display: inline-block;
    padding: 0.8rem 1rem;
    font-size: 1.1rem;
    font-weight: 700;
    color: white;
    background: var(--primary-color);
    box-shadow: rgba(0, 0, 0, 0.1) 0 2px 1px;
    transition: 0.3s ease-in-out;
    -webkit-transition: 0.3s ease-in-out;
    -moz-transition: 0.3s ease-in-out;
    -ms-transition: 0.3s ease-in-out;
    -o-transition: 0.3s ease-in-out;
    border-radius: 1rem;
    -webkit-border-radius: 1rem;
    -moz-border-radius: 1rem;
    -ms-border-radius: 1rem;
    -o-border-radius: 1rem;
}
.btn:hover{
    background: #21867A;
    color: var(--bg-color);
    transform: scale(1.05);
    -webkit-transform: scale(1.05);
    -moz-transform: scale(1.05);
    -ms-transform: scale(1.05);
    -o-transform: scale(1.05);
}
.desktop-action .hamburger{
    font-size: 1.5rem;
    display: none;
}
.mobile-menu{
    display: none;
}
/* HERO SECTION */
.hero-section{
    min-height: calc(100vh - 12vh);
    display: flex;
    align-items: center;    
    justify-content: flex-start;
    padding: 5rem 2rem;
    position: relative;
    z-index: 2;
}
.hero-content {
    max-width: 650px;
    width: 100%;
    padding-inline: 1rem;
    color: var(--text-color);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
    z-index: 2;
}
.hero-content h1{
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 1.2rem;
    color: white;
    filter: drop-shadow(2px 2px 3px black);
    -webkit-filter: drop-shadow(2px 2px 3px black);
} 
.hero-content h1 span{
    color: var(--lead);
} 
.hero-content p{
    max-width: 550px;
    font-size: 1.1rem;
    line-height: 1.7;
    color: #f3f3f3;
    margin-bottom: 2rem;
    filter: drop-shadow(2px 2px 3px black);
    -webkit-filter: drop-shadow(2px 2px 3px black);
}
.hero-actions {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}
.primary-btn{
    padding: 0.9rem 1.4rem;
    font-weight: 700;
    font-size: 1.2rem;
    /*color: white;*/
    box-shadow: 0 8px 20px rgba(42, 157, 143, 0.2);
}
.social-icons{
    display: flex;
    align-items: center;
    gap: 1rem;
}
.social-icons a{
    font-size: 1.5rem;
    color: white;
    background-color: var(--main-color);
    padding: 0.5rem;
    border-radius: 20%;
    -webkit-border-radius: 20%;
    -moz-border-radius: 20%;
    -ms-border-radius: 20%;
    -o-border-radius: 20%;
    transition: all 0.3s ease, transform 0.3s ease;
    -webkit-transition: all 0.3s ease, transform 0.3s ease;
    -moz-transition: all 0.3s ease, transform 0.3s ease;
    -ms-transition: all 0.3s ease, transform 0.3s ease;
    -o-transition: all 0.3s ease, transform 0.3s ease;
}
.social-icons a:hover{
    background-color: var(--lead);
    color: var(--main-color);
    transform: scale(1.1);
}
/* .content, .img-container, .service-card{
    flex: 1;
    flex-basis: 300px;
} */



/* ALL SECTIONS STYLE */
/* Section-1 */
.work-section {
    /* padding: 60px 0; */
    margin-top: 10rem;
    padding-block: 4rem;
    text-align: center;
    background-color: var(--lead);
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
}
.work-img {
    width: 100%;
    max-width: 180px;
    margin: 0 auto 1rem;
    display: block;
}
.headings h5{
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1.5rem;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}
.headings h2{
    font-size: 2.5rem;
    color: var(--main-color);
    margin-bottom: 2rem;
}
.work-content{
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}
.service-card{
    background: white;
    flex: 1;
    min-width: 300px;
    padding: 1.5rem;
    margin: 2rem;
    border-radius: 1rem;
    -webkit-border-radius: 1rem;
    -moz-border-radius: 1rem;
    -ms-border-radius: 1rem;
    -o-border-radius: 1rem;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    -webkit-transition: transform 0.3s ease, box-shadow 0.3s ease;
    -moz-transition: transform 0.3s ease, box-shadow 0.3s ease;
    -ms-transition: transform 0.3s ease, box-shadow 0.3s ease;
    -o-transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.service-card:hover{
    transform: translateY(-8px);
    -webkit-transform: translateY(-8px);
    -moz-transform: translateY(-8px);
    -ms-transform: translateY(-8px);
    -o-transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}
.service-card img{
    width: 140px;
    height: auto;
    margin-bottom: 1rem;
}
.service-card h3{
    color: var(--text-color);
    margin-bottom: 0.5rem;
}
.service-card p{
    color: #444;
    font-size: 0.95rem;
}
/* Section-2 */
.menu-section{
    padding-top: 5rem;
    text-align: center;
}
.menu-section .headings h2{
    color: var(--secondary-color);
}
.menu-list{
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 4rem;
    gap: 2rem;
}
.order-card img{
    width: 15rem;
    height: 15rem;
    object-fit: contain;
    filter: drop-shadow( rgba(0, 0, 0, 0.3) 0 10px 10px);
    -webkit-filter: drop-shadow( rgba(0, 0, 0, 0.3) 0 10px 10px);
    display: block;
    margin: 0 auto;
}
.order-card{
    display: flex;               
    flex-direction: column;
    align-items: center;          
    justify-content: space-between;
    flex: 1;
    min-height: 300px;
    flex-basis: 300px;
    text-align: center;
    padding: 1rem 1rem;
    background: var(--pure-white);
    border: 0.1rem solid var(--secondary-color);
    border-radius: 2rem;
    -webkit-border-radius: 2rem;
    -moz-border-radius: 2rem;
    -ms-border-radius: 2rem;
    -o-border-radius: 2rem;
    box-shadow: rgba(0, 0, 0, 0.08) 8px 8px 8px, 
    rgba(0, 0, 0, 0.08) 8px 8px 8px inset;
}
.order-card h4{
    font-size: 1.2rem;
    color: white;
}
.order-card .price{
    font-size: 1.7rem;
    padding: 1.3rem 0 2rem 0;
    color: var(--secondary-color);
}
/* CART TAB STYLING */
.cart-tab{
    background: var(--bg-color);
    position: fixed;
    inset: 0 -500px 0 auto;
    width: 25rem;
    padding-block: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    box-shadow: rgba(0, 0, 0, 0.2) -10px -10px 20px;
    transition: 0.3s ease-in-out;
    -webkit-transition: 0.3s ease-in-out;
    -moz-transition: 0.3s ease-in-out;
    -ms-transition: 0.3s ease-in-out;
    -o-transition: 0.3s ease-in-out;
}
.cart-tab-active{
    inset: 0 0 0 auto;
}
.cart-tab h3{
    text-transform: uppercase;
    color: white;
    letter-spacing: 0.1rem;
    word-spacing: 0.1rem;
}
.cart-list{
    flex: 1;
    width: 100%;
    margin-top: 1.5rem;
    overflow: auto;
}
.cart-list::-webkit-scrollbar{
    width: 0;
}
.total-container{
    width: 100%;
    background: var(--secondary-color);
    text-align: center;
    margin-block: 1rem;
    padding-block: 1rem;
}
.total-container h4{
    display: inline-block;
    font-size: 1.3rem;
    font-weight: 500;
}
.btn-container{
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}
.btn-container .btn{
    background: var(--primary-color);
    transition: 0.3s ease-in-out;
    -webkit-transition: 0.3s ease-in-out;
    -moz-transition: 0.3s ease-in-out;
    -ms-transition: 0.3s ease-in-out;
    -o-transition: 0.3s ease-in-out;
}
.btn-container .btn:hover{
    background: var(--secondary-color);
}
.item{
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.7rem 1rem;
    transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
}
.item.slide-out{
    transform: translateX(50%);
    -webkit-transform: translateX(50%);
    -moz-transform: translateX(50%);
    -ms-transform: translateX(50%);
    -o-transform: translateX(50%);
}
.item .detail{
    flex: 2;
}
.cart-list .item:nth-child(even){
    background: var(--main-color);
}
.item .item-image img{
    width: 5rem;
}
.item h4{
    text-align: left;
    font-size: 1.3rem;
    color: white;
}
.item .item-total{
    font-weight: 400;
    margin-top: 0.3rem;
}
.quantity-btn{
    background: var(--primary-color);
    color: white;
    font-size: 1rem;
    width: 1.7rem;
    line-height: 1.7rem;
    aspect-ratio: 1;
    text-align: center;
    border-radius: 100vw;
    -webkit-border-radius: 100vw;
    -moz-border-radius: 100vw;
    -ms-border-radius: 100vw;
    -o-border-radius: 100vw;
}
.quantity-value{
    font-size: 1rem;
    font-weight: 400;
    margin-inline: 0.6rem;
}

/* Section-3 */
.review-section{
    margin-top: 10rem;
    padding-block: 4rem;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 4rem;
}
.review-image img{
    width: 500px;
    height: auto;
}
.review-text{
    text-align: left;
    max-width: 750px;
}
.review-text h2{
    padding-bottom: 2rem;
    color: var(--secondary-color);
}
.swiper{
    height: 250px;
    width: 100%;
    background: rgba(128, 128, 128, 0.468);
    margin: 0;
    padding: 0;
    border-radius: 30px;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    -ms-border-radius: 30px;
    -o-border-radius: 30px;
}
.review-card{
    padding: 1.5rem;
}
.reviewer{
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem 0 0 2rem;
}
.reviewer img{
    /* margin: 0;
    padding: 0; */
    width: 45px;
    height: 45px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1rem;
}
.reviewer-name{
    /* margin: 0;
    padding: 0; */
    font-weight: 700;
    font-size: 16px;
    line-height: 1.2;
}     
.reviewer-info{
    /* margin: 0;
    padding: 0; */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    line-height: 1.2;
    padding-top: 2px;
}
.stars{
    color: #FFDF00;
    font-size: 14px;
    margin-top: 0.2rem;
}
.review-card p {
    max-width: 40rem;
    font-size: 18px;
    line-height: 1.6;
    text-align: left;
    padding-left: 2rem;
}     
.swiper-pagination-bullet {
    background: #e15c41;
    opacity: 0.5;
} 
.swiper-pagination-bullet-active {
    opacity: 1;
}
/* section-4 */
.app-section{
    padding-block: 4rem;
}
.app-container{
    display: flex;
    align-items: center;
    /* justify-content: space-around; */
    flex-wrap: wrap;
    background: var(--lead);
    padding: 3rem 6rem;
    gap: 10rem;
    border-radius: 3rem;
    -webkit-border-radius: 3rem;
    -moz-border-radius: 3rem;
    -ms-border-radius: 3rem;
    -o-border-radius: 3rem;
}
.app-container .image-container img{
    width: 30rem;
}
.app-section .headings{
    text-align: start;
}
.app-section .headings p{
    font-size: 1.25rem;
    color: rgb(222, 217, 217);
    margin-block: 1rem;
    max-width: 550px;
    filter: drop-shadow(2px 2px 3px black);
    -webkit-filter: drop-shadow(2px 2px 3px black)
}
/* Section-5 */       
.contact-section{
    margin-top: 5rem;
    padding-block: 4rem;
    max-width: 700px;
    text-align: center;
}
.contact-section .headings h5{
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}
.contact-section .headings h2{
    font-size: 2rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    color: var(--secondary-color);
}
.contact-section .headings p{
    color: #666;
    font-size: 1rem;
    max-width: 550px;
    margin: 0 auto 2rem;
    line-height: 1.6;
}
.input-container{
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}
.input-container input{
    padding: 0.75rem 1rem;
    border-radius: 8px;
    border: 1px solid #ddd;
    font-size: 1rem;
    width: 250px;
    transition: all 0.3s ease;
}
.input-container input:focus{
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 5px rgba(58, 255, 212, 0.4);
}
.input-container .btn{
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
}
  


/* Footer Wrapper */
.footer-section{
    color: #ffffff;
    margin-top: 10rem;
    padding-block: 4rem;
    background-color: var(--main-color);
}
.footer-content{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 4rem;
}
.footer-wrapper .logo{
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--lead);
    text-decoration: none;
    display: inline-block;
    margin-bottom: 1rem;
}
.footer-wrapper p{
    font-size: 1.3rem;
    color: #ddd;
    line-height: 1.6;
    max-width: 350px;
}
.social-wrapper {
    margin-top: 1rem;
    display: flex;
    gap: 1rem;
}
.social-icon{
    color: var(--lead);
    font-size: 1.5rem;
    transition: transform 0.3s ease, color 0.3s ease;
    -webkit-transition: transform 0.3s ease, color 0.3s ease;
    -moz-transition: transform 0.3s ease, color 0.3s ease;
    -ms-transition: transform 0.3s ease, color 0.3s ease;
    -o-transition: transform 0.3s ease, color 0.3s ease;
}
.social-icon:hover{
    transform: scale(1.2);
    color: var(--secondary-color);
}
.footer-wrapper{
    flex: 1 1 200px;
    display: flex;
    flex-direction: column;
}
.footer-wrapper h4{
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--lead);
}
.footer-link{
    display: block;              
    color: #ccc;
    text-decoration: none;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
    transition: 0.3s ease;
    -webkit-transition: 0.3s ease;
    -moz-transition: 0.3s ease;
    -ms-transition: 0.3s ease;
    -o-transition: 0.3s ease;
}
.footer-link:hover{
    color: var(--secondary-color);
}



/* MEDIA QUERIES */
@media (max-width: 1200px) {
    .work-section{
        margin: 5rem 4rem;
    }
    .review-image img{
        width: 350px;
        height: auto;
    }
    .review-text{
       max-width: 650px;
    }
    .review-text h2{
       padding-bottom: 0
    }
    .review-card{
        padding: 0.5rem;
    }   
    .app-container{
        gap: 6rem;
    }
    .app-container .image-container img{
        width: 20rem;
    }
}

@media (max-width: 992px) {
    .nav-list{
        gap: 2.5rem;
    }
    .review-image img{
        width: 300px;
        height: auto;
    }
    .review-text{
       max-width: 550px;
    }
    .review-text h2{
        font-size: 2rem;
    }
    .app-container{
        gap: 5rem;
    }
    .app-container .image-container img{
        width: 15rem;
    } 
}

@media (max-width: 768px) {
    .nav-list, .desktop-action .btn{
        display: none;
    }
    .desktop-action .hamburger{
        display: block;
    }
    .mobile-menu a{
        color: white;
    }
    .mobile-menu{
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        position: absolute;
        top: 200%;
        right: -100%;
        transform: translateX(-50%);
        -webkit-transform: translateX(-50%);
        -moz-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
        -o-transform: translateX(-50%);
        width: 20rem;
        padding: 2rem;
        background: var(--main-color);
        border: 0.1rem solid var(--secondary-color);
        border-radius: 2rem;
        -webkit-border-radius: 2rem;
        -moz-border-radius: 2rem;
        -ms-border-radius: 2rem;
        -o-border-radius: 2rem;
        box-shadow: rgba(0, 0, 0, 0.08) 8px 8px 8px,          
            rgba(0, 0, 0, 0.08) 8px 8px 8px inset;
        transition: all 0.5s ease-in-out;
        -webkit-transition: all 0.5s ease-in-out;
        -moz-transition: all 0.5s ease-in-out;
        -ms-transition: all 0.5s ease-in-out;
        -o-transition: all 0.5s ease-in-out;
    }
    .mobile-menu-active{
        right: 50%;
        transform: translateX(50%);
        -webkit-transform: translateX(50%);
        -moz-transform: translateX(50%);
        -ms-transform: translateX(50%);
        -o-transform: translateX(50%);
    }
    .review-section {
        flex-direction: column;
        gap: 2rem;
    }
    .review-text{
        text-align: center;
    }
    .review-image img {
        width: 100%;
        max-width: 400px;
        height: auto;
    }
    .review-card p{
        padding-left: 0.9rem;
    }
    .reviewer {
        padding-left: 0.6rem;
    }
    .app-container{
        justify-content: center;
    }
    .app-container .image-container img{
        width: 25rem;
    }
    .app-section .headings{
        text-align: center;
    }
    /* .footer-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 3rem;
    }
    .footer-wrapper {
        width: 100%;
    } */
    
}

