<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* GALERIE */
.gallery {
    padding: 20px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    padding: 20px;
}

.gallery-item {
    background: #333;
    padding: 10px;
    border-radius: 8px;
    transition: transform 0.3s;
}

.gallery-item img {
    width: 50%;
    height: 50%;
    border-radius: 8px;
}

.gallery-item p {
    font-size: 14px;
    margin-top: 10px;
}

.gallery-item:hover {
    transform: scale(1.05);
}


.swiper-container {
    width: 100%; /* Assure que le diaporama reste dans l'Ã©cran */
    max-width: 1200px; /* Vous pouvez ajuster selon vos besoins */
    margin: auto;
    overflow: hidden;
}

.swiper-slide img {
    width: 100%; /* Force les images Ã&nbsp; s'adapter Ã&nbsp; la largeur */
    height: auto; /* EmpÃªche le dÃ©bordement */
    display: block;
}

/* news style */



.custom-toggler  {
    border: none;
    background: transparent;
    outline: none;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.custom-toggler.collapsed  {
    transform: rotate(360deg);
}

.navbar-nav .nav-item .nav-link .de {
    padding: 8px 15px;
    margin: 0 10px;
    border-radius: 5px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.navbar-nav .nav-item .nav-link:hover  {
    background-color: crimson;
    color: #fff;
}

@keyframes blink {
    0% {
        opacity: 1;
    }
    50% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

/* Appliquez l'animation Ã&nbsp; l'Ã©lÃ©ment avec la classe .chanteuse-lyrique */
.chanteuse-lyrique  {
    animation: blink 5s; /* Ajoutez l'animation Ã&nbsp; l'Ã©lÃ©ment */
}

.contact-form  {
    /* background-color: #fff; */
    max-width: 800px;
    margin: 20px auto;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.contact-form h1  {
    font-size: 24px;
    margin-bottom: 20px;
}

.contact-form label  {
    display: block;
    font-weight: bold;
    margin-bottom: 5px;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 3px;
    transition: box-shadow 0.3s; /* Transition de l'ombre au focus */
}

.contact-form input[type="text"]:focus,
.contact-form input[type="email"]:focus,
.contact-form textarea:focus {
    box-shadow: 0 0 5px #f06292; /* Ombre au focus */
}

.contact-form button  {
    background-color: #f06292;
    color: #fff;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    transition: background-color 0.3s; /* Transition de couleur au hover */
}

.contact-form button:hover  {
    background-color: #d81b60; /* Couleur diffÃ©rente au hover */
}
.image-containerPrescille {
    align-items: center;
}
h1 {
    font-family: inherit;
    font-weight: bold;
    font-size: 30px;
    size: 35px;
}

.homeTitle2 {
    font-size: 23px;
    text-decoration: underline; /* Ajoute un soulignement */
    color: red; /* DÃ©finit la couleur du texte en rouge */
}
.social-icons a:not(:last-child)  {
    margin-right: 10px; /* Ajustez la valeur selon votre prÃ©fÃ©rence */
}

/* Couleur Facebook */
.facebook-icon  {
    color: #1877F2;
}

/* Couleur Instagram */
.instagram-icon  {
    color: #E4405F;
}

/* Couleur LinkedIn */
.linkedin-icon  {
    color: #0077B5;
}

/* Couleur Twitter */
.twitter-icon  {
    color: #1DA1F2;
}





:root {
    --primary-color: #f9532d;
    --primary-dark: #1F252E;
}

* {
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
}

body  {
    background-color: #000000;
    margin-top: 60px;
    font-family: 'Outfit', sans-serif;
    transition: background-color 0.3s, color 0.3s;

}

.container  {
    padding: 0 8.4rem;
}

.img-w  {
    width: 100%;
}

header  {
     position: sticky; /* DÃ©jÃ&nbsp; prÃ©sent */
    top: 0;
    z-index: 1000; /* Ajoutez un z-index supÃ©rieur pour s'assurer que la barre reste au-dessus */
    box-shadow: 0 4px 17px rgba(0, 0, 0, 0.1);
    position: relative;
    box-shadow: 0 4px 17px rgba(0, 0, 0, .1);
    background: #06086c;
    position: sticky;
    top: 0;
}

.page-header  {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo  {
    font-size: 1.5rem;
    font-weight: 800;
}

.logo  a {
    color: whitesmoke;
    text-decoration: none;
}

ul  {
    color: whitesmoke;
    display: flex;
    gap: .6rem;
    list-style-type: none;
    background-color: transparent;
    overflow: hidden;
}

li a  {
    display: inline-block;
    padding: .3rem 1rem;
    color: var(--nav-text);
    text-decoration: none;
    font-size: 1.05rem;
    font-weight: 600;
    letter-spacing: .7px;
    border-radius: 36px;
    line-height: 2;
    transition: .3s;
}

li a.active,
li a:hover  {
    color: var(--primary-color);
}

#click {
    display: none;
}

.menu {
    display: none;
}

.mode i  {
    font-size: 1.4rem;
    cursor: pointer;
    color: var(--primary-color);
}

.main  {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(277px, 1fr));
    row-gap: 2rem;
    align-items: center;
}

.main  h1 {
    font-size: 3rem;
    font-weight: 600;
}

.main  p {
    line-height: 1.7;
    font-size: 1.15rem;
}

.social {
    display: flex;
    flex-wrap: wrap;
    gap: 1.4rem;
    margin-top: 1.7rem;
}

.social a {
    display: grid;
    place-items: center;
    text-decoration: none;
    color: #244D61;
    font-size: 1.5rem;
    border: 1.6px solid #244D61;
    border-radius: 50%;
    padding: 0.39rem;
    text-align: center;
}

.social a:hover {
    color: #fff;
    background-color: #244D61;
    box-shadow: 0 0 20px #244D61;
    transition: all .3s ease-in-out;
}

/* Styles pour les boutons personnalisÃ©s */
.custom-button {
    border: none;
    background: rgb(239, 36, 36);
    outline: none;
    cursor: pointer;
    transition: transform 0.3s ease;
    padding: 8px 15px;
    margin: 0 10px;
    border-radius: 15px;
    text-align: center;
}

.custom-button.collapsed {
    transform: rotate(360deg);
}

.custom-button:hover {
    background-color: crimson;
    color: #fff;
}


.main h3 {
    font-size: 1.5rem;
}

.images::before {
    content: "";
    position: absolute;
    width: 100%;
    height: calc(100% - 130px);
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    border-radius: 6px;
    z-index: -1;
}

.images::before {
    background: linear-gradient(145deg, #e2e8ec, #ffffff);
    box-shadow: 5px 5px 15px #D1D9E6, -5px -5px 15px #ffffff;
}

.images {
    width: 80%;
    margin-left: auto;
    position: relative;
    z-index: -1;
}

.dark-mode {
    background-color: var(--primary-dark);
    color: #ffffff;
}

.mode input {
    display: none;
}

:is(.dark-mode) {
    .social a {
        color: var(--primary-color);
        border: 1.6px solid var(--primary-color);
    }

    .social a:hover {
        color: var(--primary-dark);
        background-color: var(--primary-color);
        box-shadow: 0 0 20px var(--primary-color);
    }

    .logo a {
        color: #fff;
    }

    .images::before {
        background: linear-gradient(145deg, #1f252e, #2e3239);
        box-shadow: 10px 10px 19px #1c1e22, -10px -10px 19px #1b1f27;
    }
}

.dark-mode header {
    box-shadow: 0 4px 17px rgb(80 80 80 / 31%);
    background: var(--primary-dark);
}

@media screen and (max-width: 1024px) {
    .container {
        padding: 0 1.6rem;
    }
    header {
        height: auto;
    }

    ul {
        background: #fff;
        width: 100%;
        height: 100vh;
        position: absolute;
        display: flex;
        flex-direction: column;
        text-align: center;
        top: 3.4rem;
        left: -100%;
        z-index: 111111;
    }

    .menu {
        display: block;
        font-size: 1.5rem;
        font-weight: bold;
        color: #244D61;
    }

    #click:checked~ul {
        left: 0%;
        transition: all 0.3s ease;
    }

    .dark-mode .menu {
        color: var(--primary-color);
    }

    .dark-mode ul {
        background: var(--primary-dark);
    }

    .mode {
        position: absolute;
        right: 4rem;
    }

    .images {
        width: 100%;
        margin: auto;
    }

    .main {
        margin-top: 2rem;
    }
}

@media screen and (max-width: 768px) {
    .container {
        padding: 0 1.6rem;
    }
    header {
        height: auto;
    }

    ul {
        background: #fff;
        width: 100%;
        height: 100vh;
        position: absolute;
        display: flex;
        flex-direction: column;
        text-align: center;
        top: 3.4rem;
        left: -100%;
        z-index: 111111;
    }

    .menu {
        display: block;
        font-size: 1.5rem;
        font-weight: bold;
        color: #244D61;
    }

    #click:checked~ul {
        left: 0%;
        transition: all 0.3s ease;
    }

    .dark-mode .menu {
        color: var(--primary-color);
    }

    .dark-mode ul {
        background: var(--primary-dark);
    }

    .mode {
        position: absolute;
        right: 4rem;
    }

    .images {
        width: 100%;
        margin: auto;
    }

    .main {
        margin-top: 2rem;
    }
}

@media screen and (max-width:600px) {
    .container {
        padding: 0 1.6rem;
    }

    header {
        height: auto;
    }

    ul {
        background: #fff;
        width: 100%;
        height: 100vh;
        position: absolute;
        display: flex;
        flex-direction: column;
        text-align: center;
        top: 3.4rem;
        left: -100%;
        z-index: 111111;
    }

    .menu {
        display: block;
        font-size: 1.5rem;
        font-weight: bold;
        color: #244D61;
    }

    #click:checked~ul {
        left: 0%;
        transition: all 0.3s ease;
    }

    .dark-mode .menu {
        color: var(--primary-color);
    }

    .dark-mode ul {
        background: var(--primary-dark);
    }

    .mode {
        position: absolute;
        right: 4rem;
    }

    .images {
        width: 100%;
        margin: auto;
    }

    .main {
        margin-top: 2rem;
    }
}



.dark-mode input[type="text"],
.dark-mode input[type="email"],
.dark-mode textarea,
.dark-mode .btn {
    background-color: #333; /* Couleur de fond en mode sombre */
    color: #fff; /* Couleur du texte en mode sombre */
    /* Ajoutez d'autres styles appropriÃ©s pour le mode sombre */
}


.aboutContainer {
    max-width: 800px; /* Ajustez la largeur maximale en fonction de vos prÃ©fÃ©rences */
}

.aboutContainer p {
    font-size: 18px; /* Augmentez la taille de la police selon vos prÃ©fÃ©rences */
    line-height: 1.5; /* Ajustez l'espacement des lignes */
    margin-bottom: 20px; /* Ajoutez une marge en bas pour sÃ©parer les paragraphes */
}
.contactImage{
    border-radius: 25% 10%;
}

.mybody{
    font-family: 'Poppins', sans-serif;
} 



/* Footer Styling */
.footer {
    background-color:whitesmoke; /* Couleur de fond du footer */
    padding: 40px 20px;
    color: black;
    text-align: center;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-brand {
    flex: 1;
    text-align: left;
    margin-bottom: 20px;
}

.footer-logo {
    height: 50px;
    margin-bottom: 10px;
    border-radius: 50%; /* Forme ronde pour le logo */
}

.footer-text {
    font-size: 0.9rem;
    color: black;
}

.footer-links {
    flex: 2;
    text-align: center;
    margin-bottom: 20px;
}

.footer-links a {
    color: #fff;
    margin: 0 10px;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s ease-in-out;
}

.footer-links a:hover {
    color: #32cd32; /* Vert clair pour le hover */
}

.footer-social {
    flex: 1;
    text-align: right;
    margin-bottom: 20px;
}

.social-icon {
    height: 30px;
    margin: 0 10px;
    transition: transform 0.3s ease-in-out;
}

.social-icon:hover {
    transform: scale(1.2); /* Zoom sur le logo au survol */
}

/* Responsive Footer */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
    }

    .footer-brand,
    .footer-links,
    .footer-social {
        text-align: center;
        margin-bottom: 20px;
    }

    .footer-social {
        margin-bottom: 0;
    }
}

  .de{
    .custom-toggler  {
        border: none;
        background: transparent;
        outline: none;
        cursor: pointer;
        transition: transform 0.3s ease;
    }
    
    .custom-toggler.collapsed  {
        transform: rotate(360deg);
    }
    
    .navbar-nav .nav-item .nav-link .de {
        padding: 8px 15px;
        margin: 0 10px;
        border-radius: 5px;
        transition: background-color 0.3s ease, color 0.3s ease;
    }
    
    .navbar-nav .nav-item .nav-link:hover  {
        background-color: crimson;
        color: #fff;
    }
    
    @keyframes blink {
        0% {
            opacity: 1;
        }
        50% {
            opacity: 0;
        }
        100% {
            opacity: 1;
        }
    }
    
    /* Appliquez l'animation Ã&nbsp; l'Ã©lÃ©ment avec la classe .chanteuse-lyrique */
    .chanteuse-lyrique  {
        animation: blink 5s; /* Ajoutez l'animation Ã&nbsp; l'Ã©lÃ©ment */
    }
    
    .contact-form  {
        /* background-color: #fff; */
        max-width: 800px;
        margin: 20px auto;
        padding: 20px;
        border-radius: 5px;
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    }
    
    .contact-form h1  {
        font-size: 24px;
        margin-bottom: 20px;
    }
    
    .contact-form label  {
        display: block;
        font-weight: bold;
        margin-bottom: 5px;
    }
    
    .contact-form input[type="text"],
    .contact-form input[type="email"],
    .contact-form textarea {
        width: 100%;
        padding: 10px;
        margin-bottom: 10px;
        border: 1px solid #ccc;
        border-radius: 3px;
        transition: box-shadow 0.3s; /* Transition de l'ombre au focus */
    }
    
    .contact-form input[type="text"]:focus,
    .contact-form input[type="email"]:focus,
    .contact-form textarea:focus {
        box-shadow: 0 0 5px #f06292; /* Ombre au focus */
    }
    
    .contact-form button  {
        background-color: #f06292;
        color: #fff;
        border: none;
        padding: 10px 20px;
        cursor: pointer;
        transition: background-color 0.3s; /* Transition de couleur au hover */
    }
    
    .contact-form button:hover  {
        background-color: #d81b60; /* Couleur diffÃ©rente au hover */
    }
    .image-containerPrescille {
        align-items: center;
    }
    h1 {
        font-family: inherit;
        font-weight: bold;
        font-size: 30px;
        size: 35px;
    }
    
    .homeTitle2 {
        font-size: 23px;
        text-decoration: underline; /* Ajoute un soulignement */
        color: red; /* DÃ©finit la couleur du texte en rouge */
    }
    .social-icons a:not(:last-child)  {
        margin-right: 10px; /* Ajustez la valeur selon votre prÃ©fÃ©rence */
    }
    
    /* Couleur Facebook */
    .facebook-icon  {
        color: #1877F2;
    }
    
    /* Couleur Instagram */
    .instagram-icon  {
        color: #E4405F;
    }
    
    /* Couleur LinkedIn */
    .linkedin-icon  {
        color: #0077B5;
    }
    
    /* Couleur Twitter */
    .twitter-icon  {
        color: #1DA1F2;
    }
    
    
    
    
    @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800&amp;display=swap');
    
    :root {
        --primary-color: #f9532d;
        --primary-dark: #1F252E;
    }
    
    * {
        margin: 0;
        padding: 0;
        scroll-behavior: smooth;
    }
    
    body  {
        font-family: 'Outfit', sans-serif;
        transition: background-color 0.3s, color 0.3s;
    
    }
    
    .container  {
        padding: 0 8.4rem;
    }
    
    .img-w  {
        width: 100%;
    }
    
    header  {
        position: relative;
        box-shadow: 0 4px 17px rgba(0, 0, 0, .1);
        background: #fff;
        position: sticky;
        top: 0;
    }
    
    .page-header  {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 1rem 0;
    }
    
    .logo  {
        font-size: 1.5rem;
        font-weight: 800;
    }
    
    .logo  a {
        color: #244D61;
        text-decoration: none;
    }
    
    ul  {
        display: flex;
        gap: .6rem;
        list-style-type: none;
        background-color: transparent;
        overflow: hidden;
    }
    
    li a  {
        display: inline-block;
        padding: .3rem 1rem;
        color: var(--nav-text);
        text-decoration: none;
        font-size: 1.05rem;
        font-weight: 600;
        letter-spacing: .7px;
        border-radius: 36px;
        line-height: 2;
        transition: .3s;
    }
    
    li a.active,
    li a:hover  {
        color: var(--primary-color);
    }
    
    #click {
        display: none;
    }
    
    .menu {
        display: none;
    }
    
    .mode i  {
        font-size: 1.4rem;
        cursor: pointer;
        color: var(--primary-color);
    }
    
    .main  {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(277px, 1fr));
        row-gap: 2rem;
        align-items: center;
    }
    
    .main  h1 {
        font-size: 3rem;
        font-weight: 600;
    }
    
    .main  p {
        line-height: 1.7;
        font-size: 1.15rem;
    }
    
    .social {
        display: flex;
        flex-wrap: wrap;
        gap: 1.4rem;
        margin-top: 1.7rem;
    }
    
    .social a {
        display: grid;
        place-items: center;
        text-decoration: none;
        color: #244D61;
        font-size: 1.5rem;
        border: 1.6px solid #244D61;
        border-radius: 50%;
        padding: 0.39rem;
        text-align: center;
    }
    
    .social a:hover {
        color: #fff;
        background-color: #244D61;
        box-shadow: 0 0 20px #244D61;
        transition: all .3s ease-in-out;
    }
    
    /* Styles pour les boutons personnalisÃ©s */
    .custom-button {
        border: none;
        background: rgb(239, 36, 36);
        outline: none;
        cursor: pointer;
        transition: transform 0.3s ease;
        padding: 8px 15px;
        margin: 0 10px;
        border-radius: 15px;
        text-align: center;
    }
    
    .custom-button.collapsed {
        transform: rotate(360deg);
    }
    
    .custom-button:hover {
        background-color: crimson;
        color: #fff;
    }
    
    
    .main h3 {
        font-size: 1.5rem;
    }
    
    .images::before {
        content: "";
        position: absolute;
        width: 100%;
        height: calc(100% - 130px);
        left: 50%;
        bottom: 0;
        transform: translateX(-50%);
        border-radius: 6px;
        z-index: -1;
    }
    
    .images::before {
        background: linear-gradient(145deg, #e2e8ec, #ffffff);
        box-shadow: 5px 5px 15px #D1D9E6, -5px -5px 15px #ffffff;
    }
    
    .images {
        width: 80%;
        margin-left: auto;
        position: relative;
        z-index: -1;
    }
    
    .dark-mode {
        background-color: var(--primary-dark);
        color: #ffffff;
    }
    
    .mode input {
        display: none;
    }
    
    :is(.dark-mode) {
        .social a {
            color: var(--primary-color);
            border: 1.6px solid var(--primary-color);
        }
    
        .social a:hover {
            color: var(--primary-dark);
            background-color: var(--primary-color);
            box-shadow: 0 0 20px var(--primary-color);
        }
    
        .logo a {
            color: #fff;
        }
    
        .images::before {
            background: linear-gradient(145deg, #1f252e, #2e3239);
            box-shadow: 10px 10px 19px #1c1e22, -10px -10px 19px #1b1f27;
        }
    }
    
    .dark-mode header {
        box-shadow: 0 4px 17px rgb(80 80 80 / 31%);
        background: var(--primary-dark);
    }
    
    @media screen and (max-width: 1024px) {
        .container {
            padding: 0 4.4rem;
        }
    }
    
    @media screen and (max-width: 768px) {
        .container {
            padding: 0 1.6rem;
        }
    }
    
    @media screen and (max-width:600px) {
    
        header {
            height: auto;
        }
    
        ul {
            background: #fff;
            width: 100%;
            height: 100vh;
            position: absolute;
            display: flex;
            flex-direction: column;
            text-align: center;
            top: 3.4rem;
            left: -100%;
            z-index: 111111;
        }
    
        .menu {
            display: block;
            font-size: 1.5rem;
            font-weight: bold;
            color: #244D61;
        }
    
        #click:checked~ul {
            left: 0%;
            transition: all 0.3s ease;
        }
    
        .dark-mode .menu {
            color: var(--primary-color);
        }
    
        .dark-mode ul {
            background: var(--primary-dark);
        }
    
        .mode {
            position: absolute;
            right: 4rem;
        }
    
        .images {
            width: 100%;
            margin: auto;
        }
    
        .main {
            margin-top: 2rem;
        }
    }
    
    
    
    .dark-mode input[type="text"],
    .dark-mode input[type="email"],
    .dark-mode textarea,
    .dark-mode .btn {
        background-color: #333; /* Couleur de fond en mode sombre */
        color: #fff; /* Couleur du texte en mode sombre */
        /* Ajoutez d'autres styles appropriÃ©s pour le mode sombre */
    }
    
    
    .aboutContainer {
        max-width: 800px; /* Ajustez la largeur maximale en fonction de vos prÃ©fÃ©rences */
    }
    
    .aboutContainer p {
        font-size: 18px; /* Augmentez la taille de la police selon vos prÃ©fÃ©rences */
        line-height: 1.5; /* Ajustez l'espacement des lignes */
        margin-bottom: 20px; /* Ajoutez une marge en bas pour sÃ©parer les paragraphes */
    }
    .contactImage{
        border-radius: 25% 10%;
    }
    
    .mybody{
        font-family: 'Poppins', sans-serif;
    } 
    
    
    footer {
        text-align: center;
        display: flex;
        justify-content: center;
        padding: 5px;
        background-color: white;
        color: black;
      }
    
      
  }
  .image-title{
    text-align: center;
    font-family: 'Courier New', Courier, monospace;
    font-weight: bolder;
  }
  .clickable-image:hover {
    cursor: pointer;
}

