/* --- STYLE GLOBAL --- */
  body {
            font-family: Arial, sans-serif;
            margin: 0;
            padding: 0;
         background-color: #E2FEFE;
    animation: breathe 10s infinite alternate ease-in-out;
            color: #e99708;
            text-align: center;
            overflow-x: hidden;
        }
body {
    position: relative;
    min-height: 100vh;
}
        
          /* --- Ajout de l'image organique en bordure --- */
        body::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-image: url('ton_image_organique.webp'); /* Remplace par ton image */
            background-repeat: no-repeat;
            background-size: 100%;
            z-index: -1;
            opacity: 0.1; /* Ajuste la transparence selon l'effet recherché */
        }
      

     /* --- ANIMATION DE RESPIRATION ULTRA FLUIDE --- */
@keyframes breathe {
    0% {
        background-color: #E2FEFE;
    }
    25% {
        background-color: #E2FEFE;
    }
    50% {
        background-color:#E2FEFE;
    }
    75% {
        background-color: #E2FEFE;
    }
    100% {
        background-color: #E2FEFE;
    }
}
        header {
            padding: 20px 0;
            text-align: center;
            position: relative;
        }
        header img {
            width: 150px;
            position: relative;
            transition: transform 0.3s ease-in-out;
        }

/* --- Apparition du logo avec opposition de phase --- */
.logo {
    opacity: 0;
    animation: fadeInLogo 6s infinite ease-in-out;
}

@keyframes fadeInLogo {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0;
    }
}
.contenu {   border: 1px solid black; padding: 5px; 
    display: block;
left: 30%;
            width: 100%;
            max-width: 800px;
            border-radius: 10px;
            position: relative;
            transition: transform 0.3s ease-in-out; }

.contenugauche {   border: 1px solid black; padding: 5px; 
    display: block;
    left: 1%;
            width: 100%;
            max-width: 800px;
            border-radius: 10px;
            position: relative;
            transition: transform 0.3s ease-in-out; }



.contenumilieu{   border: 1px solid black; padding: 5px; 
    display: block;
            left: 50%;
            width: 80%;
            max-width: 800px;
            border-radius: 10px;
            position: relative;
            transition: transform 0.3s ease-in-out; }

.image:hover {
    transform: scale(1.1) ; rotate (360deg);
    transition: transform 0.3s ease-in-out}


  header img:hover {
    transform: scale(1.3) rotate(360deg); /* Ajout de la rotation de 360° */}

        .halo {
             position: absolute;
    width: 180px;
    height: 180px;
    background: radial-gradient(circle, rgba(255, 102, 0, 0.7) 10%, transparent 70%);
    filter: blur(15px);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(1);
    opacity: 0;
    transition: opacity 0.5s, transform 0.5s ease-in-out;
        }

.intro-text {
    text-align: center;
    font-size: 1.3em;
    font-weight: bold;
    color: #333;
    margin-bottom: 20px; /* Espacement avant la vidéo */
    padding: 0 15px; /* Pour ne pas que le texte touche les bords */
    max-width: 100%; /* S'assurer que le texte ne dépasse pas */
}
.intro-text span {
    font-size: 2em;
    font-weight: bold;
    display: block; /* Cela garantit que AZ-oHm sera bien mis sur une ligne distincte */
    margin-bottom: 10px; /* Si tu veux un peu d'espace après AZ-oHm */
}

custom-link {
    color: #e99708 !important; /* Orange habituel */
    text-decoration: none;
    font-weight: bold; /* Optionnel : met en valeur le lien */
}

/* Au survol */
.custom-link:hover {
    color: #f4a261 !important; /* Un orange plus clair au survol */
    text-decoration: underline;
}

