/* Hero Section - Vollbreite Styling */

.hero-section {
    position: relative;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    padding-left: 2rem;
    padding-right: 2rem;
    overflow: hidden;
    min-height: 95vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
	background-color: rgba(255, 255, 255, 0.1);
}

.lens-flare-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 5;
    pointer-events: none;
}

/* Verbesserte Text-Sichtbarkeit in der Hero-Section */
.hero-section h1 {
    position: relative;
    z-index: 10;
    text-shadow: 0 0 15px rgba(0, 0, 0, 0.7);
    max-width: 1200px;
}

.hero-section p {
    position: relative;
    z-index: 10;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.8);
    max-width: 900px;
}

.cta-button {
    position: relative;
    z-index: 10;
}

/* Anpassungen für kleine Bildschirme */
@media (max-width: 768px) {
    .hero-section {
        min-height: 80vh;
    }
    
    .hero-section h1 {
        font-size: 3rem;
    }
    
    .hero-section p {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .hero-section {
        min-height: 70vh;
    }
    
    .hero-section h1 {
        font-size: 2.5rem;
    }
}