.cAlbum{
    width: 100%; /* DÃ©finir la largeur souhaitÃ©e */
    height: auto; /* Laisser la hauteur s'ajuster automatiquement pour conserver les proportions originales */
    margin: 10px; /* Ajouter une marge autour de l'image */
    border: 1px solid #ccc; /* Ajouter une bordure lÃ©gÃ¨re */
    padding: 5px; 
}
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}
.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}
@media (max-width: 768px) {
    header ul {
        flex-direction: column;
        align-items: center;
    }
    .menu {
        font-size: 1.8rem;
    }
}
/* Styles de base pour le menu dÃ©roulant */
.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-toggle {
    text-decoration: none;
    color: var(--nav-text);
    font-size: 1.05rem;
    font-weight: 600;
    letter-spacing: .7px;
    padding: .3rem 1rem;
    border-radius: 36px;
    transition: color 0.3s, background-color 0.3s;
}

.dropdown-toggle:hover {
    color: var(--primary-color);
    background-color: rgba(0, 0, 0, 0.05);
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #fff;
    box-shadow: 0 4px 17px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    padding: 0.5rem 0;
    z-index: 1000;
    list-style: none;
    min-width: 50px;
}

.dropdown-menu li {
    padding: 0;
}

.dropdown-menu li a {
    display: block;
    padding: 0.5rem 1rem;
    text-decoration: none;
    color: #333;
    font-size: 0.95rem;
    transition: background-color 0.3s ease;
}

