@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@100;300;400;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Abril+Fatface&family=Lobster&family=Montserrat:wght@400;700&family=Oswald:wght@400;700&family=Playfair+Display:wght@400;700&display=swap');

body,
html {
    height: 100%;
    margin: 0;
    padding: 0;
    font-family: "Chilanka",
        Helvetica,
        Arial,
        Verdana,
        sans-serif;
    background: url('img/bg.png') no-repeat center center fixed;
    background-size: cover;
    font-size: 22px;
    line-height: 1.5rem;
    word-wrap: break-word;
    /* Pour IE et les anciennes versions de CSS */
    overflow-wrap: break-word;
    /* Pour s'assurer que les mots longs sont cassés */
    white-space: normal;
}

.backgroundlinear {
    background: linear-gradient(to bottom, transparent, rgba(0, 0, 50, 0.9), transparent);
}

.signature {
    font-family: 'Great Vibes', cursive;
    font-size: 3em;
    font-weight: normal;
    color: #ffffff;
}

.product-container {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    align-items: center;
}

.product-image {
    flex: 1;
    align-items: center;
}

.product-details {
    flex: 2;
}

.product-description {
    margin-bottom: 10px;
}

.product-price {
    font-size: 1.2em;
    font-weight: bold;
    margin-bottom: 15px;
}

a {
    color: #e49b0f;
}

a:hover {
    color: #d59b2a;
}

h3 {
    color: #e49b0f;
}

.header {
    position: fixed;
    width: 100%;
    background: linear-gradient(to bottom, transparent, rgba(0, 0, 50, 0.8), transparent);
    /* Transparent */
    color: #ffffff;
    z-index: 10;
    transition: background-color 0.3s;
    padding: 20px 0;
}

.header.scrolled {
    background: rgba(0, 0, 50, 0.9);
    /* Semi-transparent on scroll */
}

.navbar a {
    padding: 10px 15px;
    color: #fff;
    text-decoration: none;
    /*text-transform: uppercase;*/
    margin: 0 10px;
    transition: color 0.3s ease;
    /*font-weight: bold;*/
}

.navbar a:hover,
.navbar a:active {
    color: #e49b0f;
    /* Accent color on hover */
    border-bottom: 1px solid #e49b0f;
}

.hero {
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    text-align: center;
    background: linear-gradient(to bottom, transparent, rgba(0, 0, 50, 0.9), transparent);
    color: #ffffff;
    height: inherit;
}


.hero h1 {
    font-size: 2.1em;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 2.1rem;
}

.hero h2 {
    font-size: 1.8em;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.8rem;
}

.hero h3 {
    font-size: 1.4em;
    font-weight: 700;
    margin-bottom: 20px;
    color: #e3e3ff;
    line-height: 1.2em;
}

.hero p {
    font-weight: 300;
    margin-bottom: 30px;
}

/*
.cta-button {
    background: #e49b0f;
    color: #ffffff;
    text-decoration: none;
    padding: 15px 30px;
    border-radius: 5px;
    transition: background 0.3s ease;
}

.cta-button:hover {
    background: #cf8500; /* Darker on hover 
}*/

.cta-button {
    background: linear-gradient(145deg, #f4b860, #de9a0b);
    /* Un dégradé pour un effet 3D léger */
    color: #00062e;
    text-decoration: none;
    padding: 15px 30px;
    border-radius: 5px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    /* Ombre pour l'effet de profondeur */
    font-size: 1rem;
    /* Taille de police ajustable */
    font-weight: bold;
    /* Typographie audacieuse */
    transition: all 0.3s ease;
    /* Transition douce pour tous les effets */
    display: inline-block;
    /* Pour permettre le padding et margin correct */
    margin: 5px;
    /* Espacement autour du bouton */
    cursor: pointer;
    font-family: "Chilanka",
        Helvetica,
        Arial,
        Verdana,
        sans-serif;
    /* Curseur de pointeur pour indiquer la possibilité de cliquer */

}

.cta-button:hover {
    background: linear-gradient(145deg, #de9a0b, #f4b860);
    /* Inverser le dégradé pour le survol */
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
    /* Ombre plus prononcée pour l'effet au survol */
    transform: translateY(-2px);
    /* Léger soulèvement du bouton */
    color: #00062e;
}

.cta-button:active {
    transform: translateY(1px);
    /* Effet enfoncé lors du clic */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    /* Réduction de l'ombre pour l'effet enfoncé */
}

.about,
#content_id {
    background: rgba(0, 0, 50, 0.9);
    padding: 3%;
    margin: auto;
    border-radius: 8px;
    width: 80%;
    max-width: 800px;
    position: relative;
    boxShadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 5;
    color: white;
    box-shadow: 0 0 24px #9e9e9e;
}

#content {
    transition: opacity 0.5s ease-in-out;
}

