/* Allgemeine Einstellungen */
body {
    background-color: #1a1a1a; /* Dunkler Hintergrund */
    color: #ececec; /* Heller Text */
    font-family: Verdana, Helvetica, sans-serif; /* Websichere Schriftart */
    margin: 0;
    padding: 0;
    font-size:16px;
    line-height:22px;
}

li{ margin-bottom:10px;}

a {
    color: gold; /* Links in Gold */
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* Header */
header {
    background-color: #222;
    padding: 20px 0;
    margin-bottom:40px;
}

.header-container {
    width:80%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    margin: auto auto 10px;
}

.logo {
    width: 150px;
}

.intro-layer {
    max-width:600px;
    width:40%;
    background:rgb(25,25,25, 0.5);
    position: absolute;
    right: 40px;
    bottom:40px;
    z-index:100;
    padding:10px;
}

.mood {
    position: relative;
    text-align: center;
}
.header-container nav ul {
    list-style: none;
    padding: 0;
    display: flex;
    margin: 90px 0 0;
}

.header-container nav ul li {
    margin-left: 20px;
}

.header-container nav ul li a {
    font-weight: bold;
}

/* Hero Bild */
.hero {
    text-align: center;
    position: relative;
    margin-top: 0;
}


.header-image {
    width: 100%;
    height: auto;
    opacity: 0.8;
    display:inline-block;
}

.hero h1 {
    width:100%;
    color: #fff; /* H1 in Gold */
    font-size: 3em;
    margin: 0;
    line-height: 4em;
}

/* Hauptinhalt */
main {
    width:80%;
    margin: auto;
}

h2, h3, h4, h5 {
    color: #a38e55; /* Alle Überschriften in Gold */
}

.offerings {
    display: flex;
    justify-content: space-between;
}

.offering {
    width: 45%;
    text-align: center;
}

.offering img {
    width: 100%;
    height: auto;
    margin-bottom: 15px;
}

/* Footer */
footer {
    background-color: #111;
    text-align: center;
    padding: 10px 0;
    margin-top:80px;
}

footer p {
    margin: 0;
    color: #f0f0f0;
}

.section-content, .section-with-image, .section-with-image-30 {
    display: flex;
    flex-wrap: wrap;
    gap: 0 40px;
}

.section-content p,
.section-content ul {
    flex: 1 1 100%;
    margin:15px 0;
}

.section-with-image aside {
    flex: 1 1 60%;
}

.image-placeholder {
    flex: 1 1 50%;
    background-color: #eee;
    text-align: center;
    padding: 20px;
    font-style: italic;
    color: #888;
    font-size: 14px;
}

.image-placeholder img {
    display: inline-block;
    max-width: 100%;
}

.section-with-image p,
.section-with-image ul {
    flex: 1 1 50%;
    margin:15px 0;
}

.section-image {
    text-align: center;
    padding: 20px;
    font-style: italic;
    color: #888;
    font-size: 14px;
    flex: 1 2 30%;
}

.section-image img, .section-image-70 img {
    width:100%;
    display: inline-block;
    border:10px #eee solid;
}

section li {
    line-height: 26px;
}

.subnavigation {width:80%;margin:20px auto;}
.subnavigation button {background:#eee;padding:5px;border-radius:5px; border: 5px #ccc solid}
.subnavigation button:hover {background:#ccc;}
/* Responsive Design */
@media (max-width: 1200px) {
    .section-content {
        flex-direction: column;
    }

    .section-image img {
        width: 100%;
        max-height:100% !important;
    }

    .intro-layer {
        width:80%;
        margin:auto;
        max-width:80%;
        padding:10px;
        display:block;
        position:relative;
        background:none;
        right:0;
        bottom:0;
    }
}

/* Formular-Styling */
form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin: 0 ;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 8px;
    background-color: #f9f9f9;
}

.hp-field {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

label {
    font-weight: bold;
    color: #333;
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="file"],
textarea {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

textarea {
    resize: vertical;
    min-height: 120px;
}

button[type="submit"] {
    padding: 12px 20px;
    font-size: 16px;
    font-weight: bold;
    color: #000;
    background-color: #a38e55;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

button[type="submit"]:hover {
    background-color: #000;
    color:#fff;
}

/* Fehlerhinweis für Dateigrößenbeschränkung */
.alert {
    color: red;
    font-weight: bold;
}

.contact-aside {
    width:30%;
    margin-left: auto;
}
.contact-section {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
}

.section-image img {
    max-height: 340px;
    max-width: 100%;
}

.section-with-image aside{
    width:60%;
}


/* Abwechselnde Bild- und Textpositionierung */
.section-with-image:nth-child(even) .content-image {
    order: 2;
}

.section-with-image:nth-child(even) .content-text {
    order: 1;
}

dd {margin:10px;}
/* Responsive Anpassungen */
@media (max-width: 768px) {
    .content-section {
        flex-direction: column;
    }

    .section-image,
    .section-with-image aside {
        order: 0;
        flex: 1 1 100%;
    }

    aside {
        width:100% !important;
    }
    .header-container {display:inline-block;width:100% !important}
    .header-container a {display:block; text-align:center;padding:0;}
    .header-container nav {display:block; width:80%; margin:auto;margin-top:20px;}
    .header-container nav li {width:100%; display:block;margin:0 !important;padding:0;}
    .header-container nav ul {display:block;margin:0;}
    .header-container nav a {background:#ccc; padding:5px;border-radius:5px;color:#333;margin-bottom:20px;}
}

#cookieConsent {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #333;
    color: white;
    text-align: center;
    padding: 15px;
    display: none;
    z-index: 1000;
}
#cookieConsent button {
    padding: 10px 20px;
    margin: 5px;
    border: none;
    cursor: pointer;
}
#acceptCookies {
    background-color: #4CAF50;
    color: white;
}
#declineCookies {
    background-color: #f44336;
    color: white;
}

.blog-post {margin-top:10px;border-top:1px #ccc solid;padding-top:10px;}
.blog-entries {margin-top:60px;border-top:1px #ccc solid;}
.breadcrumb {display:block;width:80%;margin:20px auto 0;color:#cfcfcf;font-size:14px;box-sizing:border-box;}
.breadcrumb a {color:#cfcfcf;}
.breadcrumb span[aria-current="page"] {color:#a38e55;}
.breadcrumb-separator {display:inline-block;margin:0 8px;color:#888;}
iframe {width:100%;background:#fff}
