/* ======================================= */
/* BASISTYLING & STATISCHER HINTERGRUND */
/* ======================================= */
body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    color: #333;
    /* Hintergrundbild für die gesamte Seite */
    background-image: url('https://velo-virus.de/pics/ps.jpg'); 
    background-size: cover; 
    background-attachment: fixed; /* Fixiert das Bild beim Scrollen */
    background-position: center center;
    min-height: 100vh;
}

/* --- Banner (200px Höhe) --- */
.main-header {
    width: 800px;
    height: 200px;
	background-image: url('https://velo-virus.de/pics/logo.jpg');
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #ffffff; 
    background-color: rgba(0, 0, 0, 0.5); /* Überlagerung für Lesbarkeit */
}
.main-header h1 { margin-bottom: 5px; }

/* --- Button Container --- */
.content-area { padding-top: 20px; text-align: center; }

.button-container {
    display: flex; /* Buttons nebeneinander */
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
    padding: 10px;
}

.button {
    text-decoration: none;
    color: #ffffff;
    background-color: #007bff;
    padding: 10px 20px;
    border-radius: 5px;
    transition: background-color 0.3s ease;
    font-weight: bold;
    min-width: 100px;
    text-align: center;
}
.button:hover { background-color: #0056b3; }

/* --- Inhaltsbereiche (Anker-Ziele) --- */
.content-section {
    padding: 30px 20px;
    margin: 20px auto;
    max-width: 100%;
    background-color: rgba(181, 145, 47, 0.6);
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.content-section h2 {
    color: #007bff;
    border-bottom: 2px solid #007bff;
    padding-bottom: 10px;
    margin-top: 0;
}

/* --- Footer --- */
footer {
    position: relative; /* Oder 'fixed', je nach gewünschtem Verhalten */
    width: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    color: #fff;
    text-align: center;
    padding: 10px 0;
    font-size: 0.8em;
}

/* ======================================= */
/* MEDIA QUERY: RESPONSIVE DESIGN (Max. 768px) */
/* ======================================= */
@media screen and (max-width: 768px) {
    
    /* Banner Höhe reduzieren */
    .main-header {
        height: 180px; 
        padding: 0 10px;
    }

    /* Buttons untereinander anordnen */
    .button-container {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
        padding: 0 20px;
    }

    .button {
        min-width: unset;
        width: 100%; /* Volle Breite */
    }

    /* Content Padding anpassen */
    .content-section {
        padding: 30px 15px; 
        margin: 15px auto;
        box-shadow: none;
    }
}