/**
 * Hero Slider Styles
 * Styles für den Hero-Bereich der Gebietsseiten
 */

.epcan-hero {
    width: 100%;
    height: 550px;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
}

.epcan-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.6));
    z-index: 1;
}

.epcan-hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    color: white;
    padding: 40px 20px;
    max-width: 1200px;
}

.epcan-hero-title {
    font-size: 48px;
    font-weight: 400;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
    line-height: 1.2;
    color: white;
}

.epcan-hero-title strong {
    font-weight: 700;
}

.epcan-hero-info {
    font-size: 20px;
    margin-bottom: 30px;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.7);
}

.epcan-hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.epcan-hero-button {
    padding: 16px 20px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.2s ease;
    display: inline-block;
    cursor: pointer;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.epcan-hero-button.primary {
    background-color: #f1800e;
    color: #fff;
    border: none;
}

.epcan-hero-button.primary:hover {
    background-color: #d66f0c;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.2);
    color: #fff;
    text-decoration: none;
}

.epcan-hero-button.primary:active {
    transform: translateY(1px);
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
}

.epcan-hero-button.secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.epcan-hero-button.secondary:hover {
    background: white;
    color: #333;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .epcan-hero {
        height: 400px;
        background-position: center 50%;
    }

    .epcan-hero-title {
        font-size: 32px;
    }

    .epcan-hero-info {
        font-size: 18px;
    }

    .epcan-hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .epcan-hero-button {
        width: 80%;
        text-align: center;
    }
}
