/* CONTAINER */
.divMainPM {
    background-color: rgba(255, 255, 255, 0.9);
    width: 100%;
    /*max-width: 1200px;
    margin: 0 auto;*/
}

/* HERO */
.about-hero {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    text-align: center;
}

.LogoPM {
    max-width: 70%;
    height: auto;
    border-radius: 10px;
}

/* TEXT BLOCK */
.about-text,
.season-section,
.meet-section {
    margin-top: 60px;
}

.season-flex {
    display: flex;
    align-items: flex-start;
    gap: 50px;
    margin-bottom: 50px;
}

/* Teksts aizņem pārējo vietu */
.season-flex p {
    flex: 1;
    font-size: 18px;
    line-height: 1.6;
}

/* Pavasaris-Vasara bilde pa labi*/
.season-flex.reverse {
    flex-direction: row-reverse;
}

/* IMAGES */
/* Bildes izmērs desktop */
.rudensZiemaPic,
.pavasarisVasaraPic {
    width: 380px;
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    flex-shrink: 0;
}


.about-flex {
    display: flex;
    align-items: flex-start;
    gap: 40px;
}

/* Desktop bilde mazāka */
.parMumsPic {
    width: 350px;
    /* fiksēts izmērs desktop */
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    flex-shrink: 0;
    /* lai nesaspiežas */
}

/* Teksts lai aizņem visu pārējo vietu */
.about-flex p {
    flex: 1;
    font-size: 18px;
    line-height: 1.6;
}

/* TEXT */
p {
    font-size: 18px;
    line-height: 1.6;
}

/* TABLET */
@media (max-width: 991px) {
    .about-flex {
        flex-direction: column;
        text-align: start;
    }

    h1 {
        font-size: 32px;
    }

    .season-flex,
    .season-flex.reverse {
        flex-direction: column;
    }

    .rudensZiemaPic,
    .pavasarisVasaraPic {
        width: 100%;
    }

    .season-flex p {
        width: 100%;
    }
}

/* MOBILE */
@media (max-width: 600px) {
    h1 {
        font-size: 24px;
    }

    h2 {
        font-size: 20px;
    }

    p {
        font-size: 16px;
    }

    .divMainPM {
        padding: 100px 15px 40px;
    }

    .about-flex {
        flex-direction: column;
    }

    .parMumsPic {
        width: 100%;
    }

    .about-flex p {
        width: 100%;
        text-align: start;
        font-size: 16px;
    }
}