/*
Theme Name: IfG Theme Responsive
Theme URI: https://gesundheitsberater24.org
Author: Institut für Gesundheit
Author URI: https://gesundheitsberater24.org
Description: Modernisiertes Theme für das Institut für Gesundheit: Responsive Design, Burger-Menü, saubere Struktur.
Version: 2.0
*/

body {
    margin: 0;
    font-family: Arial, sans-serif;
}

header {
    background: #00FF00;
    padding: 10px 20px;
}

header h1 {
    margin: 0;
    color: #000;
    font-size: 26px;
}

nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 20px;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
}

/* Responsive Navigation */
.menu-toggle {
    display: none;
    font-size: 28px;
    background: none;
    border: none;
    color: #fff;
}

@media (max-width: 768px) {
    nav ul {
        flex-direction: column;
        display: none;
    }
    nav ul.active {
        display: flex;
    }
    .menu-toggle {
        display: block;
    }
}

footer {
    background: #eee;
    color: #333;
    text-align: center;
    padding: 20px;
}

footer a {
    color: #505050 !important;
    text-decoration: none;
}