/* CSS pour animer l'opacité */
.fade-out {
    animation: fadeOut 0.5s forwards;
    /* fadeOut sera le nom de notre animation */
}

.fade-in {
    animation: fadeIn 0.5s forwards;
}

@keyframes fadeOut {
    to {
        opacity: 0;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}


/*.footer {
background: rgba(0, 0, 50, 0.7);
color: white;
text-align: center;
padding: 20px;
position: relative;
z-index: 5;
}

.footer p {
margin: 0;
font-size: 14px;
}*/

.footer {
    background: rgba(0, 0, 50, 0.7);
    /* Overlay color */
    color: #fff;
    padding: 1rem 0;
    font-family: "Chilanka",
        Helvetica,
        Arial,
        Verdana,
        sans-serif;
    border-top: 3px solid #e49b0f;
    /* Ajouter une bordure en haut du footer */
    font-size: 18px;
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-links {
    display: flex;
    align-items: center;
    /*font-weight: bold;*/
}

.footer-links a {
    color: #e49b0f;
    text-decoration: none;
    padding: 0 0.5rem;
    /* Ajustez selon vos besoins */
    transition: color 0.3s ease;
    line-height: 1.2rem;
}

.footer-links a:hover {
    color: #fff;
}

.footer-links span {
    padding: 0 0.5rem;
    /* Ajustez selon vos besoins */
    color: #fff;
    /* La couleur des séparateurs */
}

@media (max-width: 768px) {
    .footer-inner {
        flex-direction: column;
        text-align: center;
    }

    .footer-links {
        margin-top: 1rem;
    }
}


.header-overlay {

    /* Overlay color */
    padding: 50px;
}

/* Styles pour la section Témoignages */

.testimonial-image {
    border-radius: 50%;
    margin: 0 auto 20px;
    width: 100px;
    height: 100px;
    object-fit: cover;
    border: 3px solid white;
}

.swiper-slide blockquote {
    font-style: italic;
    margin-bottom: 20px;
    color: white;
    background: rgba(255, 255, 255, 0.1);
    border-left: 3px solid #e49b0f;
    line-height: 1.4rem;
}

.swiper-slide .testimonial-author {
    font-weight: bold;
    margin-bottom: 15px;
    color: white;
}

/* Styles pour Swiper */
.swiper {
    width: 100%;
    padding-top: 20px;
    padding-bottom: 50px;
}

.swiper-slide {
    background: rgba(0, 0, 50, 0.7);
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
    flex: 0 0 calc(90% / 3);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.swiper-pagination-bullet {
    background: #6a077a;
    opacity: 0.5;
}

.swiper-pagination-bullet-active {
    opacity: 1;
}

.swiper-button-prev,
.swiper-button-next {
    color: #ffffff;
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 768px) {
    .swiper-slide {
        width: auto;
        margin: 0 10px;
    }
}

.testimonials .swiper-container {
    overflow: hidden;
    /* Assurez-vous que les ombres ne débordent pas */
}

/* Pour assurer la visibilité complète des slides aux points de rupture */
@media (min-width: 1200px) {
    .testimonials .swiper-container {
        padding-left: calc((100vw - 1200px) / 2);
        padding-right: calc((100vw - 1200px) / 2);
    }
}

@media (max-width: 1199px) {
    .testimonials .swiper-container {
        padding-left: 15px;
        padding-right: 15px;
    }
}

.stars {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.star {
    /* Appliquer l'animation lumiereAnimationStars */
    animation: lumiereAnimationStars 3s infinite alternate;
    /* ... Vos autres propriétés pour .star ... */
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: white;
    position: absolute;
}

/* Animation linéaire */
@keyframes moveLinear {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(300px);
    }

    /* Modifier selon les dimensions souhaitées */
}

/* Animation circulaire */
@keyframes moveCircular {
    0% {
        transform: rotate(0deg) translateX(50px);
    }

    100% {
        transform: rotate(360deg) translateX(50px);
    }
}

/* Animation en zigzag */
@keyframes moveZigzag {
    0% {
        transform: translate(0, 0);
    }

    25% {
        transform: translate(30px, 30px);
    }

    50% {
        transform: translate(-30px, 60px);
    }

    75% {
        transform: translate(30px, 90px);
    }

    100% {
        transform: translate(0, 120px);
    }
}

.highlight {
    color: #e49b0f;
    /* Couleur pour mettre en valeur certaines parties du texte */
    font-weight: bold;
    /* Gras pour attirer l'attention */
}




.appointment-form {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    padding: 2rem;
    border-radius: 10px;

    margin: auto;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.appointment-form h2 {
    font-size: 1.5em;
    text-align: center;
    margin-bottom: 2rem;
    line-height: 1.6rem;
}

.appointment-form form {
    display: grid;
    grid-gap: 20px;
    /* Espacement entre les champs */
}

.appointment-form .form-group {
    position: relative;
}

.appointment-form .form-group label {
    position: absolute;
    left: 15px;
    top: -11px;
    background: #000333;
    /* Couleur d'arrière-plan correspondant au thème */
    padding: 0 10px;
    font-size: 18px;
    font-weight: bold;
    transition: all 0.3s ease;
    line-height: normal;
}

.appointment-form select {
    width: -webkit-fill-available;
    /* Pleine largeur */
    padding: 15px;
    border-radius: 5px;
    /*border: 2px solid #e49b0f;*/
    border-bottom: 2px solid #ffffff;
    background: rgba(255, 255, 255, 0.08);
    color: white;
    font-size: 20px;
    font-family: "Chilanka",
        Helvetica,
        Arial,
        Verdana,
        sans-serif;
}

.appointment-form input[type="text"],
.appointment-form input[type="email"],
.appointment-form input[type="date"],
.appointment-form textarea,
.appointment-form input[type="number"] {
    width: -webkit-fill-available;
    /* Pleine largeur */
    padding: 15px;
    border-radius: 5px;
    /*border: 2px solid #e49b0f;*/
    border-bottom: 2px solid #ffffff;
    background: rgba(255, 255, 255, 0.08);
    color: white;
    font-size: 20px;
    font-family: "Chilanka",
        Helvetica,
        Arial,
        Verdana,
        sans-serif;
}

.appointment-form input[type="text"]:focus,
.appointment-form input[type="email"]:focus,
.appointment-form input[type="date"]:focus,
.appointment-form textarea:focus,
.appointment-form input[type="number"]:focus {
    outline: none;
    border-color: #cf8500;
}

.appointment-form input::placeholder {
    color: #ccc;
    font-weight: 300;
    font-size: 16px;
    font-family: "Chilanka",
        Helvetica,
        Arial,
        Verdana,
        sans-serif;
}

.appointment-form .submit-button {
    border: none;
    background-color: #e49b0f;
    color: #ffffff;
    padding: 15px;
    font-size: 16px;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s ease-in-out;
}

.appointment-form .submit-button:hover {
    background-color: #cf8500;
}

/* Ajout d'une animation de flottement sur les labels lors de la mise au point */
.appointment-form input[type="text"]:focus+label,
.appointment-form input[type="email"]:focus+label,
.appointment-form input[type="date"]:focus+label,
.appointment-form input[type="number"]:focus+label {
    top: -25px;
    font-size: 16px;
}

@media (max-width: 768px) {
    .appointment-form {
        padding: 1rem;
    }

    .appointment-form h2 {
        margin-bottom: 1rem;
    }
}

/* ... Votre CSS existant ... */

/* Styles spécifiques pour le popup */
.popup {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.6);
    /* Fond semi-transparent */
    overflow: auto;
    /*display: flex;*/
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    /* Flou d'arrière-plan pour les navigateurs le supportant */
}

.popup-content {
    background: rgba(0, 0, 50, 0.8);
    /* Fond légèrement transparent */
    margin: 20px auto;
    padding: 2rem;
    border-radius: 10px;
    width: 90%;
    max-width: 700px;
    /* Largeur maximale du popup */
    box-shadow: 0 0 24px #000000;
    transform: scale(0.95);
    /* Légèrement plus petit pour l'animation */
    transition: transform 0.3s, opacity 0.3s;
    /* Douce transition pour l'apparition */
    color: #fff;
}

.close {
    color: #d99412;
    position: absolute;
    right: 1rem;
    top: 1rem;
    font-size: 1.5rem;
    font-weight: bold;
}

.close:hover,
.close:focus {
    color: #333;
    /* Couleur plus sombre au survol */
    text-decoration: none;
    cursor: pointer;
}

/* Styles pour les titres, textes et boutons du popup */
.popup h2 {
    margin-bottom: 1rem;
    font-weight: bold;
    color: #fff8ed;
    text-shadow: 3px 3px 5px rgba(0, 0, 0, 0.7), 0 0 15px rgba(255, 255, 255, 0.5);
    animation: glow 1.5s ease-in-out infinite alternate;
}

@keyframes glow {
    from {
        text-shadow:
            3px 3px 5px rgba(0, 0, 0, 0.7),
            0 0 15px rgba(255, 255, 255, 0.5);
    }

    to {
        text-shadow:
            5px 5px 10px rgba(0, 0, 0, 0.9),
            0 0 20px rgba(255, 255, 255, 1);
    }
}

.popup p {
    font-size: 1rem;
    line-height: 1.6;
}

.popup button {
    background-color: #e49b0f;
    /* Utilisez la couleur principale de votre site */
    color: white;
    border: none;
    padding: 0.8rem 1.6rem;
    border-radius: 5px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s;
}

.popup button:hover {
    background-color: #cf8500;
    /* Assombrir le bouton au survol */
}

/* Réactivité */
@media (max-width: 768px) {
    .popup-content {
        width: 95%;
        padding: 1.5rem;
    }

    .close {
        right: 0.5rem;
        top: 0.5rem;
    }
}

/* Animation d'ouverture/fermeture du popup */
@keyframes popup-in {
    from {
        transform: scale(0.95);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes popup-out {
    from {
        transform: scale(1);
        opacity: 1;
    }

    to {
        transform: scale(0.95);
        opacity: 0;
    }
}

/* Ajouter ces styles lorsque le popup est ouvert/fermé pour animer */
.popup.open .popup-content {
    animation: popup-in 0.3s forwards;
}

.popup.close .popup-content {
    animation: popup-out 0.3s forwards;
}


@keyframes lumiereAnimation {

    0%,
    100% {
        text-shadow:
            0 0 3px #9c9c9c,
            0 0 6px #b8b8b8,
            0 0 9px #d2d2ff,
            0 0 12px #ececff,
            0 0 15px #bdbdff,
            0 0 18px #9090ff,
            0 0 21px #4949ff;
    }

    50% {
        text-shadow:
            0 0 1px #9c9c9c,
            0 0 2px #b8b8b8,
            0 0 3px #d2d2ff,
            0 0 4px #ececff,
            0 0 5px #bdbdff,
            0 0 6px #9090ff,
            0 0 7px #4949ff;
    }
}

@keyframes lumiereAnimationH2 {

    0%,
    100% {
        text-shadow:
            0 0 3px #36365a,
            /* Plus clair que la première suggestion */
            0 0 6px #2e2e4f,
            /* Légèrement plus clair */
            0 0 9px #262644,
            /* Encore plus clair */
            0 0 12px #1e1e3f,
            /* Plus clair que #080837 */
            0 0 15px #16162e,
            /* Un peu plus clair que #080837 */
            0 0 18px #0d0d26,
            /* Très proche de #080837 mais légèrement plus clair */
            0 0 21px #080837;
        /* La couleur cible exacte */
    }

    50% {
        text-shadow:
            0 0 1px #36365a,
            /* Plus clair que la première suggestion */
            0 0 2px #2e2e4f,
            /* Légèrement plus clair */
            0 0 3px #262644,
            /* Encore plus clair */
            0 0 4px #1e1e3f,
            /* Plus clair que #080837 */
            0 0 5px #16162e,
            /* Un peu plus clair que #080837 */
            0 0 6px #0d0d26,
            /* Très proche de #080837 mais légèrement plus clair */
            0 0 7px #080837;
        /* La couleur cible exacte */
    }
}

@keyframes textGlow {

    0%,
    100% {
        color: rgba(234, 197, 139, 0.9);
        /* Plus clair grâce à une plus grande transparence */
        text-shadow: 0 0 12px rgba(234, 197, 139, 0.6);
    }

    50% {
        color: rgba(234, 197, 139, 0.9);
        text-shadow: 0 0 24px rgba(233, 179, 69, 0.6);
    }
}

.texteLumiere {
    animation: textGlow 2s infinite;
    font-size: 24px;
    /* Taille du texte, ajustez selon vos besoins */
    font-weight: bold;
    /* Rend le texte plus épais, améliorant l'effet lumineux */
}



.lumiere {
    animation: lumiereAnimation 3s infinite alternate;
    color: rgba(0, 0, 50, 0.95);
}

.lumiereH2 {
    animation: lumiereAnimationH2 3s infinite alternate;
    color: rgba(0, 0, 50, 0.95);
}

/* Animation pour l'effet lumineux sur les étoiles */
@keyframes lumiereAnimationStars {

    0%,
    100% {
        box-shadow:
            0 0 3px #9c9c9c,
            0 0 6px #b8b8b8,
            0 0 9px #d2d2ff,
            0 0 12px #ececff,
            0 0 15px #bdbdff,
            0 0 18px #9090ff,
            0 0 21px #4949ff;
        opacity: 1;
    }

    50% {
        box-shadow:
            0 0 1px #9c9c9c,
            0 0 2px #b8b8b8,
            0 0 3px #d2d2ff,
            0 0 4px #ececff,
            0 0 5px #bdbdff,
            0 0 6px #9090ff,
            0 0 7px #4949ff;
        opacity: 0.5;
    }
}


/* Styles pour les images des témoignages */
.testimonial-image {
    border-radius: 50%;
    margin: 0 auto 15px;
    /* Ajustez l'espacement au-dessus de l'image */
    width: 90px;
    /* Nouvelle taille de l'image */
    height: 90px;
    /* Nouvelle taille de l'image */
    object-fit: cover;
    border: 2px solid white;
}

/* Styles pour le texte des témoignages */
.swiper-slide blockquote {
    font-style: italic;
    margin-bottom: 10px;
    /* Réduit l'espacement sous la citation */
    color: white;
    background: rgba(255, 255, 255, 0.1);
    border-left: 3px solid #e49b0f;
    padding: 10px;
    /* Réduit l'espace interne */
    font-size: 0.9rem;
    /* Réduit la taille de la police */
    margin: 0px;
    line-height: 1rem;
}

/* Styles pour les noms des auteurs des témoignages */
.swiper-slide .testimonial-author {
    font-weight: bold;
    margin-bottom: 10px;
    /* Réduit l'espacement sous le nom */
    color: white;
    font-size: 0.9rem;
    /* Réduit la taille de la police */
}

/* Réduction de la taille de chaque témoignage */
.swiper-slide {
    padding: 15px;
    /* Réduit le padding */
    flex: 0 0 calc(80% / 3);
    /* Ajustez la base de calcul pour réduire la largeur */
}

#cookie-popup {
    font-family: "Chilanka",
        Helvetica,
        Arial,
        Verdana,
        sans-serif;
    font-size: 18px;
    line-height: 1.8rem;
    border-radius: 5px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

#cookie-popup .cc-banner {
    background: rgba(0, 0, 50, 0.9) !important;
    color: #ffffff !important;
}

#cookie-popup .cc-btn {
    background: #e49b0f !important;
    color: #00062e !important;
    border-radius: 5px;
    padding: 15px 30px;
    font-weight: bold;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    cursor: pointer;
}

#cookie-popup .cc-btn:hover {
    background: #cf8500 !important;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
    transform: translateY(-2px);
}

.cc-link {
    color: #ffb92b !important;
}

.cc-btn {
    background: linear-gradient(145deg, #f4b860, #de9a0b) !important;
}

.cc-btn:hover {
    background: linear-gradient(145deg, #de9a0b, #f4b860) !important;
    color: #00062e;
}