/* FoodExpress - Professional Food Ordering Theme */
:root {
    --primary: #e85d04;
    --primary-dark: #dc2f02;
    --secondary: #6c757d;
    --dark: #212529;
    --light: #f8f9fa;
}

body {
    font-family: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--dark);
}

.navbar-brand {
    font-size: 1.5rem;
}

.hero-section {
    background: linear-gradient(135deg, #fff5eb 0%, #ffe4d1 50%, #ffd6ba 100%);
    position: relative;
    overflow: hidden;
}
.hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 60%;
    height: 200%;
    background: radial-gradient(circle, rgba(232,93,4,0.08) 0%, transparent 70%);
    pointer-events: none;
}

.hero-image-placeholder {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: 24px;
    padding: 4rem;
    color: white;
    box-shadow: 0 25px 50px -12px rgba(232, 93, 4, 0.25);
}

.hover-lift {
    transition: transform 0.2s, box-shadow 0.2s;
}
.hover-lift:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1) !important;
}

.product-card {
    transition: transform 0.2s, box-shadow 0.2s;
    border-radius: 12px;
    overflow: hidden;
}
.product-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.08) !important;
}

.btn-primary {
    background-color: var(--primary);
    border-color: var(--primary);
}
.btn-primary:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
}

.card {
    border-radius: 12px;
}

.badge {
    font-weight: 500;
}

.rating-input input { display: none; }
.rating-input label { cursor: pointer; }
.rating-input input:checked ~ label i,
.rating-input label:hover i { color: #ffc107 !important; }

/* Navbar */
.navbar-dark .navbar-nav .nav-link:hover {
    color: rgba(255,255,255,0.9) !important;
}

/* Footer */
footer a:hover {
    color: #fff !important;
}
