
.contact-title {
    font-size: 75px;
    margin-top: 60px;
    font-family: 'Parisienne', cursive;
    text-align: center;
    color: #470B24;
}

.contact-container { 
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
}

.form-group {
    margin-bottom: 30px;
    position: relative;
}

input, textarea {
    width: 100%;
    padding: 10px;
    border: 2px solid #470B24;
    color: #1F1B1B;
    background: #fff;
    font-size: 15px;
}

label {
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    padding: 10px;
    color: #470B24;
    cursor: text;
    font-size: 18px;
    margin-bottom: 5px;
    display: block;
    transition: all 0.3s ease;
}

/* Quand l'input a du contenu, le label disparaît */
.form-group.has-value label {
    display: none;
}

textarea {
    max-height: 150px;
}

.submit-button {
    background-color: #470B24;
    color: #fff;
    border: none;
    padding: 10px 20px;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.2s ease;
    width: 100%;
}

.submit-button:hover {
    color: #B1BAE1;
}