/* Grundlegende Stile */
body { 
	font-family: 'Arial', sans-serif; 
	margin: 0; 
	padding: 0; 
	background-color: #ecf0f1; 
	color: #2c3e50; 
}

a {
	color: #000000;
}

a:hover {
	color: #555555;
}

p, li {
	line-height: 1.4em;
}
/* Header Stile */
header {
    background: linear-gradient(90deg, #767171, #767171, #666, #555);
    color: #fff;
    padding: 1rem 0;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap; /* Flex-Wrap für Responsive Design */
    max-width: 1300px;
    margin: auto;
}

header .logo {
    max-width: 200px;
    height: auto;
}

header nav {
    width: auto;
    flex-grow: 1;
    text-align: center;
}

header nav ul {
    padding: 0;
    list-style: none;
    display: flex;
    justify-content: space-between;
    gap: 10px;
    margin: 0;
}

header nav ul li {
    flex: 1;
    text-align: center;
}

header nav ul li a {
    color: #fff;
    text-decoration: none;
}

/* Navivationsmenu Stile */
nav { 
	text-align: center; 
	margin: 20px; 
}

nav a { 
	margin: 0 15px; 
	text-decoration: none; 
	color: #555; 
	font-weight: bold; 
	font-size: 1.2em; 
	transition: color 0.3s ease; 
}

nav a:hover { 
	color: #777; 
}

/* Main Body Section Stile */
section { 
	padding: 30px; 
	max-width: 900px; 
	margin: 5px auto; 
	background: white; 
	border-radius: 10px; 
	box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1); 
}

#about { 
	background: linear-gradient(60deg, #777, #999); 
	color: white; 
}

#about h2, #kontakt p { 
	color: white; 
}

#kontakt { 
	background: linear-gradient(40deg, #444, #666); 
	color: white; 
}

#impressum { 
	background: linear-gradient(40deg, #333, #333, #333, #666); 
	color: white; 
}

#kontakt h2, #kontakt label { 
	color: white; 
}
#kontakt a, #impressum a, #about a { 
	color: #cccccc; 
}

#kontakt a:hover, #impressum a:hover, #about a:hover { 
	color: #ffffff; 
}

form input, form textarea { 
	width: 100%; 
	padding: 10px; 
	margin: 10px 0; 
	border: 1px solid #ccc; 
	border-radius: 5px; 
	background: #777; 
	color: white; 
}

form button { 
	background: white; 
	color: #555; 
	border: none; 
	padding: 10px 20px; 
	font-size: 1em; 
	cursor: pointer; 
	border-radius: 5px; 
	transition: background 0.3s ease, color 0.3s ease; 
}

form button:hover { 
	background: #ccc; 
	color: #555; 
}

/* Footer Stile */
footer { 
	text-align: center; 
	padding: 15px; 
	background: linear-gradient(90deg, #555, #777); 
	line-height: 1.4em;
	color: white; 
	margin-top: 20px; 
	border-radius: 0 0 10px 10px; 
}

footer a { 
	color: #cccccc; 
}

footer a:hover { 
	color: #ffffff; 
}

/* Responsives Design */
/*====================*/
@media (max-width: 768px) {
    
	header {
		background: linear-gradient(160deg, #767171, #767171, #666, #555);
	}
	
    header .header-content {
        flex-direction: column;
        align-items: center;
    }

    header .logo {
        padding-bottom:10px;
        border-bottom: 1px solid #ccc;
        margin-bottom:10px;
	}
	header nav ul {
        flex-direction: column;
    }

    header nav ul li {
        margin-bottom: 10px;
    }

    section {
        width: 90%;
        padding:0.5rem;
    }

    .container {
        width: 100%;
        padding: 0 0.5rem;
    }

	#impressum { 
		background: linear-gradient(40deg, #333, #333, #333, #333, #333, #333, #666); 
	}

    form {
        width: 100%;
    }
	form input, form textarea { 
		width: 90%; 
	}
}