/* booking.css */

body {
    margin: 0;
    font-family: Arial, sans-serif; /* Updated to match */
    line-height: 1.6;
    background-color: #f9f9f9; /* Updated to light background */
    color: #333; /* Updated to dark text */
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    background-color: #333; /* Updated to dark background */
    color: #fff; /* Updated to white text */
    border-bottom: 1px solid #444;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    text-transform: uppercase;
    color: #ff6f61; /* Highlight color */
}

nav .nav-links {
    list-style: none;
    display: flex;
    gap: 1rem;
    margin: 0;
    padding: 0;
}

nav .nav-links li {
    display: inline;
}

nav .nav-links a {
    text-decoration: none;
    color: #fff;
    font-size: 1rem;
    font-weight: bold;
    transition: color 0.3s;
}

nav .nav-links a:hover {
    text-decoration: underline; /* Hover effect */
}

.login-btn {
    font-weight: bold;
    color: #ff6f61; /* Highlight color for login */
}

main {
    padding: 2rem;
    text-align: center;
    background-color: #fff; /* Updated to light background */
}

.booking-section h1 {
    font-size: 2rem;
    margin-bottom: 2rem;
    text-transform: uppercase;
    color: #004c99; /* Updated heading color */
}

.service-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
}

.service-card {
    background-color: #f1f3f5; /* Updated to light card background */
    border-radius: 8px;
    padding: 1.5rem;
    width: 300px;
    text-align: left;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

.service-card h2 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #004c99; /* Updated to match color scheme */
}

.service-card p {
    margin: 0.5rem 0;
    color: #555; /* Subtle text color */
}

.service-card .price {
    font-size: 1.2rem;
    font-weight: bold;
    color: #ff6f61; /* Highlight color */
    margin-bottom: 1rem;
}

.add-btn {
    display: inline-block;
    background-color: #ff6f61; /* Highlight button color */
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    font-size: 1rem;
    font-weight: bold;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.add-btn:hover {
    background-color: #e65b54; /* Hover effect for button */
}

footer {
    text-align: center;
    padding: 1rem;
    background-color: #333; /* Dark footer background */
    color: #fff; /* Light footer text */
    margin-top: 2rem;
}

footer p {
    margin: 0;
    font-size: 0.9rem;
}
