@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;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Poppins',sans-serif;
    background: linear-gradient(135deg,#ffe5ec,#e0f7ff,#fff4d6);
    overflow-x:hidden;
}

/* NAVBAR */

.navbar{
    background: rgba(255,255,255,0.25) !important;
    backdrop-filter: blur(12px);
    padding:18px 0;
    box-shadow:0 8px 25px rgba(0,0,0,0.08);
}

.navbar-brand{
    font-size:32px;
    font-weight:800;
    color:#ff4d6d !important;
}

.nav-link{
    color:#1f2937 !important;
    font-weight:600;
    margin-left:20px;
    position:relative;
    transition:.3s;
}

.nav-link:hover{
    color:#ff4d6d !important;
    transform:translateY(-3px);
}

/* HERO */

.hero-section{
    height:100vh;
    background:
    linear-gradient(rgba(0,0,0,0.35),
    rgba(0,0,0,0.35)),
    url("https://images.unsplash.com/photo-1504674900247-0877df9cc836");

    background-size:cover;
    background-position:center;

    display:flex;
    justify-content:center;
    align-items:center;
    text-align:center;
}

.hero-section h1{
    font-size:72px;
    font-weight:800;
    color:white;
    animation:slideDown 1s ease;
}

.hero-section p{
    color:white;
    font-size:22px;
    margin:20px 0;
    animation:fadeIn 1.4s ease;
}

.btn-warning{
    border:none;
    background:linear-gradient(135deg,#ff4d6d,#ff9f1c);
    color:white;
    padding:16px 40px;
    border-radius:50px;
    font-size:18px;
    font-weight:600;
    transition:.4s;
    box-shadow:0 10px 25px rgba(255,77,109,.3);
}

.btn-warning:hover{
    transform:translateY(-6px) scale(1.05);
}

/* SECTION */

section{
    padding:100px 0;
}

section h2{
    text-align:center;
    font-size:55px;
    font-weight:800;
    color:#1f2937;
    margin-bottom:50px;
}

/* FILTER BUTTONS */

.filter-btn{
    border-radius:50px;
    padding:14px 32px;
    margin:10px;
    background:white;
    border:2px solid #ff4d6d;
    color:#ff4d6d;
    font-weight:600;
    transition:.4s;
}

.filter-btn:hover{
    background:#ff4d6d;
    color:white;
    transform:translateY(-4px);
}

.filter-btn.active{
    background:#ff4d6d;
    color:white;
}

/* MENU CARDS */

.card{
    border:none;
    border-radius:30px;
    overflow:hidden;
    background:rgba(255,255,255,0.55);
    backdrop-filter:blur(18px);
    box-shadow:0 15px 35px rgba(0,0,0,.1);
    transition:.5s;
}

.card:hover{
    transform:
    translateY(-12px)
    rotate(-1deg)
    scale(1.03);
}

.card img{
    height:240px;
    object-fit:cover;
}

.card-body{
    padding:25px;
}

.card-title{
    font-size:24px;
    font-weight:700;
}

.card-text{
    color:#6b7280;
}

.badge{
    padding:10px 18px;
    border-radius:30px;
    font-size:14px;
}

/* ADD TO CART BUTTON */

.add-btn{
    width:100%;
    border:none;
    border-radius:16px;
    padding:14px;
    background:linear-gradient(
    135deg,
    #8338ec,
    #ff006e
    );
    color:white;
    font-size:18px;
    font-weight:600;
    transition:.4s;
}

.add-btn:hover{
    transform:scale(1.05);
}

/* CART */

#cart-items .card{
    border-radius:25px;
}

.cart-box{
    background:white;
    border-radius:25px;
    padding:30px;
    box-shadow:0 12px 30px rgba(0,0,0,.1);
}

/* FORM */

form{
    background:rgba(255,255,255,.55);
    backdrop-filter:blur(16px);
    padding:40px;
    border-radius:30px;
    box-shadow:0 10px 30px rgba(0,0,0,.1);
}

.form-control{
    border:none;
    border-radius:18px;
    padding:16px;
    background:#f8fafc;
}

.form-control:focus{
    box-shadow:0 0 0 4px rgba(255,77,109,.2);
}

/* FOOTER */

footer{
    background:#111827;
    color:white;
    padding:25px;
}

/* ANIMATIONS */

@keyframes slideDown{
    from{
        opacity:0;
        transform:translateY(-50px);
    }
    to{
        opacity:1;
        transform:translateY(0);
    }
}

@keyframes fadeIn{
    from{
        opacity:0;
    }
    to{
        opacity:1;
    }
}

/* MOBILE */

@media(max-width:768px){

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

.hero-section p{
    font-size:18px;
}

section h2{
    font-size:38px;
}

<<<<<<< HEAD
}
=======
}
>>>>>>> a67e3425abfec1a3fda009a0cc7858aeb11c76b7
