/*? Start style for section1 yoga-hero-section in yoga page*/
.yoga-hero-section {
    width: 100%;
    padding: 80px 20px;
    overflow: hidden;
    min-height: 550px;
    position: relative;
    /*background-image: url('../images/yoja.jpg');*/
    background-size: cover;
    background-position: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.yoga-content-container {
    z-index: 2;
    max-width: 1000px;
    width: 100%;
    margin: 0 auto;
    flex: 1;
    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-content-container:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.instructor-column {
    display: flex;
    flex-direction: row;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.95);
    border-radius: 10px;
    padding: 40px;
    box-shadow: 0px 15px 40px -5px rgba(0, 0, 0, 0.1);
    gap: 40px;
}

.instructor-image-container {
    flex: 0 0 auto;
    width: 300px;
    height: 300px;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.instructor-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.instructor-bio {
    flex: 1;
    padding: 0;
}

.instructor-name {
    color: #0c6b1d;
    font-size: 1.8rem;
    margin-bottom: 20px;
    font-weight: 700;
    letter-spacing: 1px;
}

.instructor-description {
    color: #333;
    line-height: 1.8;
    font-size: 1.1rem;
}

.background-decoration {
    position: absolute;
    width: 200px;
    height: 200px;
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0.2;
}

.background-decoration.left {
    bottom: 50px;
    left: 0;
    background-image: url('../images/bg-block-bottom.png');
}

.background-decoration.right {
    top: 50px;
    right: 0;
    background-image: url('../images/bg-block-top.png');
}

/* Responsive design */
@media (max-width: 768px) {
    .instructor-column {
        flex-direction: column;
        padding: 30px;
        gap: 20px;
    }

    .instructor-image-container {
        width: 200px;
        height: 200px;
        margin: 0 auto;
    }

    .instructor-name {
        text-align: center;
    }
}
/*! end style for section1 yoga-hero-section in yoga page*/


/*? Start section 2*/
.initially-hidden {
    visibility: hidden;
    opacity: 0;
}

.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: 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;
    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: 100%;
    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;
}

/*.tags-links {
    display: block;
    margin-top: 30px;
    font-size: 14px;
    color: #da7b67;
}

.tags-links a:hover {
    color: #777;
}*/

/*.tags-links a {
    display: inline-block;
    margin: 0 5px;
    color: #556b2f;
    text-decoration: none;
    transition: color 0.3s ease;
}*/



@media all and (max-width: 992px) {
    .yoga-columns {
        flex-direction: column;
    }

    .yoga-columns:before {
        display: none;
    }

    .yoga-column.left-column {
        border-right: none;
        border-bottom: 1px solid #f0f0f0;
    }

    .section-title {
        font-size: 35px;
        text-align: center;
    }
}

/*End section 2*/


/*start style for first section yoga-hero-section in yoga page*/

@media (max-width: 768px) {
    .yoga-hero-section {
        padding: 60px 15px;
        min-height: 450px;
    }
}

@media (max-width: 576px) {
    .yoga-hero-section {
        padding: 60px 15px;
        min-height: 450px;
    }
}

@media (max-width: 992px) {
    .instructor-column {
        flex-direction: column;
        text-align: center;
    }
}

/*end style for first section yoga-hero-section in yoga page*/