/* style.css */

:root {
    --primary-color: #007bff; /* Blauer Akzent - ändere dies nach Wunsch */
    --secondary-color: #6c757d; /* Dunkelgrau für Text */
    --light-gray: #f8f9fa; /* Heller Hintergrund für Sektionen */
    --very-light-gray: #e9ecef; /* Noch hellerer Rand/Trenner */
    --text-color: #343a40; /* Haupttextfarbe */
    --font-family-sans-serif: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
    --container-max-width: 960px;
    --border-radius: 0.3rem;
}

body {
    font-family: var(--font-family-sans-serif);
    margin: 0;
    padding: 0;
    line-height: 1.6;
    background-color: #fff;
    color: var(--text-color);
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.container {
    width: 90%;
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 20px 0;
}

header {
    background-color: var(--primary-color);
    color: white;
    padding: 30px 0;
    text-align: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

header h1 {
    margin: 0;
    font-size: 2.5em;
    font-weight: 300;
}

header p {
    font-size: 1.1em;
    opacity: 0.9;
}

section {
    padding: 40px 20px;
    margin-bottom: 30px;
    background-color: var(--light-gray);
    border-radius: var(--border-radius);
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

section:nth-child(odd) { /* Abwechselnde Hintergrundfarben für Sektionen, falls gewünscht */
    /* background-color: #fff; */
}

h2 {
    color: var(--primary-color);
    margin-top: 0;
    margin-bottom: 20px;
    font-size: 1.8em;
    font-weight: 400;
    border-bottom: 2px solid var(--very-light-gray);
    padding-bottom: 10px;
}

.contact-info p,
.privacy p {
    margin-bottom: 10px;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.2s ease-in-out;
}

a:hover, a:focus {
    color: darken(var(--primary-color), 10%);
    text-decoration: underline;
}

footer {
    background-color: var(--text-color);
    color: var(--light-gray);
    text-align: center;
    padding: 20px 0;
    margin-top: auto; /* Schiebt den Footer nach unten */
    font-size: 0.9em;
}

footer a {
    color: white; /* Hellerer Link im dunklen Footer */
}

footer a:hover, footer a:focus {
    color: var(--very-light-gray);
}

/* Spezifische Anpassungen für Elemente */
strong {
    font-weight: 600;
}

/* Responsive Design */
@media (max-width: 768px) {
    header h1 {
        font-size: 2em;
    }
    h2 {
        font-size: 1.6em;
    }
    .container {
        width: 95%;
    }
}

@media (max-width: 480px) {
    body {
        font-size: 15px; /* Etwas kleinere Schrift auf sehr kleinen Bildschirmen */
    }
    header h1 {
        font-size: 1.8em;
    }
    h2 {
        font-size: 1.4em;
    }
}