body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f5f5f5;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    background-color: #333;
    color: white;
}

.logo img {
    width: 100px;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
}

nav ul li a {
    color: white;
    text-decoration: none;
}

.rooms {
    text-align: center;
    padding: 50px;
}

.room-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.room {
    background-color: white;
    padding: 15px;
    border-radius: 8px;
    width: 30%;
    box-shadow: 2px 2px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease-in-out;
}

.room:hover {
    transform: scale(1.05);
}

.room img {
    width: 100%;
    border-radius: 8px;
}

.room-info {
    margin-top: 10px;
}

button {
    background-color: #25D366;
    color: white;
    padding: 10px;
    border: none;
    cursor: pointer;
    font-size: 16px;
}

button:hover {
    background-color: #20b358;
}

footer {
    text-align: center;
    padding: 15px;
    background-color: #333;
    color: white;
}

/* Responsive Design */
@media screen and (max-width: 1024px) {
    .room {
        width: 45%;
    }
}

@media screen and (max-width: 768px) {
    header {
        flex-direction: column;
        text-align: center;
    }

    nav ul {
        flex-direction: column;
        text-align: center;
    }

    .room {
        width: 100%;
    }
}