/* ===================================================================
   Zentrale CSS-Datei für alle Inhaltsseiten
   (style.css)
   =================================================================== */

body {
    background-image: url(images/bg/mainFrameBg.jpg);
    background-color: #f4f4f4; /* Fallback-Farbe, falls das Bild nicht lädt */
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.6;
    color: #333;
    margin: 0;
    padding: 20px;
    box-sizing: border-box;
}

/* Haupt-Container für den Inhalt auf jeder Seite */
.content-container {
    max-width: 820px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 20px 40px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

/* Allgemeine Stile für Überschriften */
h2, h3 {
    color: #2c3e50;
    border-bottom: 2px solid #eaeaea;
    padding-bottom: 10px;
    margin-top: 0;
}

/* Allgemeine Stile für Links */
a {
    color: #0056b3;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

p {
    margin-bottom: 1em;
}

/* --- Spezifische Stile für die Bildergalerie --- */
.gallery-section {
    margin-bottom: 50px;
}

.image-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 16px;
}

.image-grid figure {
    margin: 0;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.image-grid img {
    display: block;
    width: 100%;
    height: auto;
    transition: transform 0.3s ease;
}

.image-grid a:hover img {
    transform: scale(1.05);
}

/* --- Spezifische Stile für das Reservierungsformular --- */
.form-container {
    padding: 20px 30px;
}

.form-group { margin-bottom: 15px; }
.form-row { display: flex; flex-wrap: wrap; gap: 20px; }
.form-row .form-group { flex: 1 1 200px; }

label { display: block; margin-bottom: 5px; font-weight: bold; }
label.required::after { content: " *"; color: #e74c3c; }

input[type="text"], input[type="email"], input[type="tel"],
input[type="number"], input[type="date"], textarea {
    width: 100%; padding: 10px; border: 1px solid #ccc;
    border-radius: 4px; box-sizing: border-box; font-size: 1em;
}

input:focus, textarea:focus { border-color: #0056b3; outline: none; }

.button-group { margin-top: 25px; text-align: right; }

input[type="submit"], input[type="reset"] {
    background-color: #0056b3; color: white; padding: 12px 20px;
    border: none; border-radius: 4px; cursor: pointer; font-size: 1em;
}

input[type="reset"] { background-color: #7f8c8d; margin-right: 10px; }
input[type="submit"]:hover { background-color: #003d82; }
input[type="reset"]:hover { background-color: #6c7a7b; }


/* === NEU: Spezifische Stile für die Anfahrtskarte (location.html) === */
.address {
    text-align: center;
    font-size: 1.1em;
    margin-bottom: 25px;
}

.map-container {
    position: relative;
    width: 100%;
    height: 0;
    /* Dieser Wert macht die Karte höher (75% der Breite) */
    padding-bottom: 75%; 
    overflow: hidden;
    border-radius: 8px;
    border: 1px solid #ccc; /* Fügt einen dezenten Rahmen hinzu */
}

.map-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}