.elementor-1439 .elementor-element.elementor-element-2507d74{--display:flex;}/* Start custom CSS for html, class: .elementor-element-7832bed */html, body {
  font-family: "Excon", system-ui, -apple-system, sans-serif !important;
}
:root {

     font-display: swap;

--vert: #008C3D;   /* Vert écoresponsable */
--bleu: #0072C1; /* Bleu foncé élégant */
--marron: ##FFFFFF;
--orange: #0072C1;
--accent-bg: #161614; /* Fond neutre */

.text-white { color: #FFFFFF; } /* Texte blanc */
.text-shadow { text-shadow: 2px 2px 5px rgba(0, 0, 0, 5); } /* Ombre floutée */


}
        /* Styles globaux */
        html, body {
            margin: 0;
            background-color: #121212;
            color: white;
            overflow-x: hidden;
        }

        /* Bannière */
        .banner.banner-container {
            position: relative;
            background-image: url(/wp-content/uploads/2025/12/DUBINC.webp);
            background-size: cover;
            background-position-y: 20%;
            height: 500px;
        }

        .banner-title {
            position: absolute;
            bottom: 60px;
            left: 20px;
            font-size: em;
            font-weight: 800;
            color: white !important;
            text-shadow: 5px 5px 5px rgba(0, 0, 0, 0.7);
        }

        .banner-date {
            position: absolute;
            bottom: 10px;
            left: 20px;
            font-weight: 800;
            font-size: 1.5em;
            color: white !important;
            text-shadow: 5px px 5px rgba(0, 0, 0, 0.7);
            background: var(--bleu);
            padding: 2px 10px;
            border-radius: 20px;
        }

        /* Contenu */
        .content.content-container {
            display: flex;
            flex-wrap: nowrap;
            justify-content: space-between;
            padding: 20px;
            gap: 20px;
        }

        .bio-video-container {
            flex: 0 0 60%;
            max-width: 60%;
            display: flex;
            flex-direction: column;
        }

        .bio.bio-container {
            margin-bottom: 20px;
        }

        .bio-title {
            font-size: 1.2em;
            font-weight: 800;
            color: var(--bleu);
            margin-bottom: 10px;
        }

        .bio-text {
            line-height: 1.5;
            color: var(--accent-bg);
        }

        .buttons-container {
            margin: 20px 0;
            display: flex;
            gap: 10px;
            flex-wrap: wrap;
        }

        .button {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 8px 12px; /* Réduction de la taille des boutons */
            border-radius: 20px;
            font-size: 12px; /* Réduction de la taille de police */
            font-weight: bold;
            text-align: center;
            border: 2px solid white;
            background: none;
            color: white !important;
        }

        .button-instagram {
            border: none;
            background: var(--orange);
            color: white !important;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .button-instagram:hover {
            transform: scale(1.05);
            box-shadow: 0 4px 10px rgba(253,188,68,0.6);
        }

        /* Spotify */
        .spotify.spotify-container {
            flex: 0 0 40%;
            max-width: 40%;
            text-align: center;
        }

        .spotify-iframe {
            width: 100%;
            height: 710px;
            border: none;
            border-radius: 8px;
        }

        /* Styles pour la vidéo YouTube */
        .video-container iframe {
            width: 560px;      /* Largeur par défaut */
            height: 315px;     /* Hauteur par défaut */
            max-width: 100%;   /* Rend le tout responsive */
            border: none;
            display: block;    /* Pour centrer avec margin auto */
            margin: 0 auto;    /* Centre la vidéo horizontalement */
            border-radius: 10px;
        }

        @media (max-width: 768px) {
            .content.content-container {
                flex-direction: column;
            }

            .bio-video-container, .spotify.spotify-container {
                flex: 1 1 100%;
                max-width: 100%;
            }

            .spotify-iframe {
                height: 730px; /* Augmentation de 20px uniquement sur mobile */
                overflow: hidden; /* Empêche le défilement dans l'iframe */
            }

            .buttons-container {
                flex-wrap: nowrap;
                justify-content: space-between; /* Aligne les boutons sur une seule ligne */
            }

            .video-container iframe {
                margin-top: 20px;
                border-radius: 10px;
            }
        }/* End custom CSS */