body {
    margin: 0;
    background: #000;
    color: white;
    font-family: 'Segoe UI', sans-serif;
}

.hero {
    background: url("Images/Rose.jpeg") center/cover no-repeat;
    height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.overlay {
    background-color: rgba(0, 0, 0, 0.5);
    padding: 2rem;
    animation: slideDown 1.5s ease-out;
}

.animated-title {
    font-size: 3rem;
    color: #92015a;
    text-shadow: 0 0 10px white, 0 0 20px white;
}

.slogan {
    font-size: 1.1rem;
    margin-top: 1rem;
    color: #fff;
}

.timeline {
    position: relative;
    margin: 3rem auto;
    max-width: 900px;
}

.timeline-item {
    padding: 1rem;
    background: #111;
    border-left: 5px solid #92015a;
    margin: 2rem 0;
    position: relative;
    border-radius: 8px;
    animation: fadeInUp 1s ease;
}

.timeline-item.right {
    border-left: none;
    border-right: 5px solid #3C6CA8;
    text-align: right;
}

.timeline-item h3 {
    color: #92015a;
    margin: 0;
}

@keyframes fadeInUp {
    0% { opacity: 0; transform: translateY(30px); }
    100% { opacity: 1; transform: translateY(0); }
}

@keyframes slideDown {
    from { transform: translateY(-50px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.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;
}

.nav a {
    color: var(--rose);
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s;
}

.nav a:hover {
    color: var(--bleu);
}

.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;
}

.footer-links a {
    color: var(--bleu);
    text-decoration: none;
}

.footer-links a:hover {
    text-decoration: underline;
}