/* General Styles */
body {
    background: linear-gradient(135deg, #1e3c72, #2a5298);
    font-family: 'Montserrat', sans-serif;
    color: white;
}

/* Navbar */
.navbar {
    background: rgba(0, 0, 0, 0.7);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.navbar-brand {
    font-size: 1.8rem;
    font-weight: bold;
}

/* Hero Section */
.hero {
    text-align: center;
    padding: 80px 0;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    backdrop-filter: blur(10px);
    margin: 20px;
}

/* Restaurant Cards */
.restaurant-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    text-align: center;
    padding: 15px;
}

.restaurant-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.3);
}

.restaurant-card img {
    width: 100%;
    height: 230px;
    object-fit: cover;
    border-radius: 10px;
}

.restaurant-info {
    padding: 15px;
}

.restaurant-name {
    font-size: 1.4rem;
    font-weight: bold;
    margin-bottom: 5px;
}

.rating {
    font-size: 1.2rem;
    color: #ffcc00;
    font-weight: bold;
}

/* View Menu Button */
.btn-outline-light {
    font-size: 1rem;
    font-weight: bold;
    border-radius: 8px;
    padding: 10px 15px;
    transition: all 0.3s;
}

.btn-outline-light:hover {
    background: #ffcc00;
    color: black;
}

/* Footer */
.footer {
    background: rgba(0, 0, 0, 0.6);
    text-align: center;
    padding: 15px 0;
    font-size: 1rem;
    margin-top: 50px;
    border-radius: 8px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .restaurant-card img {
        height: 200px;
    }
    .hero {
        padding: 50px 20px;
    }
}

@media (max-width: 576px) {
    .restaurant-card img {
        height: 180px;
    }
    .restaurant-name {
        font-size: 1.2rem;
    }
    .rating {
        font-size: 1rem;
    }
    .btn-outline-light {
        font-size: 0.9rem;
    }
}
