.food-container {
    background-color: #f8f8f8;
    padding: 60px 0;
}

.food-card {
    width: 100%;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    background: #fff;
    color: #333;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    padding: 20px; /* Padding added to make space for content */
}

.food-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.food-card .food-image {
    position: relative;
    overflow: hidden;
    border-radius: 0 0 0 45px;
    padding-bottom: 15px; /* Some space below the image */
    display: flex;
    justify-content: center;  /* Center the image horizontally */
    align-items: center;     /* Center the image vertically */
}

.food-card .food-image img {
    width: 100%;  /* Scale the image width to fit the container */
    height: auto;  /* Maintain aspect ratio of the image */
    object-fit: contain; /* Ensure the full image is visible, without distortion */
    max-height: 250px;  /* Set a maximum height for the image */
    display: block;
    margin: 0 auto;  /* Center the image horizontally */
    border-radius: 0 0 0 45px;
}

/* If the image is vertical (taller than it is wide), adjust padding to ensure it's visible without cutting off */
.food-card .food-image img.vertical-image {
    max-height: none; /* Remove max-height limitation */
    height: 100%; /* Let the image grow vertically to fill space */
    padding-left: 10px; /* Add padding to prevent image from touching edges */
    padding-right: 10px; /* Add padding to prevent image from touching edges */
}

.food-card .food-info {
    padding: 25px;
    position: relative;
    z-index: 1;
}

.food-card .food-info h4 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    color: #222;
}

.food-card .food-info .description {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.food-card .food-info .price {
    font-size: 1.5rem;
    font-weight: bold;
    color: #ff9900;
    margin-bottom: 20px;
}

.food-card .food-info .order-btn {
    padding: 12px 25px;
    background-color: #00bcd4;
    color: #fff;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: 600;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.food-card .food-info .order-btn:hover {
    background-color: #009cb3;
    transform: translateY(-2px);
}

.btn-hero {
    display: inline-block;
    margin-top: 30px;
    padding: 15px 40px;
    background: linear-gradient(90deg, #00bcd4, #2196f3);
    color: white;
    font-size: 1.25rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    box-shadow: 0 5px 20px rgba(0, 188, 212, 0.6);
    transition: background 0.3s ease, transform 0.3s ease;
}

.btn-hero:hover {
    background: linear-gradient(90deg, #2196f3, #00bcd4);
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 8px 30px rgba(33, 150, 243, 0.8);
}

.navbar {
    background-color: #343a40 !important; /* Dark background for navbar */
}

.navbar-brand {
    color: #fff !important;
    font-weight: bold;
}

.navbar-nav .nav-link {
    color: #adb5bd !important;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: #fff !important;
}

footer {
    background-color: #343a40 !important; /* Dark background for footer */
}

footer a {
    text-decoration: none;
}

footer a:hover {
    color: #00bcd4 !important; /* Highlight on hover */
}
