/* assets/css/about.css - עיצוב בלעדי לדף אודות */

.about-split {
    display: flex;
    align-items: center;
    min-height: 80vh;
    background-color: white;
}

.about-image {
    flex: 1;
    height: 80vh;
    overflow: hidden;
}

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

.about-content {
    flex: 1;
    padding: 80px;
    max-width: 800px;
}

.about-content h1 {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 30px;
    text-transform: uppercase;
}

.sub-title {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #888;
    margin-bottom: 15px;
    display: block;
    font-weight: 700;
}

.lead {
    font-size: 1.25rem;
    font-weight: 500;
    margin-bottom: 20px;
    color: black;
}

/* מובייל */
@media (max-width: 900px) {
    .about-split {
        flex-direction: column-reverse; /* טקסט למעלה, תמונה למטה */
    }
    .about-image {
        height: 40vh;
        width: 100%;
    }
    .about-content {
        padding: 40px 20px;
    }
}