/* Reset and base styles */

/* Staff section container */
.drmariia-booking-section {
    background-color: #fffdd0; /* Cream color */
    padding: 40px 20px;
    margin: 2vh 0;
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

/* Background for the entire page */
body {
    background: url('https://images.unsplash.com/photo-1576091160550-2173dba999ef?ixlib=rb-4.0.3&auto=format&fit=crop&w=1350&q=80') no-repeat center center fixed;
    background-size: cover;
    min-height: 100vh;
    color: #333;
}

/* Top menu link styling */
.menu-item {
    display: inline-block;
    margin: 0 10px;
}

.booking-menu-link {
    color: #fff;
    text-decoration: none;
    font-size: 1.1em;
    padding: 10px 15px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.booking-menu-link:hover {
    background-color: #17a2b8;
    color: #fff;
    border-radius: 5px;
}

/* Container for the booking form */
.drmariia-booking-wrapper {
    width: 100%;
    max-width: 640px;
    margin: 2vh auto;
}

/* Separator styles */
.drmariia-separator {
    border: none;
    height: 2px;
    background: linear-gradient(to right, #2c3e50, #17a2b8, #2c3e50);
    margin: 2vh 0;
    width: 100%;
}

.drmariia-separator-top {
    border-radius: 5px 5px 0 0;
}

.drmariia-separator-bottom {
    border-radius: 0 0 5px 5px;
}

/* Booking form container */
.drmariia-booking {
    background-color: rgba(255, 255, 255, 0.9);
    padding: 3vh 3vw;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
}

/* Heading */
.drmariia-booking h2 {
    font-size: clamp(1.2em, 4vw, 1.5em);
    margin-bottom: 2vh;
    color: #2c3e50;
    text-align: center;
}

/* Success and error messages */
.drmariia-booking .success {
    color: #28a745;
    text-align: center;
    margin-bottom: 2vh;
    font-weight: bold;
}

.drmariia-booking .error {
    color: #dc3545;
    text-align: center;
    margin-bottom: 2vh;
    font-weight: bold;
}

/* Form styling */
.drmariia-booking form {
    display: flex;
    flex-direction: column;
    gap: 1.5vh;
}

.drmariia-booking label {
    font-weight: bold;
    margin-bottom: 0.5vh;
    color: #444;
}

.drmariia-booking input,
.drmariia-booking select,
.drmariia-booking textarea {
    width: 100%;
    padding: 1vh 1vw;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: clamp(0.9em, 2.5vw, 1em);
    background-color: #f9f9f9;
}

/* Textarea specific */
.drmariia-booking textarea {
    resize: vertical;
    min-height: 10vh;
}

/* Submit button */
.drmariia-booking button {
    background-color: #17a2b8;
    color: #fff;
    padding: 1.5vh 1vw;
    border: none;
    border-radius: 5px;
    font-size: clamp(1em, 3vw, 1.1em);
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.drmariia-booking button:hover {
    background-color: #138496;
}

/* Responsive adjustments */
@media (max-width: 480px) {
    .drmariia-booking {
        padding: 2vh 2vw;
    }
    .drmariia-booking-wrapper {
        max-width: 100%;
        padding: 0 2vw;
    }
}
