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

header {
    background-color: #2c3e50;
    color: white;
    padding: 2rem 1rem;
    text-align: center;
}

main {
    padding: 2rem 1rem;
    max-width: 1000px;
    margin: auto;
    background: white;
}

h1, h2 {
    margin-bottom: 1rem;
}

section {
    margin-bottom: 3rem;
}

.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
}

.gallery img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.gallery img:hover {
    transform: scale(1.02);
}

.footer {
    background-color: #2c3e50;
    color: white;
    text-align: center;
    padding: 1.5rem 1rem;
    margin-top: 2rem;
}

#modal {
    position: fixed;
    display: none;
    inset: 0;
    background: rgba(0, 0, 0, 0.8);
    align-items: center;
    justify-content: center;
    z-index: 999;
}

#modal img {
    max-width: 90%;
    max-height: 80%;
    border-radius: 10px;
}

#modal button {
    position: absolute;
    top: 2rem;
    right: 2rem;
    font-size: 2rem;
    color: white;
    background: none;
    border: none;
    cursor: pointer;
}

.room {
    background-color: #f0f5f1;
    border-left: 5px solid #2a4d2e;
    padding: 1rem 1.5rem;
    margin-top: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}
.room h3 {
    margin-bottom: 0.5rem;
    color: #2a4d2e;
}
.room p {
    margin-bottom: 0.5rem;
}
.btn {
    display: inline-block;
    background-color: #2a4d2e;
    color: white;
    padding: 0.5rem 1rem;
    margin-top: 0.5rem;
    text-decoration: none;
    border-radius: 4px;
}
.btn:hover {
    background-color: #244125;
}

