/* Allgemeine Stile */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #ffffff;
}
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}
h1, h2, h3 {
    font-weight: 700;
}
a {
    text-decoration: none;
    color: #32cd32;
}
a:hover {
    text-decoration: underline;
}
button {
    cursor: pointer;
}

/* Header */
header {
    background-color: rgba(0, 0, 0, 0.85);
    color: #ffffff;
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
header .logo {
    font-size: 1.8rem;
    color: #ffffff;
}
header .highlight {
    color: #32cd32;
}
header nav ul {
    list-style: none;
    display: flex;
    justify-content: flex-end;
    gap: 20px;
}
header nav ul li a {
    color: #ffffff;
}

/* Hero Section */
#hero {
    height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('assets/hero.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #ffffff;
    padding: 0 20px;
}
.hero-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}
.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}
.btn {
    display: inline-block;
    padding: 10px 20px;
    font-size: 1rem;
    background-color: #32cd32;
    color: #ffffff;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}
.btn:hover {
    background-color: #28a828;
}

/* Light Sections */
.light-section {
    background-color: #f9f9f9;
    padding: 60px 0;
    text-align: center;
}
.light-section h3 {
    margin-bottom: 20px;
    color: #32cd32;
}
.light-section p {
    margin-bottom: 20px;
}

/* Features Section */
#features {
    padding: 60px 0;
    text-align: center;
}
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}
.feature-item {
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Kontakt Section */
form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 600px;
    margin: 0 auto;
}
form input, form textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    background-color: #f9f9f9;
}
form button {
    padding: 10px;
    border: none;
    border-radius: 5px;
    background-color: #32cd32;
    color: #ffffff;
    font-size: 1rem;
    font-weight: bold;
}
form button:hover {
    background-color: #28a828;
}

/* Footer */
footer {
    background-color: #000000;
    color: #ffffff;
    text-align: center;
    padding: 20px 0;
}
