/* --- LOKALE SCHRIFTARTEN EINBINDUNG (ROBOTO) --- */
/* roboto-condensed-300 - latin */
@font-face {
  font-display: swap;
  font-family: 'Roboto Condensed';
  font-style: normal;
  font-weight: 300;
  src: url('assets/fonts/roboto-condensed-v31-latin-300.woff2') format('woff2');
}
/* roboto-condensed-regular - latin */
@font-face {
  font-display: swap;
  font-family: 'Roboto Condensed';
  font-style: normal;
  font-weight: 400;
  src: url('assets/fonts/roboto-condensed-v31-latin-regular.woff2') format('woff2');
}
/* roboto-condensed-500 - latin */
@font-face {
  font-display: swap;
  font-family: 'Roboto Condensed';
  font-style: normal;
  font-weight: 500;
  src: url('assets/fonts/roboto-condensed-v31-latin-500.woff2') format('woff2');
}
/* roboto-condensed-700 - latin */
@font-face {
  font-display: swap;
  font-family: 'Roboto Condensed';
  font-style: normal;
  font-weight: 700;
  src: url('assets/fonts/roboto-condensed-v31-latin-700.woff2') format('woff2');
}



/* Farbpalette aus dem Logo extrahiert */
:root {
    --color-dark-green: #0d6b41;
    --color-light-blue: #9dbce0;
    --color-light-green: #a1ceae;
    --color-text: #2c3e50;
    --color-bg: #fcfdfc;
}

body {
    font-family: 'Roboto Condensed', sans-serif;
    background-color: var(--color-bg);
    color: var(--color-text);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    margin: 0;
    padding: 20px;
    box-sizing: border-box;
    text-align: center;
}

.container {
    max-width: 850px;
    background: #ffffff;
    padding: 60px 40px;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(13, 107, 65, 0.08);
    /* Ein subtiler Rand oben, der die drei Logofarben aufgreift */
    border-top: 6px solid;
    border-image: linear-gradient(to right, var(--color-light-blue), var(--color-dark-green), var(--color-light-green)) 1;
}

.logo-container {
    margin-bottom: 40px;
}

/* Platzhalter-Styling, falls das Logo-Bild noch nicht hochgeladen ist */
.logo-image {
    max-width: 600px;
    height: auto;
    margin-bottom: 15px;
}

.logo-title {
    font-size: 2.2rem;
    color: var(--color-dark-green);
    font-weight: 700;
    letter-spacing: -0.5px;
    margin: 0;
}

.logo-subtitle {
    font-size: 1.1rem;
    color: #555555;
    font-weight: 300;
    margin-top: 5px;
}

h1 {
    font-size: 1.8rem;
    font-weight: 400;
    color: var(--color-dark-green);
    margin-bottom: 20px;
}

p {
    line-height: 1.7;
    font-size: 1.05rem;
    color: #4a5568;
    margin-bottom: 20px;
}

.divider {
    height: 2px;
    width: 60px;
    background-color: var(--color-light-green);
    margin: 40px auto;
    border-radius: 2px;
}

.contact-box {
    background-color: #f8faf9;
    padding: 20px;
    border-radius: 8px;
    margin-top: 30px;
    font-size: 0.95rem;
}

a {
    color: var(--color-dark-green);
    text-decoration: none;
    transition: color 0.2s ease;
}

a:hover {
    color: var(--color-light-blue);
    text-decoration: underline;
}

.footer-links {
    margin-top: 40px;
    font-size: 0.85rem;
    color: #718096;
}

.footer-links a {
    color: #718096;
    margin: 0 10px;
}

/* Responsive Anpassungen für Mobilgeräte */
@media (max-width: 600px) {
    .container {
        padding: 40px 20px;
    }
    .logo-title {
        font-size: 1.8rem;
    }
    h1 {
        font-size: 1.5rem;
    }
}