/* styles.css */

@import url('https://fonts.googleapis.com/css2?family=Patrick+Hand&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Kanit:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Rubik:ital,wght@0,300..900;1,300..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,300;0,400;0,500;0,600;0,700;&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap');

.open-sans-PoliceOpenSans {
    font-family: "Open Sans", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    font-variation-settings: "wdth" 100;
}

.patrick-hand-regular {
    font-family: "Patrick Hand", cursive;
    font-weight: 400;
    font-style: normal;
}

.kanit-semibold-italic {
    font-family: "Kanit", sans-serif;
    font-weight: 600;
    font-style: italic;
}

.raleway {
    /*Police pour les dates*/
    font-family: "Raleway", sans-serif;
    font-optical-sizing: auto;
}

.rubik {
    font-family: "Rubik", sans-serif;
}

* {
    margin: 0;
    padding: 0;
    list-style: none;
    text-decoration: none;
    box-sizing: border-box;
    font-family: "Inter", sans-serif;
}

body {
    background-color: #fff;
}

/*-----------------------------------Début Décor à propos-----------------------------------*/

.TextPresentation {
    position: relative;
    width: 100%;
    height: 100%;
    justify-content: center;
    padding: 0 17%;
    padding-top: 220px;
}

.TextPresentation h4 {
    text-align: center;
    color: #202020;
}

.Fond_marbre {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}



/*--------------------------Container-----------------*/
.container2C {
    position: relative;
    display: flex;
    width: 100%;
}

.imageFond_Propos {
    position: relative;
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: space-evenly;
}

.tabImageFond {
    position: relative;
    transform: scale(0.95, 0.9);
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, 1fr);
    align-items: center;
}

.box {
    position: relative;
    display: flex;
    /* Utiliser display: flex; pour aligner les enfants horizontalement */
    justify-content: center;
    /* Centre les enfants horizontalement */
    align-items: center;
    /* Centre les enfants verticalement */
}

.box :last-child {
    padding-bottom: 0;
    margin-bottom: 0;
}

.box img {
    width: 90%;
    /* Utiliser 100% de la largeur de la .box */
    height: auto;
    /* Ajuster la hauteur automatiquement pour maintenir les proportions */
    object-fit: cover;
    object-position: center;
    box-shadow: 10px 10px 20px #0d0d0d;
}



.Description_Propos {
    position: relative;
    text-align: center;
    margin-bottom: 0;
}


.Description_Propos h1 {
    color: #dfb246;
    padding-bottom: 20px;
    padding-top: 80px;
    font-size: 185%;
}

.Description_Propos h1:first-child,
.Description_Propos h1:last-child {
    padding-top: 0;
}

.Description_Propos h3 {
    color: #dfb246;
    font-family: "Rubik", sans-serif;
    text-decoration: underline;
    padding-top: 60px;
    padding-bottom: 20px;
    font-size: 155%;
}

.Description_Propos h3:first-child {
    padding-top: 0;
}

.Description_Propos p {
    font-weight: 650;
}

.Description_Propos a,
.Description_Propos strong {
    color: #0d0d0d;
    font-weight: 1000;
    cursor: pointer;
}


.Description_Propos a:hover,
.Description_Propos strong:hover {
    text-decoration: underline;
}

#popup-overlay {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 10100;
    display: none;
}

#popup-overlay.open {
    display: block !important;
}

.popup-exit {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 15000;
}

.popup-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 20000;
}

/*-----------------------------------Fin Décor à propos-----------------------------------*/

.banner {
    width: 100%;
    height: 0;
}

.footerCtnerCol ul li a[href="../APropos/Apropos.php"] {
    color: #dfb246;
}