/* ==========================================
   GRUNDLEGENDES
   ========================================== */

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 0;

    font-family: Arial, Helvetica, sans-serif;
    font-size: 16px;
    line-height: 1.6;

    color: #333;
    background-color: #fff;
}


/* ==========================================
   TITELBILD
   ========================================== */

.titelbild {
    width: 100%;
    overflow: hidden;
	background-color: #244F4B
}

.titelbild img {
    display: block;

    width: 250px;
    height: auto;

    max-height: 400px;
    object-fit: cover;
	padding:5px;
margin-left: auto;
  margin-right: auto;
}


/* ==========================================
   NAVIGATION
   ========================================== */

.hauptnavigation {
    width: 100%;

    background-color: #588C87;

    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);
}

.hauptnavigation ul {
    display: flex;

    justify-content: center;
    align-items: center;

    margin: 0;
    padding: 0;

    list-style: none;
}

.hauptnavigation li {
    margin: 0;
    padding: 0;
}

.hauptnavigation a {
    display: block;

    padding: 14px 35px;

    color: #fff;
    text-decoration: none;

    font-size: 17px;
    font-weight: bold;

    transition: background-color 0.2s ease;
}

.hauptnavigation a:hover {
    background-color: #244F4B;
}

.hauptnavigation a.aktiv {
    background-color: #244F4B;
}


/* ==========================================
   HAUPTINHALT
   ========================================== */

.inhalt {
    width: 100%;
    max-width: 1200px;

    margin: 0 auto;
    padding: 40px 25px;
}


/* ==========================================
   WILLKOMMEN
   ========================================== */

.willkommen {
    margin-bottom: 35px;
}

.willkommen h1 {
    margin-top: 0;
    margin-bottom: 15px;

    font-size: 32px;
}

.willkommen p {
    font-size: 17px;
}


/* ==========================================
   WICHTIGE INFORMATION
   ========================================== */

.wichtige-info {
    border: 2px solid #c23e3a !important;
    border-radius: 5px;

    padding: 5px;
}

.wichtige-info h2 {
    margin-top: 5px;
}


/* ==========================================
   AKTUELLES
   ========================================== */

.aktuelles {
    margin-top: 40px;
}

.aktuelles h2 {
    margin-bottom: 15px;
}


/* ==========================================
   FOOTER
   ========================================== */

.footer {
    margin-top: 50px;
    padding: 25px;

    text-align: center;

    background-color: #f2f2f2;
    color: #555;
}

.footer p {
    margin: 5px 0;
}

.footer a {
    color: #c23e3a;
    text-decoration: none;
}

.footer a:hover {
    text-decoration: underline;
}


/* ==========================================
   MOBILE DARSTELLUNG
   ========================================== */

@media (max-width: 600px) {

    .hauptnavigation ul {
        flex-direction: column;
    }

    .hauptnavigation li {
        width: 100%;
        text-align: center;
    }

    .hauptnavigation a {
        padding: 11px 20px;

        border-bottom: 1px solid
            rgba(255, 255, 255, 0.2);
    }

    .titelbild img {
        max-height: 250px;
    }

    .inhalt {
        padding: 30px 15px;
    }

    .willkommen h1 {
        font-size: 26px;
    }

}