.hero-section {
    min-height: 500px;
    display: flex;
    align-items: center;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-image: url('../images/blok/blok1.jpg?v=1');
    animation: heroSlideshow 15s infinite;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(23, 37, 84, 0.72) 0%,
        rgba(30, 64, 175, 0.58) 45%,
        rgba(12, 74, 110, 0.52) 100%
    );
    z-index: 2;
}

.hero-section .container {
    z-index: 3;
}

.hero-icon {
    animation: heroFadeIn 1s ease-out 0.5s both;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-title {
    animation: heroFadeIn 1s ease-out 0.7s both;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    font-weight: 700;
}

.hero-subtitle {
    animation: heroFadeIn 1s ease-out 0.9s both;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.4);
}

.hero-btn {
    animation: heroFadeIn 1s ease-out 1.1s both;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
}

.hero-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

@keyframes heroSlideshow {
    0%, 33% {
        background-image: url('../images/blok/blok1.jpg?v=1');
    }
    34%, 66% {
        background-image: url('../images/blok/blok2.jpg?v=1');
    }
    67%, 100% {
        background-image: url('../images/blok/blok3.jpg?v=1');
    }
}

@keyframes heroFadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .hero-section {
        min-height: 400px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
}
