:root {
    --bg: #f7f5f1;
    --card: #ffffff;
    --text: #2f3730;
    --muted: #6b7269;
    --accent: #4a6b4f;
    --line: #e3e0d8;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    background: var(--bg);
    color: var(--text);
    font-family: Georgia, "Times New Roman", serif;
    line-height: 1.6;
}

main {
    width: 100%;
    max-width: 34rem;
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: 4px;
    padding: 3rem 2.5rem;
    text-align: center;
}

h1 {
    margin: 0 0 0.25rem;
    font-size: clamp(1.9rem, 6vw, 2.6rem);
    font-weight: normal;
    letter-spacing: 0.06em;
}

/* No data-lang means JavaScript never ran: leave every language visible. */
html[data-lang] section[lang] {
    display: none;
}

html[data-lang="de"] section[lang="de"],
html[data-lang="nl"] section[lang="nl"],
html[data-lang="en"] section[lang="en"] {
    display: block;
}

section + section {
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid var(--line);
}

html[data-lang] section + section {
    margin-top: 0;
    padding-top: 0;
    border-top: 0;
}

.lang-switcher {
    display: none;
    gap: 0.75rem;
    justify-content: center;
    margin-top: 2.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--line);
}

html[data-lang] .lang-switcher {
    display: flex;
}

.lang-switcher button {
    padding: 0.35rem 0.6rem;
    border: 0;
    border-radius: 3px;
    background: none;
    color: var(--muted);
    font-family: inherit;
    font-size: 0.85rem;
    letter-spacing: 0.06em;
    cursor: pointer;
}

.lang-switcher button:hover,
.lang-switcher button:focus-visible {
    color: var(--text);
    background: var(--bg);
}

.lang-switcher button[aria-pressed="true"] {
    color: var(--accent);
    cursor: default;
}

.tagline {
    margin: 0 0 2rem;
    color: var(--muted);
    font-size: 0.8rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
}

hr {
    border: 0;
    border-top: 1px solid var(--line);
    margin: 2rem 0;
}

p {
    margin: 0 0 1rem;
}

.booking {
    margin-top: 1.5rem;
}

.booking-label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--muted);
    font-size: 0.75rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

#contact a {
    color: var(--accent);
    font-size: 1.15rem;
    text-decoration: none;
    border-bottom: 1px solid var(--accent);
    word-break: break-all;
}

#contact a:hover,
#contact a:focus {
    color: var(--text);
    border-bottom-color: var(--text);
}

.fallback {
    color: var(--muted);
    font-size: 0.95rem;
    font-style: italic;
}