.dropdown-menu li a:hover {
    background-color: crimson;
    color: #fff;
    border-radius: 4px;
}

/* Affichage au survol */
.dropdown:hover .dropdown-menu {
    display: block;
}

.blkexpo {
    /* Largeur de l'image par dÃ©faut */
    width: 100%;

    /* Hauteur automatique pour les petits Ã©crans et hauteur fixe pour les grands Ã©crans */
    height: auto;

    /* Bord arrondi, ombre portÃ©e et bordure */
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    border: 2px solid #ddd;

    /* Pour centrer l'image horizontalement */
    display: block;
    margin: 0 auto;
}

/* Media query pour les Ã©crans de petite taille */
@media (max-width: 768px) {
    .blkexpo {
        /* Hauteur automatique pour les petits Ã©crans */
        height: auto;
    }
}

/* Media query pour les Ã©crans de grande taille */
@media (min-width: 992px) {
    .blkexpo {
        /* Largeur de l'image pour les grands Ã©crans */
        width: 100%;
    }
}

.candidate-title {
    font-size: 1.8rem;
    color: var(--primary-color, #000000);
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.4;
}
.candidate-description {
    font-size: 1.2rem;
    line-height: 1.6;
    text-align: justify;
}

.pdf-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 800px; /* Largeur max sur ordinateur */
    margin: auto;
    padding: 10px;
    background: #f5f5f5;
    border-radius: 8px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
}

canvas {
    width: 100%; /* Ajustement automatique */
    height: auto; /* EmpÃªche les distorsions */
    max-height: 90vh; /* Pour Ã©viter que le PDF soit trop grand */
    border: 1px solid #ddd;
    border-radius: 5px;
}

/* Boutons de navigation */
.pdf-buttons {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 10px;
}

.pdf-buttons button {
    padding: 8px 15px;
    font-size: 16px;
    background: crimson;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    transition: 0.3s;
}

.pdf-buttons button:hover {
    background: darkred;
}

/* Adaptation aux petits Ã©crans */
@media screen and (max-width: 600px) {
    .pdf-container {
        max-width: 95%; /* Utilisation de presque toute la largeur */
        padding: 5px;
    }

    canvas {
        max-height: 50vh; /* RÃ©duction de la hauteur pour les petits Ã©crans */
    }

    .pdf-buttons button {
        font-size: 14px;
        padding: 6px 10px;
    }
}
.texte{

        font-size: medium;
        line-height: 1.6;
        text-align: justify;

}</pre></body></html>