/* Base styles */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f8f9fa;
}

/* Navbar styles */
.navbar-brand {
    font-weight: bold;
    font-size: 1.5rem;
}

/* Card styles */
.card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.card-img-top {
    border-bottom: 1px solid rgba(0, 0, 0, 0.125);
}

/* Footer styles */
footer {
    margin-top: 50px;
}

footer a {
    color: #adb5bd;
    text-decoration: none;
}

footer a:hover {
    color: white;
    text-decoration: underline;
}

/* Form styles */
.order-form {
    background-color: white;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Alert styles */
.alert {
    margin-top: 20px;
}

/* Spinner styles */
.spinner-border {
    width: 3rem;
    height: 3rem;
}

/* Rating stars */
.bi-star-fill, .bi-star {
    font-size: 1.2rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .navbar-nav {
        margin-top: 10px;
    }
    
    .d-flex.me-3 {
        margin-bottom: 10px;
    }
}