/* Hintergrundbild, das den gesamten Bildschirm abdeckt */
body {
    margin: 0;
    padding: 0;
    font-family: 'Merriweather', serif; /* Elegante Serifenschrift für den Text */
    font-size: 18px;
    line-height: 1.8;
    color: #ffffff; /* Weiße Schrift */
    background-image: url('../images/WinterBackground.webp'); /* Winter-Hintergrundbild */
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    overflow-x: hidden;
}


/* Überschriften */
h1, h2, h3 {
    font-family: 'Playfair Display', serif;
    color: #ffffff; /* Weiße Schrift */
    margin-bottom: 20px;
}

h1 {
    font-size: 3rem; /* Große Überschrift */
    color: #ffffff; /* Dunklere Farbe für eine stärkere Wirkung */
}

h2 {
    font-size: 2.5rem; /* Mittelgroße zweite Ebene */
}

h3 {
    font-size: 1.75rem; /* Kleinere dritte Ebene */
}

/* Absätze */
p {
    font-family: 'Merriweather', serif; /* Gleiche Schriftart wie der Body-Text */
    font-size: 18px; /* Einheitliche Schriftgröße für Absätze */
    line-height: 1.8; /* Erhöhter Zeilenabstand */
    color: #ffffff; /* Dezente, aber gut lesbare Schriftfarbe */
    margin-bottom: 15px;
}

/* Besonderer Stil für das Branding */
.branding {
    font-size: 20px;
    font-family: 'Playfair Display', serif; /* Eleganter Schriftstil */
    text-align: center;
    font-weight: bold;
    color: #ffffff; /* Dunkle Farbe */
}

/* Untertitel oder zusätzliche Details */
.subtitle {
    font-family: 'Merriweather', serif;
    font-size: 16px;
    font-style: italic;
    color: #ffffff; /* Dezenterer Ton */
    text-align: center;
}

/* Header Navigation */
header nav ul li a {
    font-size: 18px; /* Größere Schrift für die Navigation */
    letter-spacing: 0.5px; /* Leicht erhöhter Buchstabenabstand */
}

/* Schritte */
.steps .step {
    font-size: 18px;
    line-height: 1.8;
    letter-spacing: 0.3px;
}

/* Sektionen */
.section {
    margin: 80px auto; /* Abstand oben/unten und zentriert den Abschnitt */
    text-align: center;
    background: rgba(0, 0, 0, 0.705); /* Halbtransparenter Hintergrund für besseren Kontrast */
    padding: 20px;
    border-radius: 10px;
    max-width: 1600px; /* Verkleinert die maximale Breite */
    width: 85%; /* Verringert die relative Breite für mehr Abstand zu den Seiten */
}


/* Schritte */
.steps {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.step {
    background: rgba(92, 90, 90, 0.7);
    padding: 20px;
    border-radius: 10px;
    width: 300px;
    text-align: left;
}

/* Buttons */
button {
    font-family: 'Arial', sans-serif;
    font-size: 16px; /* Einheitliche Schriftgröße */
    padding: 12px 20px; /* Größere Buttons */
    border-radius: 8px; /* Leicht abgerundete Buttons */
    background: #ffffff;
    color: #000000;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s, color 0.3s;
}

button:hover {
    background: #e6e6e6; /* Leichte Veränderung bei Hover */
    color: #000000;
}

/* Hauptinhalt */
main {
    padding: 20px;
}



/* Kontaktformular */
form {
    max-width: 400px;
    margin: 0 auto;
    text-align: left;
}

form label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

form input, form textarea, form button {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: none;
    border-radius: 5px;
}

form input, form textarea {
    background: #ffffff;
    color: #333333;
}

form button {
    background: #007bff;
    color: #ffffff;
    font-weight: bold;
    cursor: pointer;
}
.dl-feedback {
    background: #ffffff;
    border-radius: 12px;
    width: 80%;
    max-width: 1000px;
    margin: 3rem auto;
    padding: 2.5rem 3rem;

    /* Typography */
    font-family: "Merriweather", serif;
    font-size: 1.1rem;
    line-height: 1.65;
    letter-spacing: 0.01em;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
}

/* Hauptüberschrift */
.dl-heading {
    text-align: center;
    font-family: "Playfair Display", serif;
    margin-bottom: 2rem;
    font-size: 2rem;
    color: #000;
}

/* Unterüberschriften */
.dl-subheading {
    margin-top: 1.75rem;
    font-size: 1.35rem;
    color: #000;
}

/* Listen & Items */
.dl-list {
    padding-left: 1.25rem;
    margin-top: 0.75rem;
    color: #000; /* Text schwarz */
}
.dl-list-item {
    color: #000; /* Text schwarz */
}

/* Paragraphen */
.dl-text {
    color: #000; /* Text schwarz */
}

/* Links innerhalb des Bereichs sollen den gleichen Farbwert erben, damit sie schwarz bleiben */
.dl-text a,
.dl-list-item a {
    color: inherit;
    text-decoration: underline;
}