/* Reset some default styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Body styling */
body {
    font-family: 'Open Sans', sans-serif;
    background-color: #f4f7fc;
    color: #333;
}

/* Header Styling */
header {
    background-color: #2c3e50;
    color: #fff;
    padding: 20px 0;
    position: relative;
    z-index: 100;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Align the logo on the left */
.logo {
    max-height: 50px;
}

/* Navbar menu is centered */
#navbar {
    flex: 2;
    text-align: center;
}

header nav ul {
    list-style-type: none;
    display: flex;
}

header nav ul li {
    margin-left: 20px;
}

header nav ul li a {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
}

/* Menu icon for mobile */
.menu-icon {
    font-size: 30px;
    cursor: pointer;
    margin-left: auto; /* Aligns the icon to the right */
    display: none; /* Hidden by default */
}

/* Booking Form Styling */
.form-container {
    max-width: 600px;
    margin: 50px auto;
    padding: 30px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.form-container:hover {
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

.form-container h1 {
    text-align: center;
    margin-bottom: 20px;
    font-size: 32px;
    color: #2c3e50;
}

.booking-form .form-group {
    margin-bottom: 20px;
}

.booking-form label {
    font-weight: 600;
    display: block;
    margin-bottom: 5px;
    font-size: 16px;
    color: #333;
}

.booking-form input {
    width: 100%;
    padding: 12px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 8px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.booking-form input:focus {
    border-color: #3498db;
    box-shadow: 0 0 8px rgba(52, 152, 219, 0.3);
}

.booking-form .submit-btn {
    width: 100%;
    padding: 15px;
    background-color: #3498db;
    color: white;
    font-size: 18px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.booking-form .submit-btn:hover {
    background-color: #2980b9;
}

/* Table Styling */
table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

table th, table td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid #ddd;
    font-size: 16px;
}

table th {
    background-color: #2c3e50;
    color: white;
    font-weight: bold;
}

table tr:hover {
    background-color: #f9f9f9;
}

table td {
    color: #555;
}

/* Image Section Styling */
.image-section {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin: 40px auto;
    max-width: 1200px;
    padding: 20px;
    align-items: center;
}

.image-container {
    width: 45%;
}

.left-image, .right-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.info-container {
    width: 45%;
    padding: 20px;
}

.info-container h2 {
    font-size: 28px;
    margin-bottom: 10px;
}

.info-container p {
    font-size: 16px;
    line-height: 1.6;
}

.left-image-section .info-container {
    text-align: left;
}

.right-image-section .info-container {
    text-align: right;
}

/* About Section */
.about-section {
    background-color: #34495e;
    color: white;
    padding: 40px 20px;
    text-align: center;
}

.about-section h2 {
    font-size: 28px;
    margin-bottom: 20px;
}

.about-section p {
    font-size: 18px;
    line-height: 1.6;
}

/* Contact Section */
.contact-section {
    background-color: #e67e22;
    color: white;
    padding: 40px 20px;
    text-align: center;
}

.contact-section h2 {
    font-size: 28px;
    margin-bottom: 20px;
}

.contact-section form {
    max-width: 600px;
    margin: 0 auto;
}

.contact-section .form-group {
    margin-bottom: 20px;
}

.contact-section .form-group label {
    display: block;
    margin-bottom: 5px;
}

.contact-section .form-group input {
    width: 100%;
    padding: 12px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 8px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.contact-section .form-group input:focus {
    border-color: #e67e22;
    box-shadow: 0 0 8px rgba(230, 126, 34, 0.3);
}

.contact-section .submit-btn {
    width: 100%;
    padding: 15px;
    background-color: #2c3e50;
    color: white;
    font-size: 18px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.contact-section .submit-btn:hover {
    background-color: #2980b9;
}

/* Footer Styling */
footer {
    background-color: #2c3e50;
    color: #fff;
    padding: 20px 0;
    text-align: center;
}

footer ul {
    list-style-type: none;
    display: flex;
    justify-content: center;
    margin-top: 10px;
}

footer ul li {
    margin-left: 20px;
}

footer ul li a {
    color: #fff;
    text-decoration: none;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .header-container {
        flex-direction: column;
        align-items: flex-start;
    }

    header nav ul {
        flex-direction: column;
        margin-top: 20px;
    }

    header nav ul li {
        margin: 10px 0;
    }

    .image-section {
        flex-direction: column;
        align-items: center;
    }

    .left-image, .right-image {
        width: 80%;
    }

    .info-container {
        width: 80%;
    }
}

@media (max-width: 768px) {
    header nav {
        display: none;
    }

    .menu-icon {
        display: block;
    }

    header nav.active {
        display: block;
        position: absolute;
        top: 60px;
        right: 0;
        background-color: #2c3e50;
        width: 100%;
        text-align: center;
        padding-top: 20px;
    }

    header nav ul {
        display: flex;
        flex-direction: column;
    }

    header nav ul li {
        margin: 10px 0;
    }

    .booking-form .submit-btn {
        width: 100%;
    }

    .image-section {
        flex-direction: column;
        align-items: center;
    }

    .info-container {
        text-align: center;
        width: 90%;
    }

    footer ul {
        flex-direction: column;
        align-items: center;
    }
}
