@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

body {
    font-family: 'Poppins', sans-serif;
    background-color: #fcf7ec; /* হালকা হলুদ/ক্রিম ব্যাকগ্রাউন্ড */
    color: #333;
}

/* Navbar & Offcanvas Mobile Menu Styles */
.navbar {
    background-color: #ffffff !important;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}
.navbar-brand {
    font-weight: 700;
    color: #ffb703 !important;
    font-size: 24px;
}
.nav-link {
    font-weight: 500;
    color: #333 !important;
    border-radius: 8px;
    transition: all 0.3s ease;
}

/* ডেস্কটপ ও মোবাইলে মেন্যুর হোভার ডিজাইন */
.nav-link:hover {
    color: #ffb703 !important;
    background-color: rgba(255, 183, 3, 0.1); /* হালকা ব্যাকগ্রাউন্ড কালার */
    transform: translateX(5px); /* মোবাইলে সাইডে একটু সরে যাবে */
}

@media (min-width: 992px) {
    .nav-link:hover {
        transform: translateY(-2px); /* ডেস্কটপে উপরে একটু উঠবে */
    }
}

/* মোবাইলের স্লাইড মেন্যুর কালার */
.offcanvas {
    background-color: #ffffff;
}

/* Custom Buttons */
.btn-primary {
    background-color: #ffb703;
    border: none;
    color: #fff;
    border-radius: 25px;
    padding: 10px 24px;
    font-weight: 600;
    transition: all 0.3s ease;
}
.btn-primary:hover {
    background-color: #e09f00;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(224, 159, 0, 0.3);
}
.btn-dark-custom {
    background-color: #111;
    color: #fff;
    border-radius: 25px;
    padding: 12px 24px;
    font-weight: 600;
    border: none;
    transition: all 0.3s ease;
}
.btn-dark-custom:hover {
    background-color: #333;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Authentication Cards */
.auth-wrapper {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
}
.auth-card {
    border-radius: 30px;
    border: none;
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    overflow: hidden;
    background: #fff;
}
.auth-header {
    background-color: #ffb703;
    padding: 40px 20px 30px;
    text-align: center;
    border-radius: 0 0 40px 40px;
    color: #fff;
}
.form-control-custom {
    border-radius: 15px;
    background: #f8f9fa;
    border: 1px solid #eee;
    padding: 12px 20px;
}
.form-control-custom:focus {
    box-shadow: none;
    border-color: #ffb703;
    background: #fff;
}

/* Product Cards */
.card {
    border-radius: 20px;
    border: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1) !important;
}
.card-img-top {
    border-radius: 20px 20px 0 0;
    object-fit: cover;
    height: 200px;
}