/* ? START yoga-approach-section*/
.yoga-approach-section {
    padding: 50px 0;
    position: relative;
    background-color: #fff;
   /* background-image: url('images/yoja.jpg')*/; /* Immagine di sfondo pattern floreale */
    background-size: cover;
    background-repeat: no-repeat;
}

.section-container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0 15px;
    position: relative;
}

.section-title {
    font-size: 40px;
    font-family: "Cormorant", serif;
    font-weight: 700;
    color: #556b2f; /* Verde oliva per il titolo */
    margin-bottom: 30px;
    text-align: left;
}

.yoga-columns {
    display: flex;
    gap: 30px;
    position: relative;
    background-color: rgba(255, 255, 255, 0.9); /* Sfondo bianco semi-trasparente */
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    /*display: flex;
    gap: 0; !* Rimuove lo spazio tra le colonne *!
    position: relative;
    border: 1px solid #f0f0f0; !* Bordino sottile attorno all'intero contenuto *!
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    background-color: #fff;
    margin-bottom: 30px;*/
}

/* Linea centrale che simula la piega del quaderno */
.yoga-columns:before {
    content: "";
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 1px;
    /*background-color: #e0e0e0;*/
    transform: translateX(-50%);
    z-index: 1;
}

.yoga-column {
    flex: 1;
    padding: 0;
    position: relative;
}

/*.yoga-column.left-column {
    border-right: 1px solid #f0f0f0;
    border-radius: 3px;
    color: var(--color-gray);
    background-color: var(--color-white);
    background-image: url('../images/bg-block-top.png'), url('../images/bg-block-bottom.png');
    background-repeat: no-repeat, no-repeat;
    background-position: top right, bottom left;
    -webkit-box-shadow: 0px 15px 40px -5px rgb(0 0 0 / 10%);
    box-shadow: 0px 15px 40px -5px rgb(0 0 0 / 10%);
}*/

.yoga-column.left-column {
    border-right: 1px solid #f0f0f0;
    width: calc(25% - 20px);
    padding: 50px 10px;
    margin: 10px;
    border-radius: 3px;
    color: var(--color-gray);
    background-color: var(--color-white);
    background-image: url('../images/bg-block-top.png'), url('../images/bg-block-bottom.png');
    background-repeat: no-repeat, no-repeat;
    background-position: top right, bottom left;
    -webkit-box-shadow: 0px 15px 40px -5px rgb(0 0 0 / 10%);
    box-shadow: 0px 15px 40px -5px rgb(0 0 0 / 10%);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.yoga-column.right-column {
    border-right: 1px solid #f0f0f0;
    width: calc(25% - 20px);
    padding: 50px 10px;
    margin: 10px;
    border-radius: 3px;
    color: var(--color-gray);
    background-color: var(--color-white);
    background-image: url('../images/bg-block-top.png'), url('../images/bg-block-bottom.png');
    background-repeat: no-repeat, no-repeat;
    background-position: top right, bottom left;
    -webkit-box-shadow: 0px 15px 40px -5px rgb(0 0 0 / 10%);
    box-shadow: 0px 15px 40px -5px rgb(0 0 0 / 10%);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.yoga-column:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.column-content {
    padding: 30px;
    height: 100%;
    display: flex;
    flex-direction: column;
    background-color: rgba(255, 255, 255, 0.85); /* Sfondo bianco semi-trasparente */
    border-radius: inherit;
}

.image-container {
    margin: 20px 0;
    text-align: center;
}

.column-image {
    max-width: 50%;
    height: 400px;
    border-radius: 5px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.yoga-bio-text {
    margin-bottom: 15px;
    line-height: 1.6;
    font-size: 16px;
    color: #555;
    font-family: "Poppins", sans-serif;
}

.benefits-title {
    color: #da7b67; /* Colore rosa/salmone per i titoli */
    font-family: "Cormorant", serif;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 20px;
    margin-top: 15px;
}

.yoga-points-list,
.benefits-list,
.benefits-list-continued {
    padding-left: 20px;
    margin-bottom: 20px;
}

.yoga-points-list li,
.benefits-list li,
.benefits-list-continued li {
    margin-bottom: 8px;
    line-height: 1.5;
    color: #555;
}

.cta-text {
    margin-top: 25px;
    font-size: 18px;
    color: #556b2f;
    font-weight: bold;
}


/* Animazione per il caricamento della sezione */
.yoga-approach-section {
    animation: fadeIn 0.8s ease-out forwards;
    /*padding: 50px 0;*/
    background-color: #fff;
    /*background-image: url('../images/lotus.png'), url('../images/sheet.png'); *//* Sostituisci con l'immagine di pattern che stai utilizzando */
    background-repeat: no-repeat, no-repeat;
    background-position: -100px top, right bottom;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@media all and (max-width: 992px) {
    .yoga-columns {
        flex-direction: column;
    }

    .yoga-columns:before {
        display: none;
    }

    .yoga-column.left-column {
        border-right: 1px solid #f0f0f0;
        width: calc(25% - 20px);
        padding: 50px 10px;
        margin: 10px;
        border-radius: 3px;
        color: var(--color-gray);
        background-color: var(--color-white);
        background-image: url('../images/bg-block-top.png'), url('../images/bg-block-bottom.png');
        background-repeat: no-repeat, no-repeat;
        background-position: top right, bottom left;
        -webkit-box-shadow: 0px 15px 40px -5px rgb(0 0 0 / 10%);
        box-shadow: 0px 15px 40px -5px rgb(0 0 0 / 10%);
    }

    .section-title {
        font-size: 40px;
        font-family: "Cormorant", serif;
        font-weight: 700;
        color: #556b2f;
        margin-bottom: 30px;
        text-align: left;
    }
}
/* ! START yoga-approach-section*/
