@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap');

:root{
    --coffee: #7a4e2d;
    --coffee-dark: #4b2e1b;
    --cream: #f8f3ee;
    --white: #ffffff;
    --black: #111111;
    --gray: #666;
    --shadow: 0 0.8rem 2rem rgba(0,0,0,.12);
    --border: 1px solid rgba(255,255,255,.3);
}

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    outline: none;
    border: none;
    text-decoration: none;
    transition: all 0.2s linear;
    font-family: 'Poppins', sans-serif;
}

html{
    font-size: 62.5%;
    overflow-x: hidden;
    scroll-padding-top: 8rem;
    scroll-behavior: smooth;
}

body{
    background: var(--cream);
    color: var(--black);
}

section{
    padding: 2.5rem 9%;
}

/* Header Css ==================== */
.cheader{
    position: fixed;
    top: 0; left: 0; right: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 9999;
    padding: 1.7rem 9%;
    background: rgba(255,255,255,.85);
    backdrop-filter: blur(12px);
    box-shadow: var(--shadow);
}

.clogo{
    font-size: 2.4rem;
    font-weight: 800;
    color: var(--coffee-dark);
    letter-spacing: .5px;
}

.clogo i{
    margin-left: .6rem;
    color: var(--coffee);
}

.navbar{
    display: flex;
    align-items: center;
    gap: 2.2rem;
}

.navbar a{
    font-size: 1.6rem;
    font-weight: 500;
    color: #333;
    position: relative;
}

.navbar a::after{
    content: "";
    position: absolute;
    left: 0;
    bottom: -7px;
    width: 0%;
    height: 2px;
    background: var(--coffee);
    transition: 0.3s;
}

.navbar a:hover{
    color: var(--coffee);
}

.navbar a:hover::after{
    width: 100%;
}

/* Button */
.btn{
    display: inline-block;
    padding: 1rem 1.8rem;
    border-radius: 12px;
    font-size: 1.6rem;
    font-weight: 600;
    cursor: pointer;
    background: linear-gradient(90deg, var(--coffee), var(--coffee-dark));
    color: var(--white);
    box-shadow: 0 0.6rem 1.4rem rgba(122,78,45,.25);
}

.btn:hover{
    transform: translateY(-2px);
    box-shadow: 0 1rem 2rem rgba(122,78,45,.3);
}

/* Menu Icon */
#menu-btn{
    font-size: 3rem;
    color: var(--coffee-dark);
    cursor: pointer;
    display: none;
}

/* Home Section ==================== */
.home{
    padding-top: 12rem;
    min-height: 100vh;
    background-size: cover;
    position: relative;
    overflow: hidden;
}

.home::before{
    content: "";
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,.45);
    z-index: 0;
}

.home .row{
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
    flex-wrap: wrap;
}

/* Content */
.home .row .content{
    flex: 1 1 45rem;
}

.home .row .content h3{
    font-size: 6rem;
    font-weight: 900;
    line-height: 1.15;
    text-transform: uppercase;
    color: var(--white);
    text-shadow: 0 .8rem 1.6rem rgba(0,0,0,.35);
    max-width: 60rem;
}

.home .row .content p{
    margin-top: 1.6rem;
    font-size: 1.6rem;
    color: rgba(255,255,255,.85);
    line-height: 1.8;
    max-width: 52rem;
}

.home .row .content .btn{
    margin-top: 2.2rem;
}

/* Image */
.home .row .image{
    flex: 1 1 40rem;
    padding-top: 5rem;
    text-align: center;
}

.home .row .image img{
    width: 100%;
    max-width: 36rem;
    filter: drop-shadow(0px 20px 30px rgba(0,0,0,.4));
    animation: float 4s ease-in-out infinite;
}

/* Image Slider */
.image-slider{
    position: relative;
    z-index: 2;
    margin-top: 4rem;
    text-align: center;
    padding: 2rem 0;
}

.image-slider img{
    height: 9.5rem;
    margin: 0 0.7rem;
    cursor: pointer;
    border-radius: 16px;
    padding: .8rem;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.2);
    backdrop-filter: blur(10px);
}

