body {
    font-family: Arial, sans-serif;
    margin: 0;
    background: #f4f4f4;
    color: #333;
}
header {
    background-image: url('images/header-bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: white;
    padding: 4rem 1rem;
    text-align: center;
    position: relative;
}


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

.highlight, .details {
    padding: 1.5rem;
    background: white;
    margin: 1rem;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0,0,0,0.05);
}

.gallery {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    padding: 1rem;
}

.photo-box {
    background: white;
    border: 1px solid #ccc;
    border-radius: 8px;
    overflow: hidden;
    width: 300px;
    box-shadow: 0 0 5px rgba(0,0,0,0.1);
}

.photo-box img {
    width: 100%;
    display: block;
}

.photo-box p {
    padding: 0.5rem;
    text-align: center;
    font-size: 0.95rem;
}

ul {
    list-style: none;
    padding: 0;
}

ul li::before {
    content: "✔ ";
    color: #0099cc;
}

footer {
    text-align: center;
    padding: 1.5rem;
    background: #333;
    color: white;
}

a {
    color: #fff;
    text-decoration: underline;
}

.lang-switch {
    text-align: right;
    margin: 1rem;
}

.lang-switch a {
    color: white;
    background: #444;
    padding: 0.4rem 0.7rem;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
}

.caption {
    padding: 0.6rem;
    text-align: center;
    font-size: 1rem;
}

.caption strong {
    display: block;
    margin-bottom: 0.3rem;
    font-size: 1.05rem;
    color: #222;
}

.caption .subtext {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.3;
    text-align: justify;
}

.rules {
    padding: 1.5rem;
    margin: 1rem;
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0,0,0,0.05);
}

.rules h2 {
    margin-bottom: 1rem;
    color: #222;
}

.rules ul {
    list-style: none;
    padding-left: 0;
}

.rules ul li::before {
    content: "• ";
    color: #0099cc;
    margin-right: 0.5rem;
}
.residence-gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 1rem;
    justify-content: center;
}

.residence-gallery img {
    width: 200px;
    height: auto;
    border-radius: 6px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    object-fit: cover;
    transition: transform 0.3s ease;
}

.residence-gallery img:hover {
    transform: scale(1.03);
}

