@font-face {
    font-family: 'Blanka-Regular';
    src: url('../media/ecriture/Blanka/Blanka-Regular.otf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Motter-Bold';
    src: url('../media/ecriture/MOTER/motter.otf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Antone';
    src: url('../media/ecriture/ANTONE/Antone\ DEMO.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

body {
    margin: 0;
    background-color: #efeceb;
}

.titre-image {
    background-image: url(../media/img/notre-dame-flou.svg);
    background-repeat: no-repeat;
    background-position: center;
    width: auto;
    height: 400px;
}

.titre-image h1 {
    color: #0c162c;
    font-size: 40px;
    text-align: center;
    position: relative;
    top: 150px;
    font-family: 'Motter-Bold', sans-serif;
    background-color: #ffd230;
    padding: 10px;
    max-width: 40%;
    border-radius: 10px;
    margin-left: auto;
    margin-right: auto;
    cursor: default;
}

.presentation-p {
    text-align: justify;
    font-family: 'Calibri', sans-serif;
    font-size: 18px;
    background-color: #ffd230;
    padding: 20px;
    border-radius: 18px;
    max-width: 80%;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 3%;
    margin-top: 3%;
    cursor: default;
}

.img-accueil {
    display: flex;
    flex-wrap: wrap; /* Pour que les cartes s'ajustent et passent à la ligne si nécessaire */
    justify-content: space-between; /* Pour espacer les cartes de manière égale */
    gap: 50px; /* Espace entre les images */
    margin : 5%;
}

.img-accueil img {
    width: 290px;
    height: auto;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.img-accueil img:hover {
    transform: scale(1.15); 
    transition: transform 0.3s ease; 
}

.no-hover {
    pointer-events: none; /* Désactiver le survol pour cette image */
}

.inter-titre h1 {
    font-family: 'Motter-Bold', sans-serif;
    font-size: 30px;
    text-align: center;
    color: #ffd230;
    background-color: #0c162c;
    padding: 10px;
    border-radius: 10px;
    max-width: 40%;
    margin-left: auto;
    margin-right: auto;
}

footer {
    font-family: 'Calibri', sans-serif;
    text-align: center;
    background-color: #0c162c;
    color: #ffd230;
    padding: 1%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin-top: 5%;
}

footer a {
    color: #ffd230;
    transition: color 0.3s ease;
}