*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:Arial, sans-serif;
    background:#fff;
    color:#222;
}

/* NAVBAR */

.navbar{
    background:#000;
    padding:15px 0;
}

.navbar-brand{
    color:#fff !important;
    font-size:28px;
    font-weight:bold;
}

.nav-link{
    color:#fff !important;
    margin-left:15px;
    transition:0.3s;
}

.nav-link:hover{
    color:#ff4f81 !important;
}

/* HERO SECTION */

.hero{
    height:90vh;
    background:url('https://images.unsplash.com/photo-1496747611176-843222e1e57c?q=80&w=1200') center center/cover no-repeat;
    display:flex;
    justify-content:center;
    align-items:center;
    text-align:center;
    color:white;
    padding:20px;
}

.hero-content{
    background:rgba(0,0,0,0.5);
    padding:40px;
    border-radius:10px;
}

.hero h1{
    font-size:70px;
    font-weight:bold;
    margin-bottom:20px;
}

.hero p{
    font-size:22px;
    margin-bottom:25px;
}

.btn-shop{
    background:#ff4f81;
    color:white;
    padding:14px 35px;
    border:none;
    border-radius:5px;
    font-size:18px;
    transition:0.3s;
}

.btn-shop:hover{
    background:#e63e6d;
}

/* SECTION TITLE */

.section-title{
    text-align:center;
    font-size:42px;
    font-weight:bold;
    margin:70px 0 40px;
}

/* PRODUCT CARD */

.card{
    border:none;
    overflow:hidden;
    transition:0.3s;
}

.card:hover{
    transform:translateY(-8px);
}

.card img{
    height:380px;
    object-fit:cover;
}

.card-body{
    padding:20px;
}

.card-body h4{
    font-size:24px;
    margin-bottom:10px;
}

.card-body p{
    color:#666;
}

.price{
    color:#ff4f81 !important;
    font-size:24px;
    font-weight:bold;
    margin:15px 0;
}

.btn-cart{
    width:100%;
    background:#000;
    color:white;
    border:none;
    padding:12px;
    border-radius:5px;
    transition:0.3s;
}

.btn-cart:hover{
    background:#ff4f81;
}

/* ABOUT SECTION */

.about-section{
    padding:70px 0;
}

.about-section img{
    border-radius:10px;
}

.about-section h3{
    font-size:36px;
    margin-bottom:20px;
}

.about-section p{
    font-size:18px;
    line-height:1.8;
    color:#555;
}

/* FOOTER */

.footer{
    background:#111;
    color:white;
    text-align:center;
    padding:50px 20px;
    margin-top:60px;
}

.footer h3{
    margin-bottom:15px;
}

.footer p{
    color:#ccc;
    margin-bottom:10px;
}

/* RESPONSIVE */

@media(max-width:768px){

.hero h1{
    font-size:42px;
}

.hero p{
    font-size:18px;
}

.section-title{
    font-size:32px;
}

.card img{
    height:300px;
}

}