*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins',sans-serif;
}

html{
    scroll-behavior:smooth;
}

body{
    background:#f8f5ef;
    color:#333;
    overflow-x:hidden;
}

/* HERO SECTION */

.hero{
    min-height:100vh;
    display:flex;
    align-items:center;
    justify-content:center;
    padding:80px 8%;
    background:
    linear-gradient(rgba(0,0,0,.65),rgba(0,0,0,.65)),
    url("../images/cahsue-banner.jpg");
    background-size:cover;
    background-position:center;
}

.hero-content{
    max-width:750px;
    text-align:center;
    color:#fff;
    animation:fadeUp 1.5s ease;
}

.hero h1{
    font-size:5rem;
    font-weight:800;
    letter-spacing:4px;
    margin-bottom:15px;
}

.hero p{
    font-size:1.2rem;
    line-height:1.8;
    margin-bottom:30px;
}

.btn{
    display:inline-block;
    padding:15px 40px;
    background:#c89b3c;
    color:#fff;
    text-decoration:none;
    border-radius:50px;
    font-weight:600;
    transition:.4s;
}

.btn:hover{
    transform:translateY(-5px);
    background:#b88622;
}

/* ABOUT */

.section{
    padding:100px 8%;
}

.section-title{
    text-align:center;
    font-size:3rem;
    margin-bottom:20px;
    color:#6a4219;
}

.section-sub{
    text-align:center;
    max-width:1000px;
    margin:auto;
    line-height:1.9;
    color:#555;
}

.about{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;
    align-items:center;
    margin-top:60px;
}

.about img{
    width:100%;
    border-radius:25px;
    box-shadow:0 15px 40px rgba(0,0,0,.15);
}

.about-content h3{
    font-size:2rem;
    margin-bottom:20px;
    color:#6a4219;
}

.about-content p{
    line-height:1.9;
    color:#555;
}

/* INFO BOX */

.info-grid{
    margin-top:60px;
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:30px;
}

.info-card{
    background:#fff;
    padding:35px;
    border-radius:20px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    transition:.4s;
}

.info-card:hover{
    transform:translateY(-10px);
}

.info-card h4{
    color:#6a4219;
    margin-bottom:15px;
    font-size:1.3rem;
}

.info-card p{
    color:#666;
    line-height:1.8;
}

/* PRODUCT GALLERY */

.gallery{
    background:#fff;
}

.product-row{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
    margin-top:60px;
}

.product-card{
    position:relative;
    overflow:hidden;
    border-radius:20px;
    cursor:pointer;
    box-shadow:0 10px 30px rgba(0,0,0,.12);
}

.product-card img{
    width:100%;
    height:320px;
    object-fit:cover;
    transition:.6s;
}

.product-card:hover img{
    transform:scale(1.1);
}

.overlay{
    position:absolute;
    bottom:0;
    left:0;
    width:100%;
    padding:25px;
    background:linear-gradient(transparent,#000);
    color:#fff;
}

.overlay h3{
    font-size:1.2rem;
}

/* LIGHTBOX */

.lightbox{
    position:fixed;
    inset:0;
    background:rgba(0,0,0,.92);
    display:none;
    justify-content:center;
    align-items:center;
    z-index:999;
}

.lightbox.active{
    display:flex;
}

.lightbox img{
    max-width:85%;
    max-height:80vh;
    border-radius:15px;
}

.close{
    position:absolute;
    top:30px;
    right:40px;
    color:#fff;
    font-size:40px;
    cursor:pointer;
}

/* CTA */

.cta{
    background:linear-gradient(135deg,#6a4219,#b88622);
    color:#fff;
    text-align:center;
}

.cta h2{
    font-size:3rem;
    margin-bottom:20px;
}

.cta p{
    max-width:900px;
    margin:auto;
    line-height:1.9;
}

/* ANIMATION */

.fade{
    opacity:0;
    transform:translateY(50px);
    transition:1s;
}

.fade.show{
    opacity:1;
    transform:translateY(0);
}

@keyframes fadeUp{
    from{
        opacity:0;
        transform:translateY(50px);
    }
    to{
        opacity:1;
        transform:translateY(0);
    }
}

/* RESPONSIVE */

@media(max-width:991px){

.about{
    grid-template-columns:1fr;
}

.product-row{
    grid-template-columns:1fr;
}

.hero h1{
    font-size:3rem;
}
}