/* PARTIE PHILOSOPHIE */

.boite {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow:hidden;
}

.philosophie {
    display: flex;
    width: 100%;
    max-width: 1440px; 
    margin: 0 auto;
    padding: 20px;
    box-sizing: border-box;
    height: 100%;
}

.col-gauche {
    padding-left: 50px;
    padding-right: 50px;
    position: sticky;
    top: 100px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height:100%;
}

.col-gauche .ellipse {
    width: 370px;
    height: 467px;
    position: relative;
    overflow: hidden;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #f0f0f0;
    background-size: cover;
    background-position: center;

}

.col-gauche .ellipse-plaisirs {
    background-image: url('img/Gamme2.png');
}

.col-gauche .ellipse-joaillerie {
    background-image: url('img/Gamme3.jpg');
}

.col-gauche .ellipse-haute-joaillerie {
    background-image: url('img/Gamme4.jpg');
}

.col-gauche .ellipse-creations {
    background-image: url('img/Gamme5.jpg');
}

.col-gauche .ellipse-intemporels {
    background-image: url('img/Gamme1.jpg');
}

.col-gauche .slider-container {
    width: 100%;
    height: 100%;
}

.col-gauche .slider {
    display: flex;
    transition: transform 0.5s ease;
    height: 100%;
}

.slide {
    flex-shrink: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 80px;
    object-fit: contain;
}

.slide img {
    max-width: 300px;
    max-height: 100%;
    object-fit: contain;
}

.col-gauche .chevrons-container {
    position: absolute;
    top: 50%;
    width: 100%;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    align-items: center;
    pointer-events: all;
}

.col-gauche .chevron {
    font-size: 48px;
    color: #000;
    cursor: pointer;
    z-index: 10;
    background: transparent;
    border: none;
    padding: 10px;
    border-radius: 50%;
}

.col-gauche .chevron-left {
    margin-left: -20px;
}

.col-gauche .chevron-right {
    margin-right: -20px;
}

.philosophie .col-droite {
    flex: 1;
    display: flex;
    justify-content:center;
    flex-direction: column;
    padding:20px 20px 0px 20px;

}

.col-droite .titre {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
    gap: 20px;
    
}

.col-droite .philosophies {
    padding: 10px 0 0 0;
}



.philosophies-header h2 {
font-size:20px;
}

.header-logo {
    height: 20px;
    margin-top: -5.5px;
    margin-left:-5px;
}

.col-droite .titre h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 30px;
    margin: 0;
    font-weight: 400;
}

.col-droite .titre img {
    height: 30px;
    margin-top: -7.5px;
    margin-left:-5px;
}

.col-droite .texte {
    text-align: center;
    position: relative;
    padding: 20px;
    border-radius: 8px;
    margin-top: 20px;
    font-family: 'Montserrat', sans-serif;
    font-size: 22px;
    line-height: 1.4;
}

.col-droite p {
    margin-bottom: 20px;
}

.col-droite .texte::before {
    content: '“';
    font-family: 'Bickley';
    position: absolute;
    top: -35px;
    left: -15px;
    font-size: 120px;
}

.col-droite .texte::after {
    content: "”";
    font-family: 'Bickley';
    position: absolute;
    bottom: -100px;
    right: 0;
    font-size: 120px;
}




.philosophies-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 50px;
}


.philosophies .ellipse {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 111px;
    height: 141px;
    border-radius: 50%;
    position: relative;
    margin-bottom: 10px;
    background-size: cover;
    background-position: center;
}


.ellipse-image {
    width: 69px;
    height: 69px;
    position: relative; 
    z-index: 1; 
}


.ellipse-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    margin: 0;
}


.bouton {
    margin-top:30px;
}

/* Media Queries */
@media (max-width: 1000px) {
    .philosophie {
        flex-direction: column;
        max-width:100%;
        padding-right:0px;
        padding-left:0px;
    }

    .philosophies-content {
        gap: 0px; 
    }

    .col-gauche {
        padding-left: 20px;
        padding-right: 20px;
        height: fit-content;
        margin-bottom: 20px;
        position:relative;
        top:20px;
    }

    
    .philosophies .ellipse-container {
        width: 100%; 
        max-width: 180px; 
    }

    .col-gauche .ellipse {
        width: 90%;
        max-width: 400px;
        height: auto;
        aspect-ratio: 400 / 500;
    }

    .col-gauche .slide {
        padding: 20px;
    }

    .col-gauche .chevrons-container {
        padding: 0 10px;
    }

    .col-gauche .chevron {
        font-size: 24px;
        padding: 8px;
    }

    .col-droite {
        margin-top:20px;
    }

    .col-droite .titre {
        flex-direction: column;
        gap: 10px;
    }

    .col-droite .titre h1 {
        font-size: 24px;
        text-align:center;
    }

    .col-droite .titre img {
        height: 30px;
        margin:0px;
    }

    .col-droite .philosophies-header {
        gap:15px;
    }
    .col-droite .texte {
        font-size: 16px;
        line-height: 1.4;
        padding: 15px;
    }

}