/* Newsletter Subscription Section */
.newsletter {
    background-color: #f9f9f9;
    padding: 40px 0;
    text-align: center;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

.newsletter h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #333;
}

.newsletter form {
    display: inline-block;
}

.newsletter input[type="email"] {
    padding: 10px;
    width: 300px;
    font-size: 16px;
    border: 1px solid #ddd;
    border-radius: 5px;
    margin-right: 10px;
}

.newsletter button[type="submit"] {
    padding: 10px 20px;
    font-size: 16px;
    background-color: #ff511a;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.newsletter button[type="submit"]:hover {
    background-color: #ff511a;
    box-shadow:5px 5px 5px #ff4f1a56;

}

/* Restaurant Recommendation Section */
h2 {
    text-align: center;
    color: #333;
    margin-top: 50px;
    margin-bottom: 20px;
}

.recommendation-form {
    max-width: 400px;
    margin: 0 auto;
    padding: 20px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
}

.recommendation-form label {
    display: block;
    margin-bottom: 10px;
    color: #555;
}

.recommendation-form select {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    font-size: 16px;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.recommendation-form button {
    width: 100%;
    padding: 12px;
    font-size: 16px;
    background-color: #ff511a;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.recommendation-form button:hover {
    background-color: #ff3c00;
    box-shadow:5px 5px 5px #ff4f1a56;
}

/* Restaurant List */
.restaurant-list {
    max-width: 800px;
    margin: 0 auto;
    margin-top: 30px;
}

.restaurant-item {
    background-color: #fff;
    border: 1px solid #ddd;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 15px;
    transition: box-shadow 0.3s;
}

.restaurant-item:hover {
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}

.restaurant-item h4 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #333;
}

.restaurant-item p {
    margin: 5px 0;
    color: #666;
}

.restaurant-item .rating {
    color: #ff511a;
    font-weight: bold;
}
.recommendation-form {
    background-color: #f7f7f7;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    max-width: 600px;
    margin: 20px auto;
}

.recommendation-form label {
    font-weight: 600;
    margin-right: 10px;
}

.recommendation-form select {
    padding: 5px;
    margin-bottom: 15px;
    border-radius: 5px;
    border: 1px solid #ccc;
    width: 100%;
}

.btn-recommend {
    background-color: #ff6f61;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-recommend:hover {
    background-color: #ff856d;
}
.movie-list-container{
    display: flex;
    justify-content: center;
}
.movie-list {
    width: 25%;
    height: 25%;
    
    margin-top: 20px;
    background-color: #f9f9f9;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.185);
}

.movie-item {
    margin-bottom: 15px;
}

.movie-item h4 a {
    color: #007bff;
    text-decoration: none;
    font-size: 18px;
    font-weight: bold;
}

.movie-item h4 a:hover {
    text-decoration: underline;
}

.movie-item p {
    margin: 5px 0;
}

.rating {
    color: #ff6f61;
    font-weight: bold;
}
