/* ===== ABOUT / RÓLUNK SZEKCIÓ ===== */
.about-section {
    position: relative; /* fontos, hogy a ::before a szülőhöz igazodjon */
    display: flex;
    align-items: stretch;
    justify-content: flex-start;
    gap: 2rem;
    max-height: 580px;
    overflow: hidden;
}

.about-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url('../../images/about/about_bg.png') center center / cover no-repeat;
    opacity: 0.35;
    pointer-events: none;
    z-index: 0;
    filter: blur(6px);

    /* Fade maszk */
    -webkit-mask-image: linear-gradient(
        to right,
        rgba(0,0,0,1) 0%,
        rgba(0,0,0,0.2) 50%,
        rgba(0,0,0,1) 100%
    );
    mask-image: linear-gradient(
        to right,
        rgba(0,0,0,1) 0%,
        rgba(0,0,0,0.2) 50%,
        rgba(0,0,0,1) 100%
    );
}

.highlight-blue {
    color: #3880cd;

}

/* Tartalom mindig a háttér fölött */
.about-image,
.about-text {
    position: relative;
    z-index: 1;
}

.about-container {
    display: flex;
    align-items: stretch;
    justify-content: flex-start;
    gap: 2rem;
    margin: 0 auto;
}

/* Kép */
.about-image {
    flex: 0 0 50%;
    max-width: 50%;
    height: 100%;
    overflow: hidden;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 35%;
    display: block;
}

/* Szöveg */
.about-text {
    flex: 1;
    max-width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: #333;
}

.about-text h2 {
    margin-bottom: 1rem;
    text-transform: uppercase;
    color:#1b4256;
    font-size: clamp(1.2rem, 2vw, 2.2rem);
}

.about-text p {
    font-size: clamp(0.9rem, 1vw, 1.1rem);
    text-align: justify;
    padding: 6px;
}

/* ===== MOBIL ===== */
@media screen and (max-width: 900px) {
    .about-section {
        max-height: none; /* eltávolítjuk a fix magasságot */
        overflow: visible; /* a szöveg ne legyen levágva */
    }

    .about-container {
        flex-direction: column; /* kép alá kerüljön a szöveg */
    }

    .about-image {
        flex: 0 0 auto;
        max-width: 100%;
        height: auto;
        max-height: 200px; /* maximum magasság a képnek */
        overflow: hidden;
    }

    .about-image img {
        width: 100%;
        height: auto;
        object-fit: cover;
    }

    .about-text {
        max-width: 100%;
        text-align: center;
        margin-top: 1rem;
    }
    highlight-blue {
    color: #3880cd;
    font-size: clamp(0.9rem, 1vw, 1.1rem);
    }
}

/* ===== Köztes asztali (tablet) ===== */
@media only screen and (min-width: 900px) and (max-width: 1200px) {
    .about-container {
        display: flex;
        align-items: stretch;
        justify-content: flex-start;
        gap: 2rem;
        max-height: 580px;
        overflow: hidden;
    }

    .services-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(237px, 1fr));
        gap: 20px;
        max-width: 1200px;
        margin: 0 auto;
    }
        highlight-blue {
    color: #3880cd;
    font-size: clamp(0.9rem, 1vw, 1.1rem);
    }
}

/* ===== Fade animáció ===== */
.about-image,
.about-text {
    opacity: 0;
    transform: translateY(40px);
    transition: all 1.2s ease;
}

.fade-section.visible .about-image {
    opacity: 1;
    transform: translateY(0);
}

.fade-section.visible .about-text {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.2s;
}

@media screen and (max-width: 400px) {
    highlight-blue {
    color: #3880cd;
    font-size: clamp(0.9rem, 1vw, 1.1rem);
    }
}