/* static/css/style.css - SoilParty Food Court */
/* Uses Bootstrap 5.3.3 as base, custom styles below */

body {
    background: #f8f9fa;
}

/* Override Bootstrap primary to match SOIL PARTY blue */
.btn-primary {
    background-color: #0d6efd;
    border-color: #0d6efd;
}

/* Card hover effect matching soilparty_all */
.item-card {
    transition: transform .15s ease, box-shadow .15s ease;
}
.item-card:focus-within,
.item-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 .5rem 1rem rgba(0,0,0,.08);
}

/* Menu page styles */
.menu-page {
    padding-bottom: 180px;
}

.menu-item {
    transition: transform .15s ease, box-shadow .15s ease;
}
.menu-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 .5rem 1rem rgba(0,0,0,.08);
}

/* Sticky cart summary */
.cart-summary {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1030;
}

/* Brand header gradient matching soilparty_all */
.brand-hero {
    background: linear-gradient(135deg, #f8fbfd, #eef6fb);
}
