/**
 * Hero Block Styles - Exact copy van origineel
 */

.eicom-hero {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    background-color: var(--color-text-dark);
    overflow: hidden;
    color: white;
}

/* Gradient Overlay */
.eicom-hero .hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(45deg, rgba(0, 107, 140, 1) 5%, rgba(0, 107, 140, 0.2) 60%);
    z-index: 1;
}

/* Content */
.eicom-hero .hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    color: #ffffff;
}

.eicom-hero .hero-title {
    font-size: clamp(2.5rem, 6vw, 3.5rem);
    font-weight: 800;
    line-height: 1.1;
    color: #ffffff;
    margin-bottom: 24px;
}

.eicom-hero .hero-subtitle {
    font-size: clamp(1.125rem, 2.5vw, 1.375rem);
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 32px;
}

/* Actions */
.eicom-hero .hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

/* Certificaten */
.eicom-hero .hero-certificaten {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.eicom-hero .certificaten-logos {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.eicom-hero .certificaat-logo {
    background-color: rgba(255, 255, 255, 0.95);
    padding: 12px 16px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.eicom-hero .certificaat-logo img {
    height: 40px;
    width: auto;
    max-width: 80px;
    object-fit: contain;
}

.eicom-hero .certificaten-tekst {
    font-size: 14px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
}

/* Animaties */
.eicom-hero .animate-on-scroll {
    animation-delay: 0.2s;
}

.eicom-hero .animate-on-scroll:nth-child(2) {
    animation-delay: 0.4s;
}

.eicom-hero .animate-on-scroll:nth-child(3) {
    animation-delay: 0.6s;
}

.eicom-hero .animate-on-scroll:nth-child(4) {
    animation-delay: 0.8s;
}

/* Responsive */
@media (max-width: 768px) {
    .eicom-hero {
        min-height: 500px;
        padding: 80px 0;
    }

    .eicom-hero .hero-title {
        font-size: 2rem;
        margin-bottom: 20px;
    }

    .eicom-hero .hero-subtitle {
        font-size: 1.125rem;
        margin-bottom: 28px;
    }

    .eicom-hero .hero-actions {
        margin-bottom: 40px;
    }

    .eicom-hero .certificaat-logo img {
        height: 32px;
        max-width: 60px;
    }
}

@media (max-width: 640px) {
    .eicom-hero {
        min-height: 450px;
        padding: 60px 0;
    }

    .eicom-hero .hero-title {
        font-size: 1.75rem;
        margin-bottom: 16px;
    }

    .eicom-hero .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 24px;
    }

    .eicom-hero .hero-actions {
        flex-direction: column;
        margin-bottom: 32px;
    }

    .eicom-hero .hero-actions .btn {
        width: 100%;
        justify-content: center;
    }

    .eicom-hero .certificaat-logo {
        padding: 8px 12px;
    }

    .eicom-hero .certificaat-logo img {
        height: 28px;
        max-width: 50px;
    }

    .eicom-hero .certificaten-tekst {
        font-size: 12px;
        width: 100%;
    }
}
