/* About Section - Hero Style */
.about-section {
    background: var(--color-bg-light);
    padding: 0;
}

.about-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 70vh;
    align-items: center;
}

.about-block:nth-child(odd) {
    background: white;
}

.about-block:nth-child(even) {
    background: var(--color-cream-light);
}

.about-image {
    height: 100%;
    min-height: 70vh;
    background-size: cover;
    background-position: center;
    position: relative;
}

/* Placeholder gradient se non hai ancora immagini */
.about-image.placeholder-1 {
    background: linear-gradient(135deg, var(--color-sage) 0%, var(--color-teal) 100%);
}

.about-image.placeholder-2 {
    background: linear-gradient(135deg, var(--color-orange) 0%, var(--color-red) 100%);
}

.about-image.placeholder-3 {
    background: linear-gradient(135deg, var(--color-cream) 0%, var(--color-yellow) 100%);
}

.about-content {
    padding: 3rem 2rem;
    max-width: 600px;
    margin: 0 auto;
}

.about-block:nth-child(even) .about-content {
    order: -1;
}

.about-label {
    display: inline-block;
    background: var(--color-teal);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 2rem;
}

.about-title {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--color-teal);
    margin-bottom: 1.5rem;
    line-height: 1.1;
    letter-spacing: -1px;
}

.about-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 1.5rem;
}

.about-text strong {
    color: var(--color-teal);
    font-weight: 700;
}

/* Mobile */
@media (max-width: 768px) {
    .about-block {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .about-image {
        min-height: 40vh;
        order: -1 !important;
    }

    .about-content {
        padding: 3rem 2rem;
        order: 0 !important;
    }

    .about-title {
        font-size: 2.5rem;
    }

    .about-text {
        font-size: 1rem;
    }
}