@font-face {
    font-family: 'Miama';
    src: url('fonts/font.otf') format('opentype');
    /* Utilisation du format 'opentype' */
    font-weight: normal;
    font-style: normal;
}

html,
body {
    height: 100%;
    margin: 0;
    display: flex;
    flex-direction: column;
    background-color: #F4CDD1;
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #333;
    overflow: auto;
}

::-webkit-scrollbar {
    display: none;
    /* Masque la scrollbar sur Chrome, Safari et Edge */
}

::selection {
    background-color: #c9a5b1;
    /* Couleur de fond de la sélection */
    color: #ffffff;
    /* Couleur du texte sélectionné */
}

::-moz-selection {
    background-color: #c9a5b1;
    /* Couleur de fond de la sélection */
    color: #ffffff;
    /* Couleur du texte sélectionné */
}

body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

header {
    background-color: #F4CDD1;
    padding: 10px;
    z-index: 10;
}

header,
section,
footer {
    position: relative;
    z-index: 2;
}

.logo img {
    width: 50%;
    height: auto;
}


nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background-color: #F4CDD1;
    padding: 10px 20px;
    color: white;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
    transition: transform 0.3s ease, opacity 0.3s ease;
    z-index: 5;
    margin: 0;
    padding: 0;
}


nav ul li a {
    text-decoration: none;
    color: #333;
    font-size: 18px;
    padding-bottom: 5px;
    position: relative;
    transition: color 0.3s ease;
}

nav ul li a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background-color: #333;
    transition: width 0.3s ease;
}

nav ul li a:hover::after {
    width: 100%;
}

.burger-menu {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}


.burger-menu span {
    width: 30px;
    height: 3px;
    background-color: #333;
    display: block;
    transition: transform 0.3s ease, opacity 0.3s ease;

}


/* Styles pour le menu déroulant */
.dropdown {
    position: relative;
}

.dropdown-menu {
    list-style: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #F4CDD1;
    list-style-type: none;
    padding: 10px 0;
    display: none;
    flex-direction: column;
    margin: 0;
    padding: 10px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 10;
}

.dropdown-menu li {
    margin: 0;
}

.dropdown-menu li a {
    padding: 5px 15px;
    text-decoration: none;
    color: #333;
    display: block;
    transition: background-color 0.3s ease;
}

.dropdown-menu li a:hover {
    background-color: #F4CDD1;
}

.dropdown:hover .dropdown-menu {
    display: flex;
    opacity: 1;
    visibility: visible !important;
}

/* Pour mobile : menu hamburger */
@media (max-width: 768px) {
    .dropdown-menu {
        position: static;
        display: none;
        padding: 0;
        background: none;
        box-shadow: none;
        width: 90px;
        z-index: 2000;
    }

    .dropdown-menu-active {
        opacity: 1;
    }

}



@media (max-width: 768px) {

    nav ul {
        position: absolute;
        top: 100%;
        right: 0;
        background-color: #F4CDD1;
        flex-direction: column;
        align-items: center;
        gap: 20px;
        opacity: 0;
        visibility: hidden;
        transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
        z-index: -1;
        padding-left: 20px;
        padding-right: 20px;
        padding-bottom: 20px;
        border-bottom-left-radius: 5px;
    }

    .nav-active {
        transform: translateX(0);
        /* Slide-in depuis la droite */
        opacity: 1;
        /* Le rendre visible */
        visibility: visible;
        /* Afficher le menu */
        z-index: 999;
        /* Le menu devient l'élément le plus haut */
    }

    .burger-menu {
        display: flex;
        position: relative;
        top: 0;
        right: 0;
        z-index: 1000;
        /* Toujours au-dessus pour interagir */
        cursor: pointer;

    }

    /* Quand le menu burger est activé (toggle) */
    .toggle span:nth-child(1) {
        transform: rotate(45deg) translate(3px, 7px);
    }

    .toggle span:nth-child(2) {
        opacity: 0;
    }

    .toggle span:nth-child(3) {
        transform: rotate(-45deg) translate(4px, -8px);
    }
}

