/* style.css */

/* General Styling */
body {
    font-family: 'Be Vietnam Pro', sans-serif;
    background-color: #f8f9fa;
}

/* Header */
.header {
    transition: all 0.3s ease-in-out;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('https://placehold.co/1920x600/555/fff?text=Delicious+Food+Banner') no-repeat center center;
    background-size: cover;
    height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-section h1 {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

/* Product Card */
.product-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175) !important;
}

.product-card .card-img-top {
    aspect-ratio: 3 / 2;
    object-fit: cover;
}

/* Product Detail Page */
.thumb-image {
    cursor: pointer;
    border: 2px solid transparent;
    transition: border-color 0.3s ease;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.thumb-image.active, .thumb-image:hover {
    border-color: #0d6efd; /* Bootstrap primary color */
}

.rating-stars i {
    cursor: pointer;
}

/* Footer */
footer a {
    text-decoration: none;
    transition: color 0.2s ease;
}

footer a:hover {
    color: #7c4dff !important;
}
