/* ===========================
   Google Font Defaults
=========================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior: smooth;
    scroll-padding-top: 90px;
}

body{
    font-family:'Poppins',sans-serif;
    background:#fffaf5;
    color:#333;
    line-height:1.7;
}

img{
    width:100%;
    display:block;
}

a{
    text-decoration:none;
}

ul{
    list-style:none;
}

.container{
    width:90%;
    max-width:1200px;
    margin:auto;
}

/* ===========================
   Header
=========================== */

header{
    width:100%;
    background:#2d1b12;
    position:fixed;
    top:0;
    left:0;
    z-index:1000;
    box-shadow:0 2px 10px rgba(0,0,0,.2);
}

header .container{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:15px 0;
}

.logo img{
    width: 300px;
    height:auto;
}

nav ul{
    display:flex;
    gap:30px;
}

nav ul li a{
    color:white;
    font-weight:500;
    transition:.3s;
}

nav ul li a:hover{
    color:#d8a35d;
}

.hamburger{
    display:none;
    color:white;
    font-size:28px;
    cursor:pointer;
}

/* ===========================
Hero
=========================== */

.hero{
    height:100vh;
    background:url("../images/hero.jpg") center center/cover no-repeat;
    position:relative;
    display:flex;
    justify-content:center;
    align-items:center;
    text-align:center;
}

.hero-overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.55);
}

.hero-content{
    position:relative;
    color:white;
    z-index:10;
    max-width:800px;
}

/* .hero h1{
    font-size:60px;
    font-family:'Playfair Display',serif;
    margin-bottom:20px;
} */
.hero h1{

    font-size:60px;
    font-family:'Playfair Display',serif;
    margin-bottom:20px;
    line-height:1.2;

    background:linear-gradient(90deg,#ffffff,#f7d27b,#ffffff);

    -webkit-background-clip:text;

    -webkit-text-fill-color:transparent;

     text-shadow:

        0 0 10px rgba(255,255,255,.2),

        0 0 25px rgba(216,163,93,.5);


}

.hero p{
    font-size:20px;
    margin-bottom:40px;
}

.buttons{
    display:flex;
    justify-content:center;
    gap:20px;
}

.btn{
    background:#8B5A2B;
    color:white;
    padding:15px 35px;
    border-radius:50px;
    transition:.3s;
}

.btn:hover{
    background:#6d4321;
}

.btn-outline{
    border:2px solid white;
    color:white;
    padding:15px 35px;
    border-radius:50px;
    transition:.3s;
}

.btn-outline:hover{
    background:white;
    color:#2d1b12;
}

/* ===========================
Section
=========================== */

section{
    padding:90px 0;
}

section h2{
    font-size:40px;
    text-align:center;
    margin-bottom:25px;
    color:#3d2416;
    font-family:'Playfair Display',serif;
}

/* ===========================
About
=========================== */

.about-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;
    align-items:center;
}

.about img{
    border-radius:15px;
    box-shadow:0 10px 25px rgba(0,0,0,.15);
}

.about p{
    margin-bottom:16px;
    font-size:16px;
}

.about p:last-child{
    margin-bottom:5px;
}

/* ===========================
Products
=========================== */

.products{
    background:#fff;
}

.product-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
}

.card{

    background:white;

    border-radius:15px;

    overflow:hidden;

    box-shadow:0 10px 25px rgba(0,0,0,.08);

    transition:.4s;

    display:flex;

    flex-direction:column;

    height:100%;

}
.card:hover{
    transform:translateY(-10px);
}


.card img{

    height:250px;

    object-fit:cover;

}

.card h3{
    padding:20px;
    color:#5b351b;
}

.card p{
    padding:0 20px 25px;
}
.mySwiper{

    padding:30px 70px 60px;

}

.swiper-slide{

    display:flex;
    justify-content:center;

}

