body {
    margin: 0;
    font-family: Arial, sans-serif;
    color: #333;
    line-height: 1.6;
}

.nav-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    background-color: #333;
    color: white;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-bar .logo {
    width: 120px;
}

.nav-bar ul {
    display: flex;
    list-style: none;
    gap: 20px;
    padding: 0;
    margin: 0;
}

.nav-bar ul li a {
    color: white;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s ease;
}

.nav-bar ul li a:hover {
    color: #f0a500;
}

.nav-bar .btn_nav {
    color: white;
    text-decoration: none;
    padding: 5px 10px;
    border: 1px solid white;
    border-radius: 5px;
    margin-left: 15px;
    transition: 0.3s;
}

.nav-bar .btn_nav:hover {
    background-color: white;
    color: #333;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 20px;
}

.nav-menu a {
    color: white;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: #f0a500;
}

.nav-toggle {
    display: none;
    font-size: 24px;
    background: none;
    border: none;
    color: white;
    cursor: pointer;
}

.contact-button a {
    color: white;
    text-decoration: none;
    font-size: 16px;
}

.contact-button a:hover {
    color: #f0a500;
}


.nav-bar .nav-toggle {
    display: none;
    font-size: 24px;
    background: none;
    border: none;
    color: white;
    cursor: pointer;
}

@media (max-width: 768px) {
    .nav-bar ul {
        display: none;
        flex-direction: column;
        background: #333;
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
        z-index: 1000;
    }

    .nav-bar ul.show {
        display: flex;
    }


    .nav-menu {
        display: none;
        flex-direction: column;
        background-color: #333;
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
        z-index: 1000;
    }

    .nav-menu.show {
        display: flex;
    }

    .nav-toggle {
        display: block;
    }
}


.booking-section {
    background-size: cover;
    background-position: center;
    padding: 60px 20px;
    text-align: center;
    color: white;
}

.booking-container {
    max-width: 500px;
    margin: 0 auto;
    background: rgba(0, 0, 0, 0.7);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.booking-container h2 {
    margin-bottom: 20px;
    font-size: 24px;
    font-weight: bold;
}

.booking-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}


.booking-form .form-group {
    display: flex;
    flex-direction: column;
    /* Default vertical alignment */
    align-items: flex-start;
    gap: 5px;
    /* Space between label and input */
}

.booking-form .form-group input {
    padding: 10px;
    font-size: 14px;
    border: 1px solid #ddd;
    border-radius: 5px;
    width: 100%;
    /* Default full width */
    box-sizing: border-box;
    /* Ensure padding doesn't affect width */
}

.booking-form .form-group label {
    font-size: 14px;
    margin-bottom: 5px;
    color: white;
}

.booking-form .booking-button {
    background-color: #f0a500;
    color: white;
    padding: 10px 15px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.booking-form .booking-button:hover {
    background-color: #e08900;
}

@media (max-width: 480px) {
    .booking-container {
        width: 90%;
    }

    .booking-form .form-group {
        flex-direction: row;
        /* Horizontal alignment on larger screens */
        justify-content: space-between;
        align-items: center;
    }

    .booking-form .form-group label {
        width: 30%;
        /* Adjust as needed */
        text-align: right;
        padding-right: 10px;
    }

    .booking-form .form-group input {
        width: 65%;
        /* Adjust as needed */
    }

    .booking-form .booking-button {
        font-size: 14px;
    }
}

#map {
    width: 100%;
    height: 300px;
    margin-top: 20px;
    border-radius: 10px;
}

@media (max-width: 480px) {
    .booking-form .form-group label {
        font-size: 12px;
    }

    .booking-form .form-group input {
        font-size: 12px;
    }
}