/* General Page Styles for Book Dining */
body {
    font-family: 'Open Sans', sans-serif;
    color: #333;
    background-color: #f9f9f9; /* Light background for the page */
}

/* Hero Section for Booking Page */
.booking-hero-section {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../img/dining/booking_hero.jpg'); /* Placeholder image */
    background-size: cover;
    background-position: center;
    padding: 100px 0;
    color: #fff;
    text-align: center;
}

.booking-hero-section h1 {
    font-family: 'Lora', serif;
    font-size: 3.5rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.booking-hero-section p.lead {
    font-size: 1.3rem;
    margin-bottom: 30px;
}

/* Main Booking Content Area */
.booking-content-area {
    padding: 60px 0;
}

.booking-form-container {
    background-color: #fff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.booking-form-container h2 {
    font-family: 'Lora', serif;
    color: #B18F40; /* Accent color */
    margin-bottom: 30px;
    text-align: center;
    font-size: 2.5rem;
}

.form-group label {
    font-weight: 600;
    margin-bottom: .5rem;
    color: #555;
}

.form-control {
    border-radius: 5px;
    border: 1px solid #ddd;
    padding: .75rem 1rem;
    height: auto;
}

.form-control:focus {
    border-color: #B18F40;
    box-shadow: 0 0 0 0.2rem rgba(177, 143, 64, 0.25);
}

.btn-submit-booking {
    background-color: #B18F40;
    border-color: #B18F40;
    color: #fff;
    padding: 12px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 5px;
    transition: background-color 0.3s ease, border-color 0.3s ease;
}

.btn-submit-booking:hover {
    background-color: #917231; /* Darker shade on hover */
    border-color: #917231;
    color: #fff;
}

/* Dining Ambiance Section */
.dining-ambiance-section {
    padding: 40px 0;
    text-align: center;
}

.dining-ambiance-section h3 {
    font-family: 'Lora', serif;
    color: #333;
    margin-bottom: 30px;
    font-size: 2rem;
}

.ambiance-gallery img {
    border-radius: 8px;
    margin-bottom: 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    max-width: 100%;
    height: auto;
}

.ambiance-gallery img:hover {
    transform: scale(1.03);
    box-shadow: 0 8px 15px rgba(0,0,0,0.15);
}

/* Contact for Assistance */
.booking-assistance {
    text-align: center;
    margin-top: 40px;
    padding: 20px;
    background-color: #e9ecef;
    border-radius: 8px;
}

.booking-assistance p {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.booking-assistance a {
    color: #B18F40;
    font-weight: 600;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .booking-hero-section h1 {
        font-size: 2.8rem;
    }
    .booking-hero-section p.lead {
        font-size: 1.1rem;
    }
    .booking-form-container h2 {
        font-size: 2rem;
    }
    .booking-form-container {
        padding: 30px;
    }
}
