﻿/* PageScripts/Booking.css */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f0f8ff;
    color: #333;
    animation: fadeIn 1s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

header {
    background-color: #fff; /* Changed to white */
    color: #11222c; /* Changed text color to match the theme */
    padding: 20px;
    text-align: center;
    animation: slideDown 1s ease-in-out;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }

    to {
        transform: translateY(0);
    }
}

header .logo-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header .logo {
    width: 120px;
    height: auto;
}

header h1 {
    margin: 10px 0;
    font-size: 2.5rem;
}

header p {
    margin: 0;
    font-size: 1.25rem;
}

.slider {
    position: relative;
    width: 100%;
    height: 300px; /* Adjust the height as needed */
    overflow: hidden;
}

.slide {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 1s ease-in-out, transform 1s ease-in-out;
}

    .slide.active {
        opacity: 1;
        transform: translateX(0);
    }

main {
    padding: 20px;
    padding-bottom: 150px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    background-color: white;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    animation: fadeIn 1s ease-in-out;
}

.booking-section {
    text-align: center;
}

.booking-panel {
    margin-bottom: 20px;
}

    .booking-panel .form-group {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        flex-wrap: wrap;
    }

    .booking-panel .form-item {
        flex: 1;
        margin: 0 10px;
    }

    .booking-panel label {
        display: block;
        margin-bottom: 5px;
    }

    .booking-panel input {
        width: 100%;
        padding: 10px;
        margin-bottom: 10px;
        border: 1px solid #ccc;
        border-radius: 4px;
        transition: border-color 0.3s ease-in-out;
    }

        .booking-panel input:focus {
            border-color: #11222c;
        }

.num-persons {
    width: 100%; /* Restore the width to 100% */
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    transition: border-color 0.3s ease-in-out;
}

    .num-persons:focus {
        border-color: #11222c;
    }

.btn {
    display: inline-block;
    font-weight: 400;
    color: #fff;
    text-align: center;
    vertical-align: middle;
    cursor: pointer;
    background-color: #11222c;
    border: 1px solid #11222c;
    padding: 10px 20px;
    font-size: 1rem;
    line-height: 1.5;
    border-radius: 4px;
    transition: background-color 0.3s ease-in-out, border-color 0.3s ease-in-out;
}

    .btn:hover {
        background-color: #0e1b24;
        border-color: #0c1720;
    }

.room-type-selection-panel {
    margin-top: 20px;
    animation: fadeIn 1s ease-in-out;
}

.room-type-list {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 150px; /* Add buffer below the room type list */
}

.room-type-card {
    width: 100%;
    max-width: 400px;
    margin-bottom: 20px;
    padding: 20px;
    background-color: white; /* Set background to white */
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    text-align: left;
}

    .room-type-card img {
        width: 100%;
        height: auto;
        border-radius: 8px;
        margin-bottom: 10px;
    }

.available-rooms-panel {
    margin-top: 20px;
    animation: fadeIn 1s ease-in-out;
}

.available-rooms-list {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.room-card {
    width: 100%;
    max-width: 400px;
    margin-bottom: 20px;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    text-align: left;
}

    .room-card img {
        width: 100%;
        height: auto;
        border-radius: 8px;
        margin-bottom: 10px;
    }

footer {
    background-color: #11222c;
    color: #fff;
    text-align: center;
    padding: 10px;
    position: fixed;
    width: 100%;
    bottom: 0;
    animation: slideUp 1s ease-in-out;
}

    footer a {
        color: #fff;
        text-decoration: none;
    }

        footer a:hover {
            text-decoration: underline;
        }

@keyframes slideUp {
    from {
        transform: translateY(100%);
    }

    to {
        transform: translateY(0);
    }
}


.terms-conditions, .gdpr-policy {
    font-family: Arial, sans-serif;
    margin: 20px;
    padding: 20px;
    background-color: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 5px;
}

    .terms-conditions h1, .gdpr-policy h1 {
        color: #333;
        font-size: 24px;
    }

    .terms-conditions h2, .gdpr-policy h2 {
        color: #555;
        font-size: 20px;
        margin-top: 15px;
    }

    .terms-conditions p, .gdpr-policy p {
        font-size: 14px;
        color: #666;
        line-height: 1.6;
    }
body {
    font-family: Arial, sans-serif;
}

.reservation-form-panel {
    background-color: #ffffff; /* Set background color to white */
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    max-width: 600px;
    margin: 20px auto;
}

    .reservation-form-panel h3 {
        margin-bottom: 20px;
        font-size: 24px;
        color: #333;
    }

    .reservation-form-panel .form-group {
        margin-bottom: 15px;
    }

    .reservation-form-panel label {
        display: block;
        margin-bottom: 5px;
        font-weight: bold;
    }

    .reservation-form-panel input[type="text"],
    .reservation-form-panel input[type="email"],
    .reservation-form-panel input[type="tel"],
    .reservation-form-panel input[type="date"],
    .reservation-form-panel input[type="number"] {
        width: 100%;
        padding: 10px;
        border: 1px solid #ccc;
        border-radius: 5px;
        font-size: 16px;
    }

    .reservation-form-panel input[type="checkbox"] {
        margin-right: 10px;
    }

    .reservation-form-panel .btn {
        display: inline-block;
        padding: 10px 20px;
        font-size: 16px;
        color: #fff;
        background-color: #007bff;
        border: none;
        border-radius: 5px;
        cursor: pointer;
        text-align: center;
    }

    .reservation-form-panel .btn-secondary {
        background-color: #6c757d;
    }

    .reservation-form-panel .btn:hover {
        background-color: #0056b3;
    }

    .reservation-form-panel .btn-secondary:hover {
        background-color: #5a6268;
    }

    .reservation-form-panel a {
        color: #007bff;
        text-decoration: none;
    }

        .reservation-form-panel a:hover {
            text-decoration: underline;
        }

.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.5); /* Diffuse back panel */
}

.modal-content {
    background-color: #fff;
    margin: 15% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
    max-width: 500px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

    .close:hover,
    .close:focus {
        color: black;
        text-decoration: none;
        cursor: pointer;
    }