body {
    margin: 0;
    padding: 0;
    font-size: 16px;
    font-family: 'Roboto', sans-serif;
    overflow: scroll;
}


body a {
    text-decoration: none;
    color: #1d1e18;
}

body li {
    list-style: none;

}

h1 {
    font-family: "Cherish", cursive;
    font-weight: 100;
    font-style: normal;
    font-size: 100px;
    margin: 0;

}

.subtitle {
    margin-top: 0.5em;
    font-family: 'Roboto', sans-serif;
    font-size: 26px;
    color: #d4c490;

}


h2,
h3 {
    text-align: center;

}

.pL0 {
    padding-left: 0px;
}


/* Generale */

.text-align {
    text-align: center;
}

/* Header */

.logo-mobil {
    display: none;
}

.header {
    background: url(../images/massetteD.jpg);
    background-size: cover;
    background-position: center;
    /* color: #fff; */
    height: 100vh;
    animation: zoomOut 3s ease-in-out forwards;

}

.down {
    height: 110px;

}

.a-down {
    text-align: end;
    position: absolute;
    bottom: 10vh;
    right: 5vw;
}

.title h1 {
    opacity: 0;
    transform: translateY(-20px);
    transition: opacity 2s ease, transform 1s ease;
    color: #EEDFC2;
    width: 100%;
    padding: 18vh 0vh;
    text-align: center;

}

.title h2 {
    text-align: center;
    font-size: 36px;
    opacity: 0;
    transform: translateY(-20px);
    transition: opacity 2s ease, transform 5s ease;
    color: #EEDFC2;
    margin-left: 20vw;
    width: 100%;
}

/* Background */

.background {
    background-image: url(../images/massetteD.jpg);
    background-size: cover;
    height: 300px;
    margin-bottom: 0px;
    background-attachment: fixed;
}

.loading-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(0, 0, 0, 0.8);
    z-index: 9999;
}

.loading-icon {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}


/* Hide the loading container after the page is loaded */
.hidden-load {
    display: none;
}

/* .notification {
    padding: 10px;
    margin: 10px 0;
    border: 1px solid transparent;
    border-radius: 5px;
    position: absolute;
    top: 20vh;
    right: 40vw;
}

.success {
    color: #155724;
    background-color: #d4edda;
    border-color: #c3e6cb;
}

.error {
    color: #721c24;
    background-color: #f8d7da;
    border-color: #f5c6cb;
} */


.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 99999;
    padding: 10px 20px;
    border-radius: 5px;
    border: 1px solid transparent;
    opacity: 0;              /* départ invisible */
    transform: translateY(-20px); /* léger décalage vers le haut */
    transition: opacity 0.5s ease, transform 0.5s ease;
}

/* couleurs succès / erreur */
.success {
    background-color: #d4edda;
    border-color: #c3e6cb;
    color: #155724;
}

.error {
    background-color: #f8d7da;
    border-color: #f5c6cb;
    color: #721c24;
}

/* état visible */
.notification.show {
    opacity: 1;
    transform: translateY(0);
}
