/* Styles für die Hero-Sektion */
.hero-section {
    height: 80vh;
    min-height: 600px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-color: #000;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('/images/Web/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    z-index: 1;
    animation: subtle-zoom 20s infinite alternate ease-in-out;
}

@keyframes subtle-zoom {
    0% { transform: scale(1); }
    100% { transform: scale(1.05); }
}

.hero-content {
    max-width: 800px;
    padding: 0 30px;
    text-align: center;
    z-index: 2;
}

.hero-content h1 {
    font-family: 'JosefinSlab-SemiBold', serif;
    font-size: 4rem;
    color: #fff;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.tagline {
    font-size: 1.4rem;
    color: #fff;
    margin-bottom: 30px;
    line-height: 1.6;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.hero-content .cta-button {
    background-color: var(--primary-color);
    color: white;
}

.hero-content .cta-button:hover {
    background-color: var(--secondary-color);
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }
}