/* 1. Grund-Setup für die gesamte Seite */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html, body {
    height: 100%;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    background-color: #f4f4f9;
    color: #333;
    
    /* Flexbox erzwingt den Sticky-Footer */
    display: flex;
    flex-direction: column;
}

h1{
    line-height: 3;
}

h2{
    line-height: 2;
}

/* 2. Header-Design */
.site-header {
    background-color: #02a570;
    color: #fff;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand {
    font-size: 1.5rem;
    font-weight: bold;
    background-color: #02a570;
}

.main-nav a {
    color: #fff;
    text-decoration: none;
    margin-left: 1.5rem;
    transition: color 0.3s;
}

.main-nav a:hover {
    color: #34495e;
}

/* 3. Hauptinhalt */
.content {
    flex: 1; /* Füllt den gesamten restlichen Raum aus */
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 2rem;
    background-color: #fff;
}

/* 3. Hauptinhalt Contact*/
.contentcontact {
    flex: 1; /* Füllt den gesamten restlichen Raum aus */
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 2rem;
    background-image: url('elevate-dI-aXC7DWpQ-unsplash_2.jpg');
    background-size: cover;       /* Bild füllt das div komplett aus */
    background-position: center;  /* Bild wird mittig zentriert */
    background-repeat: no-repeat; /* Bild wird nicht mehrfach wiederholt */
    background-width: 100%;
    color: #fff;
}

/* 4. Footer-Design */
.site-footer {
    background-color: #34495e;
    color: #fff;
    text-align: center;
    padding: 1rem;
    font-size: 0.9rem;
}
.site-footer a {
    color: #fff;
    text-decoration: none;
    margin-left: 1.5rem;
    transition: color 0.3s;
}
