/* ============================= */
/* ✅ BUCHUNGSSEITE – WOLF EDITION */
/* ============================= */

body, main, footer {
    max-width: 100vw; /* Breite des Viewports */
    width: 100%;
    align-self: stretch; /* Dehnt den Footer auf volle Breite */
}

main {
    flex: 1;                  /* Füllt den verfügbaren Platz, damit der Footer unten bleibt */
    max-width: 100%;
    margin: 0 auto;
    padding: 20px;
    text-align: center;
    color: #C0C0C0;
    background: rgba(18, 18, 18, 0.9);
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(192, 192, 192, 0.3);
    animation: fadeIn 1s ease-in-out;  /* 🌀 Sanfte Ladeanimation */
}

/* ✅ Überschrift */
main h1 {
    font-size: 2.5em;
    margin-bottom: 10px;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.8);
}

/* ✅ Beschreibung */
main p {
    font-size: 1.2em;
    margin-bottom: 20px;
    color: #AAAAAA;
}

/* ✅ Buchungs-Optionen */
.booking-options {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    animation: slideIn 1.2s ease-in-out;
}

/* ✅ Einzelne Option */
.booking-option {
    background: rgba(41, 41, 41, 0.95);
    border-radius: 15px;
    padding: 20px;
    width: 300px;
    box-shadow: 0 4px 12px rgba(192, 192, 192, 0.4);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
}

/* ✅ Hover-Effekt */
.booking-option:hover {
    transform: scale(1.05);  /* 🔍 Boom-Effekt */
    box-shadow: 0 10px 25px rgba(192, 192, 192, 0.8);
    border-color: #8B0000;  /* 🩸 Blutroter Glow */
}

/* ✅ Bilder */
.booking-option img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px 10px 0 0;
    transition: transform 0.4s ease;
}

/* ✅ Bild-Zoom bei Hover */
.booking-option:hover img {
    transform: scale(1.1);
}

/* ✅ Titel */
.booking-option h2 {
    font-size: 1.8em;
    margin: 15px 0 10px;
    color: #E0E0E0;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.7);
}

/* ✅ Beschreibung */
.booking-option p {
    font-size: 1em;
    color: #BBBBBB;
    line-height: 1.5;
}

/* ✅ Button */
.booking-option a {
    display: inline-block;
    margin-top: 15px;
    padding: 10px 20px;
    background: #8B0000;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: background 0.3s ease, transform 0.3s ease;
    font-weight: bold;
}

/* ✅ Button Hover */
.booking-option a:hover {
    background: #FF3D3D;
    transform: scale(1.1);
    box-shadow: 0 0 12px rgba(255, 0, 0, 0.8);
}

/* ✅ Animationen */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes slideIn {
    from { opacity: 0; transform: translateX(-50px); }
    to { opacity: 1; transform: translateX(0); }
}

footer {
    width: 100%;              /* Footer auf volle Breite ziehen */
}
