/* ===========================================
   VELS ENTERPRISES
   Premium Organic Foods Website
=========================================== */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins',sans-serif;
}

html{
    scroll-behavior:smooth;
}

body{
    background:#F8FDF7;
    color:#333;
}

/* ================= NAVBAR ================= */

.navbar{
    padding:18px 0;
    transition:.3s;
}

.navbar-brand{
    font-size:30px;
    font-weight:700;
    color:#2E7D32 !important;
}

.nav-link{
    font-weight:500;
    margin-left:20px;
    color:#444 !important;
    transition:.3s;
}

.nav-link:hover{
    color:#2E7D32 !important;
}

.btn-success{
    background:#2E7D32;
    border:none;
    border-radius:40px;
    padding:12px 25px;
}

.btn-success:hover{
    background:#1B5E20;
}

.btn-outline-success{
    border-radius:40px;
    padding:12px 25px;
}

/* ================= HERO ================= */

.hero{

    padding:90px 0;

    background:linear-gradient(
    rgba(248,253,247,.9),
    rgba(248,253,247,.9)),
    url("../images/hero.jpg");

    background-size:cover;
    background-position:center;

}

.hero h1{

    font-size:58px;

    font-weight:800;

    color:#1B5E20;

}

.hero p{

    margin:25px 0;

    font-size:20px;

    color:#666;

}

.hero img{

    max-height:500px;

    animation:float 4s infinite ease-in-out;

}

/* ================= PRODUCTS ================= */

.card{

    border:none;

    border-radius:18px;

    overflow:hidden;

    transition:.4s;

}

.card:hover{

    transform:translateY(-10px);

    box-shadow:0 20px 40px rgba(0,0,0,.15);

}

.card img{

    height:260px;

    object-fit:cover;

}

.card-body{

    padding:30px;

}

.card h5{

    font-weight:700;

    color:#2E7D32;

}

.card p{

    color:#666;

}

/* ================= SECTION ================= */

section{

    padding:70px 0;

}

h2{

    color:#1B5E20;

    font-weight:700;

}

.text-success{

    color:#2E7D32 !important;

}

/* ================= FOOTER ================= */

footer{

    background:#1B5E20;

    color:white;

}

footer h5{

    font-weight:700;

}

footer p{

    opacity:.9;

}

/* ================= ANIMATION ================= */

@keyframes float{

0%{

transform:translateY(0px);

}

50%{

transform:translateY(-15px);

}

100%{

transform:translateY(0px);

}

}

/* ================= RESPONSIVE ================= */

@media(max-width:992px){

.hero{

text-align:center;

}

.hero h1{

font-size:42px;

}

.hero img{

margin-top:40px;

}

}

@media(max-width:576px){

.hero h1{

font-size:34px;

}

.hero p{

font-size:17px;

}

.navbar-brand{

font-size:24px;

}

.btn-success,
.btn-outline-success{

width:100%;
margin-bottom:15px;

}

}