/* Lorsqu'il est cliqué */
.custom-link:active {
    color: #e76f51 !important; /* Un ton plus foncé pour l'effet de clic */
}
a, .linktext {
    color: #e99708 !important;
    text-decoration: none !important;
}
        nav {
            margin: 20px 0;
            z-index: 10;
        }
        nav a {
            text-decoration: none;
            color: #ff6600;
            margin: 0 20px;
            font-size: 18px;
            position: relative;
            transition: transform 0.3s ease, color 0.3s ease-in-out;
             display: inline-block;  /* Cela permet à transform de fonctionner sur le texte */
             transform-origin: center center; 
            z-index: 10;
            }
        /* Ajout de l'effet de zoom sur les liens */
        nav a:hover {
            color: white;
         transform: scale(1.5);  /* Effet de zoom */
            z-index: 10;
        }
        .halo-active {
            opacity: 1 !important;
                transform: translate(-50%, -50%) scale(1.5);
        }

        /* --- VIDEO AVEC HALO --- */
        .video-container {
            position: relative;
            display: flex;
            justify-content: center;
            align-items: center;
            margin: 20px auto;
               z-index: 10;
        }
        video {
            display: block;
            width: 100%;
            max-width: 800px;
            border-radius: 10px;
            position: relative;
            transition: transform 0.3s ease-in-out;
        }
        video:hover {
            transform: scale(1.05);
        }
        .video-halo {
            position: absolute;
            width: 110%;
            height: 110%;
            background: radial-gradient(circle, rgba(255, 102, 0, 0.6) 10%, transparent 70%);
            filter: blur(20px);
            border-radius: 15px;
            animation: halo-pulse 3s infinite alternate ease-in-out;
            z-index: -1;
        }
        @keyframes halo-pulse {
            0% { opacity: 0.6; transform: scale(1); }
            100% { opacity: 0.3; transform: scale(1.1); }
        }

.wave-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    min-height: 100vh;
     pointer-events: none;
}

.wave-horizontal {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: -1;
   height: auto;
}

        svg {
            width: 100%;
            height: 100%;
        }
        path {
            fill: none;
            stroke-width: 2;
        }


  .content-section-porfolio {
     
            text-align: center;
            max-width: 800px;
            margin: 0 auto;
        }
 /* Styles spécifiques au contenu de la page Services */
        .content-section {
     
            text-align: left;
            max-width: 800px;
            margin: 0 auto;
        }
        .content-section h2, 
        .content-section h3,
        .content-section h4 {
            color: #ff6600;
            margin-bottom: 15px;
        }
        .content-section p {
            margin-bottom: 15px;
            line-height: 1.6;
        }
        .content-section ul, 
        .content-section ol {
            margin-left: 20px;
            margin-bottom: 15px;
        }
        .content-section li {
            margin-bottom: 10px;
        }

footer-wave {border: 1px solid black; padding: 5px; 
     display: block;
    width: 100%;
    height: 120px; /* Hauteur de l'onde */
    position: relative;
    background-color: transparent; /* Si tu veux un fond transparent */
    bottom: 0;
    z-index: 10;
}

footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: -1;
}

.left-sidebar {position: relative;
        text-align: left;
    left: 30%;
    width: 300px;  /* Taille de la div à gauche */
    height: 30%;  /* Hauteur complète de la page */
    background-color: rgba(255, 255, 255, 0);  /* Fond transparent */
    center:
    z-index: 1;  /* Assurez-vous qu'elle soit au-dessus du contenu */
       /* Ajout du cadre arrondi gris clair */
    border: 2px solid #D3D3D3;  /* Couleur gris clair */
    border-radius: 15px;  /* Coins arrondis */
}
 audio {
            width: 100%;
        }
        /* Empêcher le clic droit sur l'audio */
        audio, body {
            -webkit-touch-callout: none;
            -webkit-user-select: none;
            -khtml-user-select: none;
            -moz-user-select: none;
            -ms-user-select: none;
            user-select: none;
        }
audio::-webkit-media-controls-enclosure {
    overflow: hidden;
}
audio::-webkit-media-controls-download-button {
    display: none;
    
    
}

#trackInfo {
    display: none;
    border: 3px solid orange;
    border-radius: 15px;
    padding: 10px;
    background-color: #222;
    color: white;
    width: fit-content;
}


 .track-item {
            cursor: pointer;
            margin: 10px 0;
            font-size: 18px;
        }
        .track-player {
            margin-top: 20px;
        }



