body {
    font-family: 'Segoe UI', 'Arial', sans-serif;
    background: #f7f9fb;
    color: #222;
    margin: 0;
    padding: 0;
}

header {
    background: #4CAF50;
    color: #fff;
    box-shadow: 0 4px 10px #0002;
    padding-bottom: 0;
}

.header-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 30px 0 10px 0;
}
.logo {
    max-width: 110px;
    margin-bottom: 10px;
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 2px 8px #0001;
    padding: 7px;
}
h1 {
    margin: 0;
    font-size: 2.1rem;
    letter-spacing: 1.5px;
    font-weight: 700;
    color: #fff;
}
nav {
    background: #43a047;
    box-shadow: 0 1px 8px #0001;
}
.navbar {
    display: flex;
    justify-content: center;
    gap: 30px;
    list-style: none;
    margin: 0;
    padding: 0;
}
.navbar li a {
    color: #fff;
    text-decoration: none;
    font-size: 1.12rem;
    padding: 12px 22px;
    border-radius: 7px;
    font-weight: 600;
    transition: background 0.18s;
}
.navbar li a:hover,
.navbar li a:focus {
    background: #fff;
    color: #388e3c;
}
.booking-banner {
    width: 100%;
    font-size: 1.08rem;
    font-weight: 600;
    padding: 12px 0;
    text-align: center;
    margin-bottom: 0;
    background: #43a047;
    letter-spacing: 1px;
    box-shadow: 0 4px 16px #0002;
    border-radius: 0 0 12px 12px;
    transition: background 0.3s;
}
.booking-banner.booked { background: #b71c1c; color: #fff; }
.booking-banner.available { background: #43a047; color: #fff; }

main {
    max-width: 820px;
    margin: 0 auto;
    padding: 30px 16px 0 16px;
}
.section {
    background: #fff;
    margin-bottom: 30px;
    border-radius: 14px;
    box-shadow: 0 2px 12px #0001;
    padding: 34px 24px 26px 24px;
}
.section h2 { margin-top: 0; color: #222; font-weight: 800;}
.section ul { font-size: 1.08rem; margin-left:18px; }
.section ul li { margin-bottom: 8px; }
.section p { font-size: 1.07rem; line-height: 1.7; }
.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
    gap: 20px;
    margin-top: 18px;
}
.gallery-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.gallery img {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border-radius: 11px;
    box-shadow: 0 2px 8px #0002;
    background: #f1f3f6;
    border: 1.5px solid #eee;
    margin-bottom: 5px;
}
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 13px;
    max-width: 400px;
    margin: 0 auto;
}
.contact-form input, .contact-form textarea {
    font-size: 1rem;
    padding: 12px;
    border-radius: 7px;
    border: 1px solid #ccc;
    background: #f1f3f6;
    outline: none;
    transition: border .18s;
}
.contact-form input:focus, .contact-form textarea:focus {
    border: 1.5px solid #4CAF50;
}
.contact-form button {
    font-size: 1.12rem;
    background: #4CAF50;
    color: #fff;
    border: none;
    border-radius: 7px;
    padding: 12px 0;
    font-weight: 700;
    cursor: pointer;
    transition: background .19s;
}
.contact-form button:hover { background: #388e3c; }
.form-message { display: none; }
.form-message.error {
    display: block;
    background: #ffebee;
    color: #c62828;
    padding: 11px;
    border-radius: 7px;
    font-weight: 600;
    margin-top: 10px;
}
footer {
    background: #24292f;
    color: #fff;
    padding: 16px 0;
    text-align: center;
    margin-top: 36px;
    letter-spacing: 0.6px;
    font-size: 1.07rem;
}
@media (max-width: 700px) {
    .gallery img { width: 110px; height: 110px; }
    .section { padding: 16px 6px; }
    .header-container { padding: 16px 0 8px 0; }
}
