body{
    background-color: #0d1024;
    color:white;
    font-family: 'Cormorant Garamond', serif;
}
/* Cela sert a définir le back ground de body*/
.hero{
    text-align: center;
    padding: 100px 20px;
}
/* sert a aligner tous les texte de la catégorie hero au centre a 100pixel de haut et 20pixel de large*/

.hero h1{
    font-size: 80px;
    font-family: 'Cavet', cursive;
    color: #e2b45f;
}

.hero p:first-child{
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 3px;
    color: #caa563;
}

.hero p:last-of-type{
    font-style: italic;
    opacity: 0.7;
    font-size: 20px;
}

.hero span{
    color: #e2b45f;
    font-size: 28px;
    font-weight: 600;
}


.carte-raison {
    margin-top: 40px;
    padding: 20px 30px;
    background-color: #f6efe6;
    color: #2a2318;
    border-radius: 6px;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
    font-style: italic;
    font-size: 20px;

    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.carte-raison.visible{
    opacity: 1;
    transform: translateY(0);
}

.timeline {
    padding: 80px 20px;
    max-width: 600px;
    margin: 0 auto;
}


.timeline h3 {
    text-align: center;
    font-family: 'Caveat', cursive;
    font-size: 48px;
    color: #e2b45f;
    margin-bottom: 50px;
}

.souvenir {
    position: relative;
    padding-left: 30px;
    padding-bottom: 40px;
    border-left: 1px solid rgba(226, 180, 95, 03);
}

.souvenir::before {
    content: "";
    position: absolute;
    left: -5px;
    top: 5px;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background-color: #e2b45f;
}

.souvenir h4 {
    color: #d98ca0;
    font-size: 22px;
    margin: 0 0 0 8px 0;
}

.souvenir p {
    color: #a9a9c9;
    margin: 0;
}


.final {
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
}

.final p {
    font-family: 'Caveat', cursive;
    font-size: 60px;
    color: #f6efe6;
    max-width: 500px;
    text-align: center;
}

.etoile {
    cursor: pointer;
    transform-origin: center;
    transition: transform 0.2s ease;
}

.etoile:hover {
    transform: scale(1.02);

}


.sky h2 {
    font-family: 'Caveat';
    font-size: 48px;
    color: #e2b45f;
    text-align: center;
    margin-bottom: 30px;
}


@keyframes scintille {
    0% { opacity: 0.2; }
    50% { opacity: 0.8; }
    100% { opacity: 0.2; }
}

.etoile-fond {
    animation: scintille 3s ease-in-out infinite;
}