/* =========================
   RESET
========================= */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Segoe UI',sans-serif;
    background:#fffaf5;
    color:#333;
    overflow-x:hidden;
}

a{
    text-decoration:none;
}

img{
    max-width:100%;
    display:block;
}

/* =========================
   CONTAINER FIX
========================= */

.container{
    padding-left:20px;
    padding-right:20px;
}

/* =========================
   NAVBAR
========================= */

.navbar{
    background:white;
    padding:14px 0;
    transition:0.3s;
    z-index:999;
}

.navbar-brand{
    font-size:24px;
    font-weight:700;
    color:#4e342e !important;
}

.nav-link{
    color:#555 !important;
    font-weight:500;
    margin-left:15px;
}

.nav-link:hover{
    color:#6d4c41 !important;
}

/* MOBILE MENU */

.navbar-toggler{
    border:none;
    box-shadow:none !important;
}

.navbar-collapse{
    margin-top:15px;
}

/* =========================
   HERO
========================= */

.hero{
    min-height:100vh;
    display:flex;
    align-items:center;
    background:linear-gradient(to right,#4e342e,#6d4c41);
    color:white;
    padding:80px 0;
}

.hero-content{
    max-width:600px;
}

.hero h1{
    font-size:64px;
    font-weight:800;
    line-height:1.1;
}

.hero p{
    margin-top:20px;
    font-size:18px;
    color:#f1f1f1;
}

.hero img{
    border-radius:30px;
    box-shadow:0 10px 30px rgba(0,0,0,0.2);
}

/* =========================
   BUTTON
========================= */

.btn-brown{
    background:#ffb74d;
    color:#222;
    padding:14px 28px;
    border:none;
    border-radius:14px;
    font-weight:700;
    transition:0.3s;
}

.btn-brown:hover{
    background:#ffa726;
    transform:translateY(-2px);
}

/* =========================
   SECTION
========================= */

.section{
    padding:80px 0;
}

.section-title{
    text-align:center;
    margin-bottom:50px;
}

.section-title h2{
    font-size:42px;
    font-weight:800;
    color:#4e342e;
}

.section-title p{
    color:#777;
    margin-top:10px;
}

/* =========================
   PRODUCT CARD
========================= */

.product-card{
    background:white;
    border:none;
    border-radius:24px;
    overflow:hidden;
    transition:0.3s;
    box-shadow:0 5px 25px rgba(0,0,0,0.07);
    height:100%;
}

.product-card:hover{
    transform:translateY(-5px);
}

.product-card img{
    width:100%;
    height:250px;
    object-fit:cover;
}

.product-card .card-body{
    padding:22px;
}

.product-card h5{
    font-size:22px;
    font-weight:700;
    margin-bottom:10px;
}

.product-card p{
    color:#777;
    font-size:15px;
    line-height:1.6;
}

.price{
    font-size:24px;
    color:#6d4c41;
    font-weight:800;
}

/* =========================
   FOOTER
========================= */

.footer{
    background:#3e2723;
    color:white;
    padding:50px 0;
    text-align:center;
}

.footer p{
    color:#ddd;
    margin-top:10px;
}

/* =========================
   TABLET
========================= */

@media(max-width:992px){

    .hero{
        text-align:center;
        min-height:auto;
        padding:100px 0;
    }

    .hero-content{
        margin:auto;
    }

    .hero h1{
        font-size:52px;
    }

    .hero img{
        margin-top:50px;
    }

}

/* =========================
   MOBILE
========================= */

@media(max-width:768px){

    .container{
        padding-left:16px;
        padding-right:16px;
    }

    .hero{
        padding:80px 0 60px;
    }

    .hero h1{
        font-size:38px;
    }

    .hero p{
        font-size:16px;
    }

    .hero img{
        margin-top:40px;
        border-radius:20px;
    }

    .btn-brown{
        width:100%;
        padding:14px;
    }

    .section{
        padding:60px 0;
    }

    .section-title h2{
        font-size:30px;
    }

    .product-card img{
        height:220px;
    }

    .product-card h5{
        font-size:20px;
    }

    .price{
        font-size:20px;
    }

    .navbar-nav{
        text-align:center;
    }

    .nav-link{
        margin:10px 0;
    }

}

/* =========================
   SMALL MOBILE
========================= */

@media(max-width:480px){

    .hero h1{
        font-size:32px;
    }

    .section-title h2{
        font-size:26px;
    }

    .product-card .card-body{
        padding:18px;
    }

}