.home-main {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    background-image: url('img/background.jpg');
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.home-container {
    background-color: #F4CDD1;
    padding: 25px;
    border-radius: 15px;
    width: 80%;
    max-width: 600px;
    text-align: center;
    z-index: 1;
    height: auto;
    opacity: 0;
    /* Invisible au début */
    animation: fadeIn 1s ease-out forwards;
    /* Animation fade-in sur 1 seconde */
}

.home-container h2,
.home-container p {
    opacity: 0;
    /* Invisible au début */
    animation: fadeIn 1s ease-out forwards;
    animation-delay: 0.5s;
    /* Retard pour que le texte apparaisse après le conteneur */
}

.home-container a {
    color: #000;
    text-decoration: none;
}

.home-container a:hover {
    text-decoration: underline;
}


main.contact-main {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    background-image: url('img/background.jpg');
}

.contact-container {
    background-color: #F4CDD1;
    padding: 20px;
    border-radius: 10px;
    width: 80%;
    max-width: 600px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    text-align: center;
    z-index: 1;
    height: 70%;
    opacity: 0;
    /* Invisible au début */
    animation: fadeIn 1s ease-out forwards;
    /* Fade-in pour la page de contact */
    margin-top: 5%;

}



.contact-container h2,
.contact-container h3,
.contact-container p {
    margin-bottom: 15px;
    opacity: 0;
    animation: fadeIn 1s ease-out forwards;
    animation-delay: 0.5s;
    /* Retard d'apparition après la div */
}

.contact-container a {
    color: #333;
    text-decoration: none;
}

.contact-container a:hover {
    text-decoration: underline;
}

footer {
    background-color: #F4CDD1;
    color: rgb(0, 0, 0);
    text-align: center;
    padding: 10px -10;
    width: 100%;
    margin-top: auto;
    height: 1px;
}

@keyframes fadeIn {
    0% {
        opacity: 0;
        transform: translateY(20px);
        /* Légère montée lors de l'apparition */
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Keyframes pour l'animation slide-in from left */
@keyframes slideInLeft {
    0% {
        opacity: 0;
        transform: translateX(-100px);
        /* Slide de la gauche */
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Keyframes pour l'animation slide-in from right */
@keyframes slideInRight {
    0% {
        opacity: 0;
        transform: translateX(100px);
        /* Slide de la droite */
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}


h2 {
    font-family: 'Roboto', sans-serif;
    /* Changez 'Roboto' par la police de votre choix */
    font-weight: bold;
    /* Optionnel : définit le poids de la police */
    color: #333;
    /* Ajustez la couleur si nécessaire */
}



.custom-font {
    font-family: 'Miama', sans-serif;
    /* Remplacez par la police que vous souhaitez */
    font-size: 3.5em;
    /* Ajustez la taille selon vos besoins */
    font-weight: bold;
    /* Optionnel : pour rendre le texte plus gras */
}

.responsive-iframe-container {
    position: relative;
    width: 100%;
    padding-top: 33%;
    /* Pour un ratio de 16:9 */
    overflow: hidden;
}

.responsive-iframe-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 70%;
    border: 0;
    /* Retire la bordure */
}

/* Par défaut, affiche le logo desktop et cache le logo mobile */
.logo-desktop {
    display: block;
    width: 50%;
    /* Taille par défaut du logo desktop */
}

.logo-mobile {
    display: none;
    /* Cache le logo mobile par défaut */
    width: 50%;
    /* Taille par défaut du logo mobile, à ajuster si nécessaire */
}

/* Media query pour les écrans de 768px ou moins */
@media (max-width: 768px) {
    .logo-desktop {
        display: none;
        /* Cache le logo desktop */
    }

    .logo-mobile {
        display: block;
        /* Affiche le logo mobile */
    }

    .contact-container {

        margin-top: 20%;
        height: 80%;
    
    }

    .responsive-iframe-container {
        height: 30%;
    }

    .responsive-iframe-container iframe {
        height: 80%;
        margin-bottom: -25%;
    }

}

@keyframes slideDown {
    0% {
        opacity: 0;
        transform: translateY(-20px);
        /* Départ légèrement au-dessus */
    }

    100% {
        opacity: 1;
        transform: translateY(0);
        /* Position finale */
    }
}

/* Section "Qui suis-je ?" */
.about {
    text-align: center;
    padding: 50px 20px;
    background-color: #F4CDD1;
    margin-top: 4%;
    height: 95%;
    z-index: 1;
}

.photo-large img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    margin-bottom: 20px;
    margin-top: 13%;
    animation: fadeIn 1s ease-out forwards;
}

/* Section "Équipe" */
.team {
    text-align: center;
    padding: 50px 20px;

}

.team-container {
    display: flex;
    justify-content: center;
    gap: 100px; /* Espace entre chaque élément */
    flex-wrap: nowrap; /* Pas de retour à la ligne */
}

.team-member-1 {
    text-align: center;
    transition: transform 0.3s ease;
    animation: fadeIn 1s ease-out forwards;
    animation-delay: 1s;
    opacity: 0;
}

.team-member-2 {
    text-align: center;
    animation: fadeIn 1s ease-out forwards;
    animation-delay: 2s;
    opacity: 0;
    transition: transform 0.3s ease;
}


.team-member-3 {
    text-align: center;
    transition: transform 0.3s ease;
    animation: fadeIn 1s ease-out forwards;
    animation-delay: 3s;
    opacity: 0;
}


.team-member-4 {
    text-align: center;
    transition: transform 0.3s ease;
    animation: fadeIn 1s ease-out forwards;
    animation-delay: 4s;
    opacity: 0;
}


.team-member-1 img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 10px;
    transition: transform 0.3s ease; 
}

.team-member-2 img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 10px;
    transition: transform 0.3s ease; 
}

.team-member-3 img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 10px;
    transition: transform 0.3s ease; 
}

.team-member-4 img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 10px;
    transition: transform 0.3s ease; 
}

.team-member-1:hover img {
    transform: scale(1.1);
}

