:root {
    --color-primary: #f8f8f8;
    --color-secondary: #E44D2E;
    --color-dark: #1a1a1a;
    --color-light: #f5f5f5;
    --color-accent: #8b5a2b;
   /* --color-border: #58111A;*/
    --color-border: #1B327E;
    --color-card-bg: rgba(26, 26, 26, 0.9);
    --color-text-light: #f8f8f8;
    --color-text-dark: #f8f8f8;
}

body {
    margin: 0;
    padding: 0;
    min-height: 100vh; /* au lieu de height: 100vh */
    background:
        linear-gradient(rgba(6, 9, 16, 0) 80%, rgb(6, 9, 16) 100%),
        url("../images/ciel2.jpg");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.conteneur-contenu {
    padding: 20px;
    /* Le contenu ici peut défiler si nécessaire */
    overflow-y: auto;
    height: 100vh;
}


.conteneur-contenu {
    position: relative;
    z-index: 2;
    padding: 20px;
    overflow-y: auto;
    height: 100vh;
}





.section {
    padding: 3rem 1.5rem;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.soundcloud-embed-container { position: relative; height: 350px; overflow: hidden;}
.soundcloud-embed-container iframe { position: absolute; top: -5px; /* Décale l'iframe vers le haut pour masquer la barre orange */ height: calc(100% + 5px); /* Augmente la hauteur pour compenser le décalage */ width: 100%;}


.card {
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 10px;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    background-color: var(--color-card-bg);
    border: 5px solid rgba(42, 30, 14, 0.6);
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
}

.card-content {
    flex-grow: 1;
    padding: 1.5rem;
    background-color: var(--color-card-bg);
}

.card-footer {
    padding: 1rem;
    background-color: var(--color-card-bg);
    border-top: 1px solid rgba(42, 30, 14, 0.6);
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0.5rem;
}

.section-title {
    font-family: 'Playfair Display', serif;
    color: var(--color-primary);
    text-align: center;
    margin-bottom: 2rem;
    position: relative;
    padding-bottom: 0.5rem;
    font-size: 2.5rem;
    font-weight: 700;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.9);
    -webkit-text-stroke: 1px #000;
    paint-order: stroke fill;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background-color: var(--color-secondary);
}

.soundcloud-embed {
    width: 100%;
    height: 300px;
    border: none;
    border-radius: 18px;
    background-color: var(--color-dark);
}

.video-embed {
    width: 100%;
    height: 300px;
    border: none;
    border-radius: 8px;
}

.video-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 0px;
    background-color: var(--color-dark);

}

.video-container iframe,
.video-container video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 8px;
}

.track-title {
    font-size: 0.95rem;
    color: var(--color-text-light);
    font-weight: 600;
    margin: 0;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

.track-artist {
    font-size: 0.85rem;
    color: #aaaaaa;
    margin: 0;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

#entete {
    padding: 3rem 0 2rem;
    text-align: center;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 2rem;
}

.header-image {
    flex-shrink: 0;
}

.profile-image {
    width: 200px;
    height: 200px;
    border-radius: 10px;
    object-fit: cover;
    border: 2px solid var(--color-border);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

.header-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
}

#entete .title {
    font-size: 4rem;
    margin: 0 0 0.75rem;
    color: var(--color-primary);
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.9);
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    -webkit-text-stroke: 1.5px #000;
    paint-order: stroke fill;
    line-height: 1.2;
}

#entete .subtitle {
    font-size: 1.2rem;
    color: var(--color-primary);
    -webkit-text-stroke: 0.8px #000;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.9);
    paint-order: stroke fill;
    line-height: 1.5;
    margin: 0;
}

.ticker-container {
    width: 100%;
    max-width: 1200px;
    margin: 2rem auto;
    padding: 10px 0;
    border: 8px solid var(--color-border);
    border-radius: 5px;
    background-color: rgba(0, 0, 0, 0.7);
}

.ticker-wrap {
    width: 100%;
    overflow: hidden;
    padding: 8px 0;
}

.ticker-move {
    display: inline-block;
    white-space: nowrap;
    padding-left: 100%;
    animation: ticker 45s linear infinite;
    font-family: 'Open Sans', sans-serif;
    font-size: 1.3rem;
    color: var(--color-primary);
    font-weight: 800;
    -webkit-text-stroke: 0.8px #000;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.9);
    paint-order: stroke fill;
    letter-spacing: 0.5px;
}

.ticker-item {
    display: inline-block;
    padding-left: 2rem;
}

@keyframes ticker {
    0% {
        transform: translate3d(0, 0, 0);
    }
    100% {
        transform: translate3d(-100%, 0, 0);
    }
}

.contact-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.contact-info a {
    color: var(--color-secondary);
    font-weight: 600;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
    -webkit-text-stroke: 0.5px #000;
    paint-order: stroke fill;
}

.contact-info a:hover {
    color: var(--color-accent);
}

.email {
    font-size: 1.1rem;
    color: var(--color-primary);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
    background-color: rgba(255, 255, 255, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 5px;
    border: 1px solid var(--color-border);
    -webkit-text-stroke: 0.7px #000;
    paint-order: stroke fill;
}

footer {
    text-align: center;
    padding: 2rem 1.5rem;
    color: var(--color-primary);
    font-size: 0.9rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
    -webkit-text-stroke: 0.5px #000;
    paint-order: stroke fill;
}

@media screen and (max-width: 768px) {
    .header-content {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }

    .profile-image {
        width: 160px;
        height: 160px;
    }

    #entete .title {
        font-size: 2.2rem;
        -webkit-text-stroke: 1.2px #000;
    }

    #entete .subtitle {
        font-size: 1.1rem;
        -webkit-text-stroke: 0.7px #000;
    }

    .soundcloud-embed,
    .video-embed {
        height: 200px;
    }

    .ticker-move {
        font-size: 1.1rem;
    }

    .section-title {
        font-size: 2rem;
    }
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.fade-in {
    opacity: 0;
    animation: fadeIn 2s ease forwards;
}

.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }

.