body{
    font-family: 'Poppins', sans-serif;
    background:#f5f5f5;
    overflow-x:hidden;
}

/* NAVBAR */

.navbar{
    background:#000;
    padding:15px 0;
}

.navbar-brand{
    color:gold !important;
    font-size:32px;
    font-weight:700;
    letter-spacing:2px;
}

.nav-link{
    color:white !important;
    margin-left:15px;
    transition:0.3s;
}

.nav-link:hover{
    color:gold !important;
}

/* HERO */

.hero{
    height:100vh;
    background:
    linear-gradient(rgba(0,0,0,0.6),
    rgba(0,0,0,0.6)),
    url('../images/banner.jpg');

    background-size:cover;
    background-position:center;

    display:flex;
    justify-content:center;
    align-items:center;

    text-align:center;
    color:white;
}

.hero h1{
    font-size:80px;
    font-weight:700;
    letter-spacing:5px;
}

.hero p{
    font-size:22px;
    margin-top:10px;
}

.btn-gold{
    background:gold;
    color:black;
    padding:14px 30px;
    border:none;
    border-radius:40px;
    font-weight:600;
    transition:0.3s;
}

.btn-gold:hover{
    transform:translateY(-3px);
    background:#ffd700;
}

/* PRODUCTS */

.card{
    border:none;
    border-radius:20px;
    overflow:hidden;
    transition:0.4s;
}

.card:hover{
    transform:translateY(-10px);
}

.card img{
    transition:0.4s;
}

.card:hover img{
    transform:scale(1.05);
}

.card-body{
    padding:25px;
}

.card-title{
    font-size:22px;
    font-weight:600;
}

.btn-dark{
    border-radius:30px;
    padding:10px 20px;
}

/* SECTION TITLE */

section h2{
    font-size:42px;
    font-weight:700;
}

/* FOOTER */

.footer{
    background:#000;
    color:white;
    padding:50px 0;
    margin-top:50px;
}

.footer h4{
    color:gold;
}

.footer a{
    color:white;
    text-decoration:none;
}

.footer a:hover{
    color:gold;
}

/* MOBILE */

@media(max-width:768px){

    .hero h1{
        font-size:50px;
    }

    .hero p{
        font-size:18px;
    }

    .navbar-brand{
        font-size:26px;
    }

}