/* Allgemeine Seiteneinstellungen */
body {
    font-family: Didot, sans-serif;
    background-color: #E6D1EB; /* Lavendel Hintergrund */
    color: #585563; /* Dunkles Grau für Haupttext */
    margin: 0;
    padding: 0;
    line-height: 1.6;
}

/* Header */
#header {
    background-color: #585563; /* Dunkles Grau */
    color: white; /* Weißer Text auf dunklem Hintergrund */
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap; /* Ermöglicht Zeilenumbruch auf kleineren Bildschirmen */
}

.header-content .logo {
    height: 80px;
    width: auto;
}

.header-content h1 {
    font-size: 2em;
    font-weight: 500;
    margin: 0;
    color: #DAC07C; /* Akzentfarbe für den Titel */
    font-family: Georgia, serif;
}

.header-text h1 {
    font-size: 1.5em;
    text-align: center;
    margin: 0;
    color: #DAC07C; /* Akzentfarbe für den Titel */
    font-family: Georgia, serif;
}
/* Navigation */
nav {
    display: flex;
    justify-content: center;
    gap: 15px; /* Kleinere Lücke zwischen Links */
    background-color: #585563;
    padding: 10px;
    border-radius: 5px;
    flex-wrap: wrap; /* Zeilenumbruch bei kleineren Bildschirmen */
}

nav a {
    color: white;
    font-weight: 500;
    text-decoration: none;
    padding: 10px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

nav a:hover {
    background-color: #DAC07C;
    color: black;
    border-radius: 5px;
}

/* Hauptinhalt */
.main-content {
    max-width: 900px;
    margin: 40px auto;
    padding: 30px;
    background-color: white; /* Weißer Hintergrund für Klarheit */
    border-radius: 10px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
}
.main-title {
    text-align: center; /* Zentriert die Überschrift horizontal */
    font-size: 2.5em;   /* Passe die Schriftgröße an, falls nötig */
    margin-top: 20px;   /* Abstand nach oben */
    color: #333;        /* Beispiel-Farbe für den Text */
}

.main-content h1 {
    font-size: 1.8em;
    color: #585563;
    margin-bottom: 25px;
    text-align: center;
}




.main-content h2 {
    font-size: 1.8em;
    color: #585563;
    margin-bottom: 25px;
    text-align: center;
}

.main-content h3 {
    font-size: 1.4em;
    color: #585563;
    margin-top: 20px;
    margin-bottom: 15px;
}

.main-content p, .main-content address {
    font-size: 1em;
    color: #333;
    margin-bottom: 20px;
    line-height: 1.6;
}
/* Neue Regel für Kontaktinformationen */
.main-content .contact-info p {
    margin-bottom: 5px;
    line-height: 1;
}

address a {
    color: #0A74DA; /* Blaue Farbe für Links in Kontaktinformationen */
    text-decoration: none;
}

address a:hover {
    text-decoration: underline;
}

/* Zentrierter Dienstleistungstitel */
.section-title {
    text-align: center;
    color: #DAC07C;
    font-size: 1.6em;
    margin-bottom: 20px;
}

/* Bild-Grid */
.image-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 2 Spalten */
    gap: 15px;
    max-width: 500px;
    margin: 30px auto;
}

.image-grid .grid-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
    text-align: center;
}

.image-grid .grid-item img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
    border-radius: 10px;
}

.image-grid .grid-item span {
    display: block;
    padding: 10px 0;
    font-size: 1em;
    color: #585563;
    background-color: #F7F4F8;
}

.image-grid .grid-item a {
    text-decoration: none;
    color: inherit;
}

.image-grid .grid-item a:hover span {
    color: #DAC07C;
}

/* Footer */
#footer {
    background-color: #585563;
    color: white;
    padding: 15px;
    text-align: center;
    font-size: 0.9em;
    margin-top: 40px;
}

#footer a {
    color: #DAC07C;
    text-decoration: none;
}

#footer a:hover {
    color: #E6D1EB;
    text-decoration: underline;
}

/* Button Styles */
button, .submit-button {
    background-color: #DAC07C;
    color: black;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

button:hover, .submit-button:hover {
    background-color: #E6D1EB;
    color: #585563;
}
.contact-form {
    max-width: 500px;
    margin: 20px auto;
    padding: 20px;
    background-color: #FFFFFF; /* Weißer Hintergrund */
    border-radius: 10px; /* Abgerundete Ecken */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); /* Leichter Schatten */
}

.contact-form .form-group {
    margin-bottom: 15px;
}

