body {
    font-family: sans-serif;
    margin: 0;
    padding: 0;
    background: #f5f7fa;
    color: #222;
}

.header {
    background: #2d4f7c;
    color: white;
    padding: 2rem;
    text-align: center;
}

.content, .guest-page {
    max-width: 800px;
    margin: auto;
    padding: 2rem;
    background: white;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    margin-top: 2rem;
    border-radius: 8px;
}

.code-form {
    display: flex;
    flex-direction: column;
    margin-bottom: 2rem;
}

.code-form input {
    padding: 0.5rem;
    margin: 0.5rem 0;
    font-size: 1rem;
}

.code-form button {
    background: #2d4f7c;
    color: white;
    border: none;
    padding: 0.7rem;
    cursor: pointer;
    border-radius: 5px;
}

.banner-error {
    background: #f44336;
    color: white;
    text-align: center;
    padding: 1rem;
}

.booking-box {
    background: #e0f7fa;
    padding: 1rem;
    border-radius: 6px;
    margin: 1rem 0;
}

.footer-hint {
    margin-top: 2rem;
    font-style: italic;
    text-align: center;
    color: #555;
}

.gallery {
    text-align: center;
    margin: 2rem 0;
}

.gallery img {
    width: 100%;
    max-width: 600px;
    height: 400px; /* Feste Höhe für Konsistenz */
    object-fit: cover; /* Bild wird passend skaliert, ohne Layout zu stören */
    border-radius: 12px;
    box-shadow: 0 0 10px rgba(0,0,0,0.2);
    background-color: #f0f0f0; /* Für Ladezeit o.ä. */
}

.gallery-buttons {
    margin-top: 1rem;
}

.gallery-buttons button {
    padding: 0.5rem 1.2rem;
    margin: 0 0.5rem;
    border: none;
    background-color: #0055aa;
    color: white;
    font-weight: bold;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.gallery-buttons button:hover {
    background-color: #003f80;
}

.back-button {
    display: inline-block;
    margin-top: 1rem;
    background-color: #ffffff;
    color: #2d4f7c;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-weight: bold;
    text-decoration: none;
    box-shadow: 0 0 4px rgba(0, 0, 0, 0.2);
    transition: background-color 0.2s;
}

.back-button:hover {
    background-color: #eee;
}
