:root {
    --rose: #eab2bb;
    --bleu: #3C6CA8;
    --noir: #000000;
    --blanc: #ffffff;
}

body {
    margin: 0;
    font-family: 'Segoe UI', sans-serif;
    background-color: var(--noir);
    color: var(--blanc);
}

.hero {
    height: 100vh;
    background: url('Images/Bleu.jpeg') center/cover no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.overlay {
    background-color: rgba(0, 0, 0, 0.6);
    padding: 2rem;
    text-align: left;
    width: 100%;
    max-width: 800px;
}

.slogan {
    text-transform: uppercase;
    font-size: 0.8rem;
    color: var(--blanc);
    letter-spacing: 1px;
}

h1 {
    font-size: 3rem;
    line-height: 1.2;
}

.pink {
    color: var(--rose);
}

.blue {
    color: var(--bleu);
}

.scroll-down {
    display: inline-block;
    margin-top: 2rem;
    font-size: 1.5rem;
    color: var(--bleu);
    text-decoration: none;
    animation: bounce 2s infinite;
}

.scroll-next {
    text-align: center;
    padding: 3rem 0 1rem;
}

.identity-section {
    padding: 4rem 2rem;
}

.identity-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.bio-text {
    max-width: 600px;
    text-align: center;
    font-size: 1.1rem;
    line-height: 1.6;
}

.carousel {
    display: flex;
    gap: 1rem;
    justify-content: center;
    position: relative;
}

.carousel-image {
    max-width: 200px;
    border-radius: 10px;
    opacity: 0;
    transition: opacity 0.8s ease;
    position: absolute;
}

.carousel-image.active {
    opacity: 1;
    position: relative;
}

.section-black {
    background-color: #000;
    padding: 4rem 2rem;
    text-align: center;
}

.section-black h2 {
    color: var(--rose);
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
}

.card {
    background: #111;
    padding: 2rem;
    width: 300px;
    border-radius: 8px;
}

.btn {
    display: inline-block;
    background-color: var(--rose);
    color: #000;
    padding: 0.6rem 1.2rem;
    margin-top: 1rem;
    border-radius: 5px;
    text-decoration: none;
    transition: background 0.3s;
}

.btn:hover {
    background-color: #d894a0;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(10px); }
}



.site-header {
    background-color: #000;
    padding: 1rem 2rem;
    text-align: center;
}

.nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.5rem;
    color : whitesmoke;

}

.nav a {
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s;
    color : whitesmoke;

}

.nav a:hover {
    color : whitesmoke;

}

.site-footer {
    background-color: #111;
    color: var(--blanc);
    padding: 2rem;
    text-align: center;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 1rem 0 0 0;
}

.footer-links li {
    margin: 0.3rem 0;
    color : whitesmoke;

}

.footer-links a {
    text-decoration: none;
    color : whitesmoke;
}

.footer-links a:hover {
    text-decoration: underline;
    color : snow;

}


