

/*=============================
    GOOGLE FONT
=============================*/
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:'Poppins',sans-serif;
    background:#f8f8f8;
    color:#333;
    overflow-x:hidden;
}

/*=============================
        NAVBAR
=============================*/

.custom-nav{
    background:rgba(0,0,0,.75);
    backdrop-filter:blur(10px);
    transition:.4s;
    padding:15px 0;
}

.custom-nav .nav-link{
    color:#fff;
    margin:0 10px;
    font-weight:500;
}

.custom-nav .nav-link:hover{
    color:#ffc107;
}

.navbar-brand{
    letter-spacing:1px;
}

/*=============================
        HERO
=============================*/

.hero{
    min-height:100vh;
    background:linear-gradient(rgba(0,0,0,.75),rgba(0,0,0,.75)),
    url("https://images.unsplash.com/photo-1518546305927-5a555bb7020d?w=1800");
    background-size:cover;
    background-position:center;
    display:flex;
    align-items:center;
    color:#fff;
}

.hero h1{
    font-size:60px;
    font-weight:700;
    line-height:1.2;
}

.hero p{
    margin:25px 0;
    font-size:18px;
    color:#ddd;
}

.hero-img{
    width:90%;
    border-radius:20px;
    box-shadow:0 30px 60px rgba(0,0,0,.4);
}

/*=============================
    BUTTONS
=============================*/

.btn-warning{
    background:#d4af37;
    border:none;
    color:#fff;
    font-weight:600;
}

.btn-warning:hover{
    background:#b99218;
    color:#fff;
}

/*=============================
    SECTION TITLE
=============================*/

section{
    padding:80px 0;
}

section h2{
    font-weight:700;
    font-size:42px;
    margin-bottom:15px;
}

section p{
    color:#777;
}

/*=============================
CATEGORY
=============================*/

.category-card{
    background:#fff;
    border-radius:20px;
    text-align:center;
    overflow:hidden;
    transition:.4s;
    box-shadow:0 15px 35px rgba(0,0,0,.08);
}

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

.category-card img{
    width:100%;
    height:250px;
    object-fit:cover;
}

.category-card h5{
    padding:20px;
    font-weight:600;
}

/*=============================
PRODUCT
=============================*/

.featured{
    background:#f4f4f4;
}

.product-card{
    background:#fff;
    border-radius:20px;
    overflow:hidden;
    transition:.4s;
    box-shadow:0 15px 30px rgba(0,0,0,.08);
}

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

.product-card img{
    width:100%;
    height:260px;
    object-fit:cover;
}

.product-card h5{
    padding-top:20px;
    text-align:center;
    font-weight:600;
}

.product-card h4{
    text-align:center;
    color:#d4af37;
    margin:15px 0;
    font-weight:700;
}

.product-card .btn{
    border-radius:0;
}

/*=============================
WHY US
=============================*/

.why-box{
    background:#fff;
    padding:35px;
    border-radius:20px;
    transition:.4s;
    text-align:center;
}

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

.why-box i{
    font-size:45px;
    color:#d4af37;
    margin-bottom:20px;
}

.why-box h4{
    font-weight:600;
}

/*=============================
FOOTER
=============================*/

footer{
    background:#111;
    color:#ddd;
    padding:60px 0;
}

footer h4{
    color:#fff;
    margin-bottom:20px;
}

footer ul{
    list-style:none;
    padding:0;
}

footer li{
    margin:10px 0;
}

footer a{
    color:#bbb;
    text-decoration:none;
}

footer a:hover{
    color:#d4af37;
}

.social a{
    display:inline-block;
    width:40px;
    height:40px;
    background:#222;
    color:#fff;
    line-height:40px;
    text-align:center;
    border-radius:50%;
    margin-right:10px;
    transition:.3s;
}

.social a:hover{
    background:#d4af37;
}

/*=============================
RESPONSIVE
=============================*/

@media(max-width:991px){

.hero{
    text-align:center;
    padding-top:120px;
}

.hero h1{
    font-size:42px;
}

.hero-img{
    margin-top:40px;
}

}

@media(max-width:768px){

.hero h1{
    font-size:34px;
}

section h2{
    font-size:30px;
}

.hero p{
    font-size:16px;
}

.category-card img,
.product-card img{
    height:220px;
}

}

@media(max-width:576px){

.hero{
    padding:120px 0 60px;
}

.hero h1{
    font-size:28px;
}

.btn{
    margin-bottom:10px;
}

}