.contact-form label {
    display: block;
    font-weight: bold;
    margin-bottom: 5px;
    color: #585563; /* Grauer Text */
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form textarea {
    width: 100%;
    padding: 10px;
    font-size: 1em;
    border: 1px solid #ddd;
    border-radius: 5px; /* Abgerundete Ecken */
    box-sizing: border-box;
    transition: border-color 0.3s ease;
}

.contact-form input[type="text"]:focus,
.contact-form input[type="email"]:focus,
.contact-form textarea:focus {
    border-color: #DAC07C; /* Akzentfarbe bei Fokus */
    outline: none;
}

.contact-form textarea {
    resize: vertical; /* Erlaubt das Vergrößern des Textfeldes nur vertikal */
}

.main-content .error-message {
    color: red;
    font-size: 0.9em;
    margin-top: 5px;
}


.submit-button {
    background-color: #DAC07C; /* Akzentfarbe für den Button */
    color: #FFFFFF;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.submit-button:hover {
    background-color: #E6D1EB; /* Helleres Lavendel beim Hover */
    color: #585563;
}

/* Allgemeine Fehlermeldungen */
.error-messages {
    background-color: #f8d7da;
    color: #721c24;
    border-left: 5px solid #f5c6cb;
    padding: 10px;
    margin-bottom: 20px;
}

/* Erfolgsmeldungen */
.success-message {
    background-color: #d4edda;
    color: #155724;
    border-left: 5px solid #c3e6cb;
    padding: 10px;
    margin-bottom: 20px;
}


/* Zentriertes Bild im Feuershow-Container */
.feuershow-single-image {
    display: flex;
    justify-content: center; /* Zentriert das Bild horizontal */
    margin: 20px auto; /* Abstand oben und unten sowie horizontale Zentrierung */
    max-width: 600px; /* Maximale Breite des Containers */
    width: 100%; /* Container soll die volle Breite nutzen, falls Platz verfügbar ist */
}

.feuershow-single-image img {
    width: 100%; /* Das Bild nimmt die volle Breite des Containers ein */
    height: auto; /* Höhe wird entsprechend der Breite angepasst, um das Seitenverhältnis zu erhalten */
    max-width: 100%; /* Bild darf nicht größer als der Container werden */
    object-fit: contain; /* Das Bild wird in den Container angepasst, ohne Verzerrungen */
    border-radius: 50%; /* Optional: Abgerundete Ecken */
    border: 10px solid #E6D1EB;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5); /* Optional: Schatten für optische Verbesserung */
}

/* Video-Container mit korrektem Seitenverhältnis */
.video-container {
    position: relative;
    padding-top: 56.25%; /* Für das 16:9-Verhältnis */
    height: 0;
    overflow: hidden;
    max-width: 800px; /* Maximale Breite des Videos */
    margin: 20px auto; /* Abstand oben und unten sowie horizontale Zentrierung */
}

.video-container video,
.video-js .vjs-tech {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain; /* Verhindert das Zuschneiden des Videos, während es angepasst wird */
    border-radius: 10px; /* Abgerundete Ecken für das Video */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15); /* Optional: Leichter Schatten für optische Verbesserung */
}

/* Sicherstellen, dass der Video.js Player die richtigen Dimensionen hat */
.video-js {
    width: 100% !important; /* Überschreibt die Standardbreite */
    height: 100% !important; /* Überschreibt die Standardhöhe */
    border-radius: 10px; /* Optional: Runde Ecken */
}

/* Spezifische Anpassungen für das Video innerhalb des Video.js Players */
.video-js .vjs-tech {
    object-fit: contain; /* Das Video wird innerhalb des Containers dargestellt, ohne zu schneiden */
    border-radius: 10px; /* Abgerundete Ecken */
}






/* Copyright Note unter Video */
.copyright-note {
    text-align: right; /* Rechtsbündiger Text */
    font-size: 0.8em; /* Etwas kleinere Schriftgröße */
    color: #585563; /* Dunkles Grau für Konsistenz */
    margin-top: -15px; /* Weniger Abstand zum Video */
    margin-right: 100px; /* Kein zusätzlicher rechter Abstand */
}


.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #333;
    color: #fff;
    padding: 15px;
    z-index: 1000;
}

.cookie-banner p {
    margin: 0 0 10px 0;
}

.cookie-buttons button {
    margin-right: 10px;
    padding: 10px 15px;
    border: none;
    background-color: #555;
    color: #fff;
    cursor: pointer;
}

.cookie-buttons button:hover {
    background-color: #777;
}

/* Modal-Stile */
.cookie-modal {
    display: none; /* Versteckt das Modal standardmäßig */
    position: fixed;
    z-index: 1001; /* Höher als der Cookie-Banner */
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.5); /* Halbtransparenter Hintergrund */
}

.cookie-modal-content {
    background-color: #fefefe;
    margin: 10% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
    max-width: 500px;
    position: relative;
}

.close-button {
    color: #aaa;
    position: absolute;
    right: 20px;
    top: 10px;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

.close-button:hover,
.close-button:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

#cookie-settings-form label {
    display: block;
    margin-bottom: 10px;
}

#cookie-settings-form button {
    padding: 10px 20px;
    background-color: #333;
    color: #fff;
    border: none;
    cursor: pointer;
}

#cookie-settings-form button:hover {
    background-color: #555;
}


.login-logout-button {
    background-color: #585563;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    margin-top: 10px;
    display: inline-block;
    font-weight: bold;
}

.login-logout-button:hover {
    background-color: #DAC07C;
    text-decoration: none;
}
