/* Hero Section - Úvod */
.hero-section-onas {
    background: linear-gradient(135deg, #003380 0%, #000000 100%);
    color: white;
    padding: 75px 0;
    text-align: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: unset !important;
}

.hero-section-onas .container {
    position: relative;
    z-index: 1;
}

.hero-section-onas .hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.hero-section-onas .page-title {
    color: white;
    margin-bottom: 15px;
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
}

.hero-section-onas .hero-subtitle {
    color: white;
    font-size: 1.25rem;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
    font-weight: 300;
}

@media (max-width: 768px) {
    .hero-section-onas .page-title {
        font-size: 2rem;
    }
    
    .hero-section-onas .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-section-onas {
        padding: 50px 0;
    }
}