.team-member-1:hover {
    transform: scale(1.05);
}

.team-member-1 p {
    font-size: 16px;
    color: #333;
}

.team-member-2:hover img {
    transform: scale(1.1);
}

.team-member-2:hover {
    transform: scale(1.05);
}

.team-member-2 p {
    font-size: 16px;
    color: #333;
}

.team-member-3:hover img {
    transform: scale(1.1);
}

.team-member-3:hover {
    transform: scale(1.05);
}

.team-member-3 p {
    font-size: 16px;
    color: #333;
}

.team-member-4:hover img {
    transform: scale(1.1);
}

.team-member-4:hover {
    transform: scale(1.05);
}

.team-member-4 p {
    font-size: 16px;
    color: #333;
}


@media (max-width: 768px) {
    .team-container {
        flex-direction: column; /* Passe en colonne */
        align-items: center; /* Centre les éléments horizontalement */
        gap: 20px; /* Réduit l'espace entre les membres */
    }

    .team-member-1 {
        width: 100%; /* Prend toute la largeur disponible */
        max-width: 300px; /* Limite la largeur pour éviter d'être trop grand */
    }

    .team-member-2 {
        width: 100%; /* Prend toute la largeur disponible */
        max-width: 300px; /* Limite la largeur pour éviter d'être trop grand */
    }

    .team-member-3 {
        width: 100%; /* Prend toute la largeur disponible */
        max-width: 300px; /* Limite la largeur pour éviter d'être trop grand */
    }

    .team-member-4 {
        width: 100%; /* Prend toute la largeur disponible */
        max-width: 300px; /* Limite la largeur pour éviter d'être trop grand */
    }

    .about {
        text-align: center;
        padding: 50px 20px;
        background-color: #F4CDD1;
        margin-top: 6%;
        height: 95%;
        z-index: 1;
    }
}

:root{
    --card_width: 300px;
    --card_border_radius: 10px;
    --row_increment: 10px;
    --card_small: 26;
    --card_medium: 33;
    --card_large: 46;
}

.pin_container {
    margin: 0;
    padding: 0;
    width: 100%;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    height: 91%;

    display: grid;
    grid-template-columns: repeat(auto-fill, var(--card_width));
    grid-auto-rows: var(--row_increment);
    justify-content: center;


    background-color: #F4CDD1;
    z-index: 1;
    margin-top: 4%;
}

.textes_info{
    display: flex;
    width: 50%;
    text-align: justify;
margin-left: 25%;

}

@media (max-width: 768px) {
    .textes_info{
        display: flex;
        width: 80%;
        text-align: justify;
    margin-left: 10%;
    
    }
}


.card {
    padding: 0;
    margin: 15px 10px;
    border-radius: var(--card_border_radius);
    overflow: hidden; /* Assure que les images ne dépassent pas les bords de la carte */
    background-color: #F4CDD1  /*#F4CDD1*/; /* Optionnel si une image est manquante */
    display: flex; /* Pour aligner le contenu si nécessaire */
    justify-content: center;
    align-items: center;
    animation: fadeIn 1s ease forwards;
    opacity: 0; /* Initialement invisible */
    animation-delay: var(--random-delay, 0s); /* Délai aléatoire défini par JS */
}

.card img {
    width: 100%; /* L'image remplit la largeur */
    height: 100%; /* L'image remplit la hauteur */
    object-fit: cover; /* Assure que l'image garde ses proportions */
    display: block;
}

.card_small {
    grid-row-end: span var(--card_small);
}

.card_medium {
    grid-row-end: span var(--card_medium);
}

.card_large {
    grid-row-end: span var(--card_large);
}

.cv {
    flex: 1;
    /* Prend l'espace disponible */
    display: flex;
    justify-content: center;
    /* Centrer l'image */
    margin-top: 15%;
}

.cv img {
    max-width: 80%;
    /* Limite la taille de l'image */
    height: auto;
    /* Garder les proportions */
    border-radius: 10px;
    /* Arrondir les coins de l'image */
    flex-direction: column;
}

@media (max-width: 768px) {

    .cv img {
    width: 100%;
    max-width: 100%;
    }

    .pin_container {
        margin: 0;
        padding: 0;
        width: 100%;
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        height: 91%;
    
        display: grid;
        grid-template-columns: repeat(auto-fill, var(--card_width));
        grid-auto-rows: var(--row_increment);
        justify-content: center;
    
    
        background-color: #F4CDD1;
        z-index: 1;
        margin-top: 20%;
        margin-bottom: 10px;
        
    }

    .cv {
        margin-top: 100%;
    }

    .photo-large img {

        margin-top: 50%;

    }

}

        blockquote {
            margin: 20px 0;
            padding: 10px 20px;
            background-color: rgba(255, 255, 255, 0.2);
            border-left: 4px solid #ffd700;
            font-style: italic;
        }

        blockquote cite {
            display: block;
            margin-top: 10px;
            font-style: normal;
            font-size: 0.9em;
            text-align: right;
        }

