/* Variablen */
:root {
    --font-family: 'Arial', sans-serif;
    --text-color: #333;
    --heading-gradient: linear-gradient(90deg, #6c7b95, #9b1b30);
    --button-bg: rgba(133, 133, 133, 0.2);
    --button-border: rgba(255, 255, 255, 0.4);
    --button-hover-bg: rgba(255, 255, 255, 0.4);
    --button-text-color: #454545;
    --circle-color1: rgba(108, 123, 149, 0.5);
    --circle-color2: rgba(155, 27, 48, 0.5);
    --circle-blur: 100px;
}

/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* HTML und Body */
html, body {
    height: 100%; /* Stellt sicher, dass die Höhe der Seite berücksichtigt wird */
    margin: 0;
    overflow-y: scroll; /* Immer Scrollleiste anzeigen */
}

body {
    font-family: var(--font-family);
    color: var(--text-color);
    background-color: #f4f4f4;
}

/* Background */
.background {
    position: relative;
    min-height: 100vh; /* Passt sich an den Inhalt an */
    padding: 2rem 0;
}

.background::before,
.background::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    filter: blur(var(--circle-blur));
    pointer-events: none;
    z-index: -1;
}

.background::before {
    width: 300px;
    height: 300px;
    background: var(--circle-color1);
    top: -50px;
    left: -50px;
}

.background::after {
    width: 400px;
    height: 400px;
    background: var(--circle-color2);
    bottom: -100px;
    right: -100px;
}

/* Header */
.header {
    text-align: center;
    margin-bottom: 2rem;
}

.header h1 {
    margin-top: 10rem;
    font-size: 3rem;
    background: var(--heading-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

/* Hauptinhalt */
.main {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    padding: 2rem;
}

.info, .impressum-card, .privacy-card {
    margin-bottom: 2rem;
    margin-top: 2rem;
}

.gallery {
    margin: 2rem auto;
    text-align: center;
}

.gallery h2 {
    margin-bottom: 1rem;
}

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

.gallery-grid img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.gallery-grid img:hover {
    transform: scale(1.05);
}

/* Zusätzliche Infos */
.additional-info {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    text-align: left;
    font-size: 0.95rem;
    line-height: 1.6;
}

.additional-info ul {
    margin: 1rem 0;
    padding-left: 1rem;
}

.additional-info ul li {
    margin-bottom: 0.5rem;
}

/* Impressum-Kachel */
.impressum-card, .privacy-card {
    padding: 2rem;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    text-align: left;
    font-size: 0.95rem;
    line-height: 1.6;
}

.impressum-card h2,
.privacy-card h1,
.privacy-card h2,
.privacy-card h3 {
    margin-bottom: 1rem;
}

.impressum-card p,
.privacy-card p {
    margin-bottom: 1rem;
}

/* Glas-Effekt-Button */
.booking-button {
    display: inline-block;
    background: var(--button-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--button-border);
    color: var(--button-text-color);
    text-decoration: none;
    padding: 0.8rem 1.5rem;
    font-size: 1rem;
    border-radius: 10px;
    transition: background 0.3s, transform 0.2s;
    margin-top: 1rem;
}

.booking-button:hover {
    background: var(--button-hover-bg);
    transform: scale(1.05);
}

/* Footer */
.footer {
    text-align: center;
    font-size: 0.9rem;
    color: #777;
}
