#content {
    position: relative;
    display: grid;
    grid-template-columns: repeat(9, 1fr);
    grid-template-rows: repeat(3, auto);
    padding: 1rem;
    gap: 2rem;
}

/* Titre Contactez nous */
#contact-title {
    grid-row: 1;
    grid-column: 1/5;
    font-family: Tusker, sans-serif;
    margin-top: 2vh;
}

#contact-eye {
    /* Image de l'oeil */
    grid-row: 1;
    grid-column: 5;
    height: 45px;
    width: 45px;
    margin-top: 3vh;
}

#telephone { /* Section téléphone */
    grid-row: 2;
    grid-column: 1/4;
}

#email-bloc { /* Section email */
    grid-row: 2;
    grid-column: 4/7;
}

#reseau { /* Section réseaux sociaux */
    grid-row: 2;
    grid-column: 7/10;
}

#telephone, #email-bloc, #reseau {
    place-self: center center;
}

.social-links img {
    /* Social media icons */
    display: inline;
    margin-left: 2px;
    margin-right: 0;
    height: 60px;
    width: 60px;
    padding: 0;
    border-radius: 50%;
    box-shadow: 0 4px 8px rgb(0 0 0 / 30%);
    transition: transform 0.2s, box-shadow 0.2s;
}

.social-links img:hover {
    /* Hover effect for social media icons */
    transform: translateY(-4px);
    box-shadow: 0 8px 16px rgb(0 0 0 / 40%);
}




/* Formulaire de contact */


#formulaire {
    /* Formulaire de contact */
    grid-row: 3;
    grid-column: 3 / 8;
}

#contactForm {
    max-width: 900px;
    margin: 40px auto;
    padding: 30px;
    background-color: #052D23;
    border-radius: 10px;
    box-shadow: 0 8px 16px rgb(0 0 0 / 10%);
    font-size: 17px;
    letter-spacing: 1px;
}



.form-group {
    flex: 1;
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
}

label {
    font-weight: bold;
    margin-bottom: 6px;
    color: #D6EE7B;
}

input[type="text"],
input[type="email"],
textarea {
    padding: 10px 12px;
    font-size: 15px;
    border: 1px solid #ccc;
    border-radius: 6px; 
    background-color: #FFFCE7;
    width: 100%;
}

textarea {
    resize: vertical;
}

button {
    width: 100%;
    height: 50px;
    padding: 12px;
    background-color: #D6EE7B;
    color: black;
    font-size: 20px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: transform 0.3s ease, font-weight 0.3s ease, font-size 0.3s ease;
}

button:hover {
    font-weight: bold;
    font-size: 22px;
    transform: scale(1.02);
}