body {
    background-color: #f4d7e6;
    font-family: "Lora", sans-serif;
    color: #002b60;
}

header {
    padding: 2rem;
    text-align: center;
    color: #4a4a4a;
}

#liste_menu {
    display: flex;
    justify-content: space-around;
    list-style: none;
}

.lien {
    position: relative;
    text-decoration: none;
    color: #002b60;
    font-family: "Lora", serif;
    padding: 0.5rem;
    transition: color 0.3s ease;
}

.lien::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0%;
    height: 2px;
    background-color: #002b60;
    transition: width 0.3s ease;
}

.lien:hover::after {
    width: 100%;
}

.lien:hover {
    color: white;
}

#menu {
    background: linear-gradient(135deg, #f8e8ef, #f4d7e6, #e6b8c8, #d4a5b5);
    border-radius: 20px;
    padding: 1.2rem 2rem;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(8px);
}



#menu {
    animation: fadeIn 1.2s ease forwards;
    opacity: 0;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}


@media screen and (max-width: 768px) {
    #liste_menu {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        padding: 0;

    }

    .lien {
        font-size: 1.1rem;
        padding: 0.8rem 1rem;
        width: 100%;
        text-align: center;
    }

    #menu {
        padding: 1rem;
        border-radius: 0;
    }
}

.container {
    max-width: 900px;
    margin: auto;
    padding: 40px 20px;
}

.section {
    margin-bottom: 40px;
}

h2 {
    font-size: 3rem;
    text-align: center;
    font-family: "Alice", serif;
    margin: 2rem;
}

.item {
    background: #ffe9f3;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 20px;
}

.item h3 {
    font-size: 1.1rem;
    font-family: "Alice", serif;
    color: #002b60;
    margin: 0.5rem 0;

}

.item p {
    margin: 5px 0;
}



.photo {
    height: 180px;
    width: 180px;
    object-fit: cover;
    border-radius: 50%;
    border: 1px solid #002b60;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    object-position: center top;
}


#btnScrollTop {
    display: none;
    position: fixed;
    bottom: 40px;
    right: 30px;
    z-index: 100;
    background-color: var(--primary-color);
    color: white;
    border: none;
    outline: none;
    padding: 12px 16px;
    border-radius: 50%;
    font-size: 18px;
    cursor: pointer;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: opacity 0.3s ease;
}

#btnScrollTop:hover {
    background-color: #001e44;
}