.swiper-button-next,
.swiper-button-prev{

    color:#8B5A2B;

}
.swiper-button-next,
.swiper-button-prev {
    width: 45px;
    height: 45px;
    background: #8B5A2B;
    border-radius: 50%;
    color: white;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.swiper-button-next::after,
.swiper-button-prev::after {
    font-size: 18px;
    font-weight: bold;
}

.swiper-pagination-bullet-active{

    background:#8B5A2B;

}
/* ===========================
Lavazza
=========================== */

.lavazza{
    background:#2d1b12;
    color:white;
    text-align:center;
}

.lavazza-logo{
    width:200px;
    margin:auto;
    margin-bottom:30px;
}

.lavazza h2{
    color:white;
}

.lavazza p{
    max-width:700px;
    margin:auto;
}

.lavazza-products{
    background:#fffaf5;
}

.lavazzaSwiper{
    padding:30px 70px 60px;
}
.mySwiper,
.lavazzaSwiper{

    padding:30px 70px 60px;

}

/* ===========================
Why Us
=========================== */

.features{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
    text-align:center;
}

/* .features div{
    padding:40px 20px;
    background:white;
    border-radius:15px;
    box-shadow:0 10px 20px rgba(0,0,0,.08);
    transition:.3s;
} */
.features div{

    min-height:220px;

    display:flex;

    flex-direction:column;

    justify-content:center;

}
.features div:hover{
    transform:translateY(-8px);
}

.features i{
    font-size:45px;
    color:#8B5A2B;
    margin-bottom:20px;
}

.features h3{
    color:#4b2d17;
}

/* ===========================
Contact
=========================== */

.contact{
    background:#f7f2ee;
}

.contact form{
    max-width:700px;
    margin:auto;
}

.contact input,
.contact textarea{
    width:100%;
    padding:16px;
    margin-bottom:20px;
    border:none;
    border-radius:10px;
    background:white;
    font-size:16px;
    box-shadow:0 3px 10px rgba(0,0,0,.08);
}

.contact textarea{
    resize:none;
}

.contact button{
    width:100%;
    padding:16px;
    border:none;
    border-radius:10px;
    background:#8B5A2B;
    color:white;
    font-size:18px;
    cursor:pointer;
    transition:.3s;
}

.contact button:hover{
    background:#6d4321;
}


/* ===========================
Footer
=========================== */

footer{
    background:#2d1b12;
    color:#fff;
    text-align:center;
    padding:30px 20px;
}

footer p{
    margin:8px 0;
    font-size:15px;
}

footer .developer{
    font-size:14px;
    color:#d8a35d;
}

footer .developer strong{
    color:#ffffff;
    font-weight:600;
}

footer .developer a{
    color:#d8a35d;
    text-decoration:none;
    font-weight:600;
    transition:.3s;
}

footer .developer a:hover{
    color:#ffffff;
}
/* ===========================
Floating Buttons
=========================== */

.whatsapp{
    position:fixed;
    right:20px;
    bottom:20px;
    width:60px;
    height:60px;
    background:#25D366;
    color:white;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:28px;
    box-shadow:0 5px 15px rgba(0,0,0,.3);
    z-index:999;
}

.call{
    position:fixed;
    left:20px;
    bottom:20px;
    width:60px;
    height:60px;
    background:#8B5A2B;
    color:white;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:25px;
    box-shadow:0 5px 15px rgba(0,0,0,.3);
    z-index:999;
}

.whatsapp:hover,
.call:hover{
    transform:scale(1.1);
}

/* ===========================
Animations
=========================== */

.card,
.features div,
.about img{
    transition:all .4s ease;
}

.card:hover img{
    transform:scale(1.05);
}

button,
.btn,
.btn-outline{
    transition:.3s ease;
}

::selection{
    background:#8B5A2B;
    color:white;
}
nav ul li a.active {
    color: #d8a35d;
    border-bottom: 2px solid #d8a35d;
    padding-bottom: 5px;
}





.hero-content{

    position:relative;
    color:white;
    z-index:10;
    max-width:800px;

    animation:fadeUp 1.2s ease;

}

@keyframes fadeUp{

    from{

        opacity:0;
        transform:translateY(50px);

    }

    to{

        opacity:1;
        transform:translateY(0);

    }

}




/*============================
Coffee Machines
=============================*/

.machines{

    background:#fdf9f4;
}

.section-subtitle{

    text-align:center;
    color:#777;
    max-width:750px;
    margin:0 auto 60px;
    font-size:18px;
}

.machine-grid{

    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
}

.machine-card{

    background:#fff;
    border-radius:18px;
    overflow:hidden;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
    transition:.35s;
}

.machine-card:hover{

    transform:translateY(-10px);
    box-shadow:0 18px 35px rgba(0,0,0,.15);
}

.machine-card img{

    height:260px;
    object-fit:cover;
}

.machine-card h3{

    padding:22px 20px 10px;
    color:#5b351b;
    font-size:22px;
}

.machine-card p{

    padding:0 20px 30px;
    color:#666;
    font-size:15px;
}

.machine-card:hover img{

    transform:scale(1.06);
    transition:.5s;
}


.machineSwiper{
    padding:30px 70px 60px;
}

.machine-next,
.machine-prev{
    width:45px;
    height:45px;
    background:#8B5A2B;
    border-radius:50%;
    color:white;
    box-shadow:0 4px 12px rgba(0,0,0,.2);
}

.machine-next::after,
.machine-prev::after{
    font-size:18px;
}

.machine-pagination .swiper-pagination-bullet-active{
    background:#8B5A2B;
}


.products-btn{
    text-align:center;
    margin-top:40px;
}

.contact-btn{
    display:inline-flex;
    align-items:center;
    gap:10px;
    background:#6F4E37;
    color:#fff;
    padding:15px 35px;
    border-radius:50px;
    text-decoration:none;
    font-size:17px;
    font-weight:600;
    transition:0.3s ease;
    box-shadow:0 8px 20px rgba(0,0,0,0.15);
}

.contact-btn:hover{
    background:#8B5E3C;
    transform:translateY(-3px);
}

.contact-btn i{
    font-size:16px;
}



.read-more-btn{

    margin-top:15px;

    border:none;

    background:#6F4E37;

    color:#fff;

    padding:10px 20px;

    border-radius:30px;

    cursor:pointer;

    transition:.3s;

}

.read-more-btn:hover{

    background:#8B5E3C;

}

.product-modal{

    position:fixed;

    inset:0;

    background:rgba(0,0,0,.6);

    display:none;

    justify-content:center;

    align-items:center;

    z-index:9999;

    padding:20px;

}

.modal-content{

    background:#fff;

    max-width:600px;

    width:100%;

    border-radius:15px;

    padding:30px;

    text-align:center;

    position:relative;

    animation:popup .3s ease;

}

.modal-content img{

    width:220px;

    max-width:100%;

    margin-bottom:20px;

}

.modal-content h2{

    margin-bottom:15px;

}

.modal-content p{

    line-height:1.8;

    color:#555;

}

.modal-btn{

    display:inline-block;

    margin-top:25px;

    background:#6F4E37;

    color:#fff;

    padding:12px 30px;

    border-radius:30px;

    text-decoration:none;

}

.close-modal{

    position:absolute;

    top:15px;

    right:20px;

    font-size:28px;

    cursor:pointer;

}

@keyframes popup{

    from{

        transform:scale(.8);

        opacity:0;

    }

    to{

        transform:scale(1);

        opacity:1;

    }

}

.modal-content img{
    display:block;
    width:220px;
    max-width:100%;
    height:auto;
    object-fit:contain;
    margin:0 auto 25px;
}


.modal-content{

    background:#fff;

    width:90%;

    max-width:650px;

    max-height:90vh;

    overflow-y:auto;

    border-radius:18px;

    padding:35px;

    position:relative;

    text-align:center;

    animation:popup .3s ease;

}

