/* Allgemeine Stile */
body {
    margin: 0;
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Hero-Bereich */
.hero {
	background-color: purple;
    height: 100vh;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    transition: background-color 0.5s ease;
}

.hero-title {
    font-size: 2.5rem;
    margin: 0;
    cursor: pointer;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-top: 10px;
}
.cta-button {
    background-color: #ff5733;
    color: white;
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    margin-top: 20px;
    border-radius: 5px;
}

.cta-button:hover {
    background-color: #e04e2a;
}
/* Feature-Bereich */
.features {
    background: #f9f9f9;
    padding: 50px 0;
    text-align: center;
}

.feature {
    margin-bottom: 20px;
}

.feature h2 {
    font-size: 2rem;
    color: #444;
}

.feature p {
    font-size: 1rem;
    color: #666;
}

/* Footer */
.footer {
    background: #333;
    color: white;
    text-align: center;
    padding: 20px 0;
}

.footer p {
    margin: 0;
    font-size: 0.9rem;
}
/* Impressum Overlay */
.overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1000;
    justify-content: center;
    align-items: center;
    visibility: hidden;
    opacity: 0;
    transition: visibility 0s, opacity 0.3s ease-in-out;
}

.overlay.active {
    visibility: visible;
    opacity: 1;
    display: flex;
}

.overlay-content {
    background: white;
    padding: 20px;
    border-radius: 10px;
    text-align: left;
    width: 50%;
    max-width: 500px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.close-button {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 20px;
    cursor: pointer;
}
