/* --- HERO SEKCE --- */
.about-hero {
    height: 50vh;
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    position: relative;
    margin-top: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modern-title {
    font-size: 3.5rem;
    font-weight: 300;
    letter-spacing: 8px;
    text-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.title-underline {
    width: 100px;
    height: 3px;
    background: var(--brand-blue);
    margin: 20px auto 0;
}

/* --- IKONY POD BIOGRAFIÍ --- */
.bio-socials {
    display: flex;
    gap: 10px;
}

.bio-social-link {
    color: #212529;
    font-size: 1.6rem;
    transition: all 0.3s ease;
}

.bio-social-link:hover {
    color: var(--brand-blue);
    transform: translateY(-3px);
}

/* --- HODNOTY A GRAFIKA --- */
.underline-long-brand {
    border-bottom: 3px solid var(--brand-blue) !important;
    display: inline-block;
    padding-bottom: 10px;
}

.brand-blue-text-final {
    color: var(--brand-blue) !important;
}

.box-blue-final {
    background-color: var(--brand-blue) !important;
}

.vision-text {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.1rem;
}

.main-profile-img {
    max-width: 90%;
    transition: transform 0.3s ease;
}

.shadow-extreme {
    box-shadow: 0 40px 80px -20px rgba(0,0,0,0.25) !important;
}

.bg-light-custom {
    background-color: #f8f9fa !important;
}

.value-icon-wrap {
    width: 80px;
    height: 80px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    font-size: 2rem;
    color: var(--brand-blue);
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.value-item {
    transition: transform 0.3s ease;
}

.value-item:hover {
    transform: translateY(-5px);
}

.section-title::after {
    display: none !important;
}

/* --- RESPONZIVITA --- */
@media (max-width: 768px) {
    .about-hero { height: 40vh; }
    .modern-title { font-size: 1.8rem; letter-spacing: 4px; }
    .row.g-0 { border-radius: 0; }
}