.titre-page{
    width: 100%;
    text-align: center;
}
h1 {
    font-family: Classyvogueregular;
    font-size: 5vw;
    color: #e84e1b;
    font-weight: normal;
    padding: 2vw;
    padding-bottom: 0vw;
}
h3{
    font-family: Classyvogueregular;
    font-size: 3vw;
    color: #e84e1b;
    font-weight: normal;
    padding-top: 2vw;
    margin-bottom: 1vw;
}
.titre-page{
    width: 60wv;
    text-align: center;
}
p{
    color: black;
    font-size: 1.5vw;
    font-family: InterLight;
    width: 60wv;
    margin-top: 1vw;
}
@media (max-width: 600px) {
    .container {
        width: 80vw; 
    }
    h1{
        font-size: 10vw;
        
    }
    h3{
        font-size: 6vw;
        width: 80wv;
        white-space: nowrap;
    }
    p{
    width: 80vw;
    font-size: 3vw;

    }
}

footer{
    width: 100vw;
    background-color: #e84e1b;  
    margin-top: 3vw;
}
footer h2{
    font-weight: normal;
    font-family: InterSemiBold;
    color: #e6e6f4;
    display: flex;
    justify-content: center;
    padding: 2vw;
    font-size: 1.5vw;
}
@media (max-width: 600px){
    footer h2{
        font-size: 2.5vw;
    }
}




.field {
    margin-bottom: 15px;
    width: 100%;
}

/* Styles des labels */
label {
    font-size: 2vw;
    font-weight: bold;
    margin-bottom: 0.5vw;
    display: block;
    font-family: InterSemiBold;
}

/* Styles des champs de saisie */
input[type="text"], input[type="email"], textarea {
    width: 100%;
    padding: 1vw;
    font-size: 1.5vw;
    border: 0.2vw solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
    font-family: InterLight;
}

textarea {
    height: 150px; /* Hauteur fixe */
    resize: none; /* Désactive le redimensionnement */
}

/* Style du bouton */
input[type="submit"] {
    width: 40vw;
    margin-left: 10vw;
    padding: 1vw;               /* Espace interne (haut/bas et gauche/droite) */
    font-size: 2vw;                /* Taille du texte */
    font-weight: bold;                /* Texte en gras */
    color: #e84e1b;                   /* Couleur du texte */
    border: 0.2vw solid #e84e1b;        /* Bordure orange de 2px */
    background-color: #e6e6f4;        /* Couleur de fond légèrement bleutée */
    border-radius: 30px;              /* Coins arrondis */
    cursor: pointer;                  /* Curseur "pointer" au survol */
    transition: background-color 0.3s ease, color 0.3s ease;
    font-family: InterSemiBold;
}


input[type="submit"]:hover {
    background-color: #e84e1b;        /* Fond orange au survol */
    color: #e6e6f4;  
}
input[type="text"]:focus, input[type="email"]:focus, textarea:focus {
    border-color: #e84e1b; /* Changez la couleur du contour ici */
    box-shadow: 0 0 5px rgba(76, 175, 80, 0.5); /* Ombre de la même couleur */
    outline: none; /* Supprime le contour par défaut */
}

/* Media Query pour les écrans plus petits (mobile) */
@media (max-width: 600px) {
    label {
    font-size: 4vw;
}
    input[type="text"], input[type="email"], textarea{
        font-size: 3vw;
        border: 0.3vw solid #ccc;
    }

    input[type="submit"] {
        font-size: 4vw; /* Augmenter la taille du bouton sur mobile */
        width: 60vw;
        margin-left: 10vw;

    }
}

span{
    color: #e84e1b;
    font-family: InterLight;
}


.notification {
            position: fixed;
            bottom: 20px;
            left: 50%;
            transform: translateX(-50%);
            background-color: #D9531E; /* Couleur orange */
            color: white;
            padding: 1.5vw 10vw;
            border-radius: 8px;
            font-size: 2vw;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
            opacity: 0; /* Initialement invisible */
            transform: translate(-50%, 20px); /* En dehors de la vue */
            transition: opacity 0.5s ease, transform 0.5s ease; /* Transition douce */
            z-index: 1000; /* Superposition au-dessus d'autres éléments */
        }

        /* Classe pour montrer la notification */
        .notification.show {
            opacity: 1; /* Visible */
            transform: translate(-50%, 0); /* Se positionne en place */
        }

        /* Classe pour masquer la notification */
        .notification.hide {
            opacity: 0; /* Transparent */
            transform: translate(-50%, 20px); /* Redescend en bas */
        }
     
@media (max-width: 600px){
    .notification {
        font-size: 4vw;
        padding: 2vw 15vw;
        width: 71vw;
    }
}