body {
    font-family: 'Arial, sans-serif';
    margin: 0;
    padding: 0;
    background-color: #f5f5f5;
    color: #333;
}

header {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 20px 0;
    text-align: center;
    position: relative;
}

header .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

#language-switcher {
    position: absolute;
    top: 20px;
    left: 20px;
}

#language-switcher button {
    background-color: #ecf0f1;
    border: 1px solid #bdc3c7;
    color: #2c3e50;
    padding: 5px 10px;
    margin: 0 5px;
    border-radius: 5px;
    cursor: pointer;
}

#language-switcher button:hover {
    background-color: #bdc3c7;
}

header h1 {
    font-size: 3em;
    margin: 10px 0;
}

header .highlight {
    color: #e74c3c;
}

header .tagline {
    font-size: 1.2em;
    margin: 10px 0 0;
}

.hero {
    text-align: center;
    background: url('hotel.jpg') no-repeat center center/cover;
    height: 500px;
}

.hero img {
    width: 100%;
    height: auto;
}

.main-content {
    display: flex;
    justify-content: space-between;
    max-width: 1200px;
    margin: 20px auto;
    padding: 0 20px;
}

.rooms {
    flex: 1;
    margin-right: 20px;
    display: flex;
    flex-direction: column;
    gap: 20px; /* Add spacing between rooms */
}

.room {
    background: #ecf0f1;
    border: 1px solid #bdc3c7;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.room img {
    width: 100%;
    height: auto;
    max-height: 200px; /* Limit the height of the images */
    transition: transform 0.5s ease;
    object-fit: cover; /* Ensures the image covers the area without distortion */
}

.room:hover img {
    transform: scale(1.5);
}

.room h2 {
    font-size: 2em;
    margin: 10px 0;
}

.availability-form {
    flex: 0 0 300px;
    background: #fff;
    border: 1px solid #bdc3c7;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    align-self: flex-start; /* Aligns the form to the top */
}

.availability-form h3 {
    font-size: 1.5em;
    margin-bottom: 15px;
}

.availability-form form {
    display: flex;
    flex-direction: column;
}

.availability-form label {
    margin-bottom: 5px;
    font-weight: bold;
}

.availability-form input,
.availability-form button {
    margin-bottom: 15px;
    padding: 10px;
    font-size: 1em;
    border: 1px solid #bdc3c7;
    border-radius: 5px;
}

.availability-form button {
    background-color: #2c3e50;
    color: #ecf0f1;
    cursor: pointer;
}

footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 10px 0;
    text-align: center;
}

footer .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