.image-slider img:hover{
    transform: translateY(-1.2rem) scale(1.05);
    border-color: rgba(255,255,255,.6);
}

/* Float Animation */
@keyframes float{
    0%, 100%{
        transform: translateY(0rem);
    }
    50%{
        transform: translateY(-4rem);
    }
}

/* ============================= */
/* Responsive */
/* ============================= */

@media(max-width: 991px){
    html{
        font-size: 56%;
    }
    .cheader{
        padding: 1.5rem 3rem;
    }
    section{
        padding: 2.5rem 5%;
    }
    .home .row .content h3{
        font-size: 5rem;
    }
}

@media(max-width: 768px){
    #menu-btn{
        display: block;
    }
    .navbar{
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(255,255,255,.96);
        backdrop-filter: blur(10px);
        box-shadow: var(--shadow);
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        padding: 1.2rem 0;
        border-radius: 0 0 18px 18px;
        transform: translateY(-30px);
        opacity: 0;
        pointer-events: none;
    }

    .navbar.active{
        transform: translateY(0px);
        opacity: 1;
        pointer-events: auto;
    }

    .navbar a{
        display: block;
        width: 100%;
        padding: 1.5rem 2rem;
        font-size: 1.9rem;
        color: #333;
    }

    .navbar a:hover{
        background: rgba(122,78,45,.08);
    }
    .home{
        min-height: max-content;
    }

    .home .row{
        text-align: center;
    }

    .home .row .content h3{
        font-size: 4.2rem;
        margin: auto;
    }

    .home .row .content p{
        margin: auto;
        margin-top: 1.5rem;
    }

    .home .row .content .btn{
        margin-top: 2.2rem;
    }

    .home .row .image{
        padding-top: 2rem;
    }

    .image-slider img{
        height: 8rem;
    }
}

@media(max-width: 560px){
    html{
        font-size: 50%;
    }

    .home .row .content h3{
        font-size: 3.6rem;
    }

    .image-slider img{
        height: 7.5rem;
        margin: 0 0.4rem;
    }

    .btn{
        padding: 1rem 1.5rem;
        font-size: 1.5rem;
        border-radius: 10px;
    }
}


/* About Section =================== */
.about{
    padding: 9rem 9%;
    background: #f8f3ee;
}

.about-row{
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 5rem;
    align-items: center;
}

.about-image{
    position: relative;
}

.about-image img{
    width: 100%;
    border-radius: 22px;
    box-shadow: 0 1.2rem 2.5rem rgba(0,0,0,.15);
}

.about-content{
    padding: 1rem 0;
}

.about-badge{
    display: inline-flex;
    align-items: center;
    gap: .8rem;
    padding: .8rem 1.5rem;
    background: rgba(122,78,45,.12);
    border-radius: 30px;
    color: #4b2e1b;
    font-size: 1.4rem;
    font-weight: 700;
}

.about-badge i{
    color: #7a4e2d;
}

.about-content h2{
    margin-top: 1.8rem;
    font-size: 4rem;
    font-weight: 900;
    color: #111;
    line-height: 1.2;
}

.about-content p{
    margin-top: 1.6rem;
    font-size: 1.55rem;
    color: #555;
    line-height: 1.9;
}

.about-feature{
    margin-top: 2.5rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
    gap: 1.6rem;
}

.about-box{
    padding: 2rem 1.8rem;
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 .8rem 1.8rem rgba(0,0,0,.08);
    border: 1px solid rgba(0,0,0,.06);
}

.about-box i{
    font-size: 2.5rem;
    color: #7a4e2d;
    margin-bottom: 1.2rem;
}

.about-box h4{
    font-size: 1.8rem;
    font-weight: 800;
    color: #222;
}

.about-box p{
    margin-top: .8rem;
    font-size: 1.35rem;
    color: #666;
    line-height: 1.7;
}

.about-content .btn{
    margin-top: 2.8rem;
    display: inline-block;
}

/* About Responsive =================== */
@media(max-width: 991px){
    .about{
        padding: 7rem 5%;
    }

    .about-content h2{
        font-size: 3.4rem;
    }
}

