/* Global Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f0f0f0;
}

/* Header */
header {
    background-color: #333;
    color: white;
    padding: 10px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    position: relative;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2); /* Leichter Schatten für Trennung */
}

.header-container {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-grow: 1;
}

header h1 {
    margin: 0;
    font-size: 1.8em;
    color: white;
    flex-grow: 1;
}

header img.logo {
    width: 80px;
    height: 80px;
    border-radius: 8px;
    margin-left: auto;
}

/* Hamburger-Menü */
.menu-icon {
    display: none;
    font-size: 24px;
    color: white;
    cursor: pointer;
    z-index: 10;
}

nav {
    display: flex;
    gap: 10px;
}

nav a {
    text-decoration: none;
    color: #4CAF50;
    font-weight: bold;
    padding: 10px;
}

/* Content */
.content {
    padding: 20px;
    max-width: 800px;
    margin: auto;
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    text-align: left;
}

.content img {
    display: block;
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 20px auto;
}
/*Host-Iminges*/



/* Footer */
footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 1em 0;
    margin-top: 20px;
}

footer a {
    color: #4CAF50;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .menu-icon {
        display: block;
    }

    nav {
        display: none;
        flex-direction: column;
        background-color: #333;
        width: 100%;
        position: absolute;
        top: 60px;
        left: 0;
        z-index: 9;
    }

    nav.open {
        display: flex;
    }

    nav a {
        color: white;
        padding: 10px;
        border-top: 1px solid #4CAF50;
    }

    header h1 {
        font-size: 1.5em;
    }
}