@media(max-width: 768px){
    .about-row{
        grid-template-columns: 1fr;
        text-align: center;
    }

    .about-image img{
        max-height: 420px;
        object-fit: cover;
    }

    .about-feature{
        grid-template-columns: 1fr;
    }
}


/* Menu Section =================== */
.menu{
    padding: 9rem 9%;
    background: #fff;
}

.section-title{
    text-align: center;
    margin-bottom: 4rem;
}

.section-title span{
    display: inline-block;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--coffee);
    background: rgba(122,78,45,.12);
    padding: .7rem 1.6rem;
    border-radius: 30px;
}

.section-title h2{
    margin-top: 1.8rem;
    font-size: 4rem;
    font-weight: 900;
    color: #111;
}

.section-title p{
    margin-top: 1.2rem;
    font-size: 1.55rem;
    color: #666;
    max-width: 60rem;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

.menu-grid{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.2rem;
}

.menu-card{
    background: #f8f3ee;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(0,0,0,.06);
    box-shadow: 0 .8rem 1.8rem rgba(0,0,0,.08);
    transition: 0.3s;
}

.menu-card:hover{
    transform: translateY(-10px);
    box-shadow: 0 1.5rem 3rem rgba(0,0,0,.12);
}

.menu-img{
    width: 100%;
    height: 220px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(120deg, rgba(122,78,45,.12), rgba(255,255,255,.3));
}

.menu-img img{
    max-width: 150px;
    transition: 0.3s;
}

.menu-card:hover .menu-img img{
    transform: scale(1.08);
}

.menu-info{
    padding: 2rem;
}

.menu-info h3{
    font-size: 2rem;
    font-weight: 800;
    color: #222;
}

.menu-info p{
    margin-top: 1rem;
    font-size: 1.4rem;
    color: #666;
    line-height: 1.7;
}

.menu-bottom{
    margin-top: 1.8rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.price{
    font-size: 1.7rem;
    font-weight: 900;
    color: var(--coffee-dark);
}

.menu-btn{
    font-size: 1.4rem;
    font-weight: 700;
    padding: .8rem 1.5rem;
    border-radius: 12px;
    background: linear-gradient(90deg, var(--coffee), var(--coffee-dark));
    color: #fff;
    box-shadow: 0 .6rem 1.5rem rgba(122,78,45,.2);
}

.menu-btn:hover{
    transform: scale(1.05);
}

/* Menu Responsive =================== */
@media(max-width: 768px){
    .menu{
        padding: 7rem 5%;
    }

    .section-title h2{
        font-size: 3.2rem;
    }

    .menu-img{
        height: 200px;
    }

    .menu-img img{
        max-width: 130px;
    }
}

@media(max-width: 560px){
    .section-title h2{
        font-size: 2.8rem;
    }
}


/* Review Section =================== */
.review{
    padding: 9rem 9%;
    background: #f8f3ee;
}

.review-grid{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.3rem;
}

.review-card{
    background: #fff;
    border-radius: 22px;
    padding: 2.5rem 2.3rem;
    box-shadow: 0 .8rem 2rem rgba(0,0,0,.08);
    border: 1px solid rgba(0,0,0,.06);
    transition: 0.3s;
}

.review-card:hover{
    transform: translateY(-10px);
    box-shadow: 0 1.6rem 3.2rem rgba(0,0,0,.12);
}

.review-top{
    display: flex;
    align-items: center;
    gap: 1.4rem;
}

.review-top img{
    width: 65px;
    height: 65px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid rgba(122,78,45,.3);
}

.review-user h3{
    font-size: 1.8rem;
    font-weight: 800;
    color: #222;
}

.review-user p{
    font-size: 1.3rem;
    color: #777;
    margin-top: .3rem;
}

.review-stars{
    margin-top: 1.5rem;
    color: #ffb347;
    font-size: 1.5rem;
}

.review-text{
    margin-top: 1.6rem;
    font-size: 1.45rem;
    color: #555;
    line-height: 1.8;
}

/* Review Responsive =================== */
@media(max-width: 768px){
    .review{
        padding: 7rem 5%;
    }
}


/* Book Table Section =================== */
.book{
    padding: 9rem 9%;
    background: #fff;
}

.book-row{
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-top: 4rem;
}

/* Book Info */
.book-info h3{
    font-size: 3.2rem;
    font-weight: 900;
    color: #111;
}

.book-info p{
    margin-top: 1.6rem;
    font-size: 1.55rem;
    color: #555;
    line-height: 1.8;
    max-width: 55rem;
}

.book-list{
    margin-top: 2.6rem;
    display: flex;
    flex-direction: column;
    gap: 1.8rem;
}

.book-item{
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    padding: 1.8rem 1.6rem;
    border-radius: 18px;
    background: #f8f3ee;
    border: 1px solid rgba(0,0,0,.06);
    box-shadow: 0 .7rem 1.6rem rgba(0,0,0,.07);
}

.book-item i{
    font-size: 2.4rem;
    color: var(--coffee);
    margin-top: .3rem;
}

.book-item h4{
    font-size: 1.7rem;
    font-weight: 800;
    color: #222;
}

.book-item p{
    margin-top: .5rem;
    font-size: 1.35rem;
    color: #666;
}

/* Book Form */
.book-form{
    background: #f8f3ee;
    border-radius: 22px;
    padding: 3rem 2.5rem;
    border: 1px solid rgba(0,0,0,.06);
    box-shadow: 0 .9rem 2rem rgba(0,0,0,.08);
}

.book-form h3{
    font-size: 2.4rem;
    font-weight: 900;
    color: #222;
    margin-bottom: 2.2rem;
    text-align: center;
}

.inputBox{
    width: 100%;
    display: flex;
    align-items: center;
    gap: 1rem;
    background: #fff;
    padding: 1.4rem 1.4rem;
    border-radius: 14px;
    margin-bottom: 1.4rem;
    border: 1px solid rgba(0,0,0,.08);
}

.inputBox span{
    font-size: 1.7rem;
    color: var(--coffee);
    width: 30px;
    text-align: center;
}

.inputBox input{
    width: 100%;
    background: none;
    font-size: 1.45rem;
    color: #333;
    padding: .4rem;
}

.inputBox input::placeholder{
    color: #999;
}

.book-form .btn{
    width: 100%;
    text-align: center;
    border-radius: 14px;
    padding: 1.2rem;
    font-size: 1.7rem;
}

/* Book Responsive =================== */
@media(max-width: 991px){
    .book{
        padding: 7rem 5%;
    }

    .book-row{
        grid-template-columns: 1fr;
    }

    .book-info{
        text-align: center;
    }

    .book-info p{
        margin-left: auto;
        margin-right: auto;
    }

    .book-item{
        justify-content: center;
        text-align: left;
    }
}


/* Footer Section =================== */
.footer{
    background: linear-gradient(120deg, #3b2415, #24160d);
    padding: 7rem 9% 2rem;
    color: #fff;
}

.footer-grid{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 3rem;
}

.footer-box h2,
.footer-box h3{
    font-size: 2.1rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    color: #fff;
}

.footer-logo{
    font-size: 2.6rem;
    font-weight: 900;
}

.footer-logo i{
    color: #ffb347;
    margin-left: .6rem;
}

.footer-box p{
    font-size: 1.4rem;
    line-height: 1.8;
    color: rgba(255,255,255,.8);
    margin-bottom: 1.2rem;
}

.footer-box a{
    display: block;
    font-size: 1.45rem;
    margin-bottom: 1rem;
    color: rgba(255,255,255,.8);
}

.footer-box a i{
    color: #ffb347;
    margin-right: .8rem;
}

.footer-box a:hover{
    color: #ffb347;
    transform: translateX(6px);
}

.footer-social{
    display: flex;
    gap: 1.2rem;
    margin-top: 1.8rem;
}

.footer-social a{
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255,255,255,.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.6rem;
}

.footer-social a:hover{
    background: #ffb347;
    color: #111;
    transform: translateY(-4px);
}

/* Newsletter */
.footer-form{
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.footer-form input{
    flex: 1;
    padding: 1.1rem 1.2rem;
    border-radius: 12px;
    font-size: 1.4rem;
    outline: none;
}

.footer-form button{
    padding: 1.1rem 1.6rem;
    border-radius: 12px;
    font-size: 1.4rem;
    font-weight: 700;
    cursor: pointer;
    background: #ffb347;
    color: #111;
}

.footer-form button:hover{
    background: #ffcc7a;
}

/* Footer Bottom */
.footer-bottom{
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,.12);
    text-align: center;
}

.footer-bottom p{
    font-size: 1.35rem;
    color: rgba(255,255,255,.7);
}

/* WhatsApp Floating =================== */
.wa-float{
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: #25D366;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    box-shadow: 0 1.2rem 2.2rem rgba(0,0,0,.3);
}

.wa-float i{
    font-size: 2.8rem;
    color: #fff;
}

.wa-float:hover{
    transform: scale(1.08);
}

/* Footer Responsive =================== */
@media(max-width: 768px){
    .footer{
        padding: 6rem 5% 2rem;
        text-align: center;
    }

    .footer-social{
        justify-content: center;
    }

    .footer-form{
        flex-direction: column;
    }

    .footer-form button{
        width: 100%;
    }
}


/* Popup Buy Template =================== */
.popupOverlay{
    position: fixed;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,.65);
    backdrop-filter: blur(6px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 999999;
    padding: 2rem;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
}

.popupOverlay.active{
    opacity: 1;
    visibility: visible;
}

.popupBox{
    width: 100%;
    max-width: 460px;
    background: #fff;
    border-radius: 22px;
    padding: 3.2rem 2.6rem;
    position: relative;
    text-align: center;
    box-shadow: 0 2rem 4rem rgba(0,0,0,.25);
    animation: popupZoom 0.4s ease;
}

@keyframes popupZoom{
    0%{
        transform: scale(.8);
        opacity: 0;
    }
    100%{
        transform: scale(1);
        opacity: 1;
    }
}

.popupClose{
    position: absolute;
    top: 14px;
    right: 14px;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(0,0,0,.06);
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
}

.popupClose i{
    font-size: 1.7rem;
    color: #333;
}

.popupClose:hover{
    background: rgba(122,78,45,.15);
}

.popupIcon{
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: rgba(122,78,45,.12);
    display: flex;
    justify-content: center;
    align-items: center;
    margin: auto;
    margin-bottom: 1.8rem;
}

.popupIcon i{
    font-size: 2.8rem;
    color: #7a4e2d;
}

.popupBox h2{
    font-size: 2.4rem;
    font-weight: 900;
    color: #111;
}

.popupBox p{
    margin-top: 1.4rem;
    font-size: 1.45rem;
    line-height: 1.8;
    color: #666;
}

.popupPrice{
    margin-top: 2rem;
    padding: 1.5rem;
    border-radius: 18px;
    background: #f8f3ee;
    border: 1px solid rgba(0,0,0,.06);
}

.popupPrice span{
    font-size: 1.4rem;
    color: #555;
    font-weight: 600;
}

.popupPrice h3{
    margin-top: .6rem;
    font-size: 2.6rem;
    font-weight: 900;
    color: #7a4e2d;
}

.popupBtn{
    margin-top: 2.3rem;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.popupBuy{
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: .8rem;
    padding: 1.2rem;
    border-radius: 14px;
    font-size: 1.6rem;
    font-weight: 800;
    background: linear-gradient(90deg, #7a4e2d, #4b2e1b);
    color: #fff;
    box-shadow: 0 .8rem 1.8rem rgba(122,78,45,.25);
}

.popupBuy:hover{
    transform: translateY(-3px);
}

.popupLater{
    padding: 1.2rem;
    border-radius: 14px;
    font-size: 1.55rem;
    font-weight: 700;
    background: rgba(0,0,0,.06);
    color: #333;
    cursor: pointer;
}

.popupLater:hover{
    background: rgba(0,0,0,.1);
}

.popupFooterText{
    margin-top: 2rem;
    font-size: 1.2rem;
    color: #777;
}

/* Popup Responsive */
@media(max-width: 480px){
    .popupBox{
        padding: 2.8rem 2rem;
    }

    .popupBox h2{
        font-size: 2.1rem;
    }

    .popupPrice h3{
        font-size: 2.3rem;
    }
}

