body {
    margin: 0;
    padding: 0;
    background-color: white;
    overflow-x: hidden;
}

header {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    width: 100%;
    box-sizing: border-box;
}

nav {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin-top: 20px;
}

.menu {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
}

.menu li {
    margin: 0 15px;
}

.menu li a {
    text-decoration: none;
    color: black;
    font-weight: bold;
    font-size: 18px;
    font-family: 'Quantico', sans-serif;
}

.logo {
    width: 200px;
    margin-top: 50px;
}

.contact-section {
    padding: 40px 20px;
}

.contact-columns {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
}

.social-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 48%;
    position: relative;
}

.social-info img {
    margin-bottom: 20px;
}


.social-media {
    display: flex;
    justify-content: center;
    gap: 20px;
    width: 100%;
    margin-top: 20px;
}


.contact-info-wrapper {
    width: 100%;
    background-color: #007BFF;
    padding: 20px 0;
    text-align: center;
    color: white;
    font-size: 16px;
    margin-top: 20px;
}

/* Image */
.contact-image {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    object-fit: cover;
}

/* Colonne droite pour le formulaire */
.contact-form-wrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 48%;
}

.contact-form {
    width: 100%;
    margin-bottom: 0px;
}

.contact-form .form-group {
    margin-bottom: 25px;
}

.contact-form label {
    display: block;
    font-size: 18px;
    margin-bottom: 10px;
    color: #333;
    font-weight: 600;
}

.contact-form input,
.contact-form textarea {
    width: 70%;
    padding: 12px 20px;
    font-size: 16px;
    border: 2px solid #ddd;
    border-radius: 10px;
    box-sizing: border-box;
    transition: all 0.3s ease;
    background-color: #f9f9f9;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: #007BFF;
    background-color: #e9f4ff;
    box-shadow: 0 0 8px rgba(0, 123, 255, 0.5);
    outline: none;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #aaa;
    font-style: italic;
}

/* Bouton de soumission */
.contact-form button {
    padding: 12px 20px;
    background-color: #333;
    color: white;
    font-size: 16px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.contact-form button:hover {
    background-color: #555;
    transform: translateY(-3px);
}

.contact-form button:active {
    background-color: #222;
    transform: translateY(1px);
}

/* Style du titre de la section */
.section-title {
    text-align: center;
    font-family: 'Oswald', sans-serif;
    font-size: 36px;
    font-weight: bold;
    color: #333;
    margin-bottom: 60px;
}

/* Responsive sur téléphone */
@media (max-width: 768px) {
    .contact-columns {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .contact-form-wrapper,
    .social-info {
        width: 95%;
    }

    .contact-form input,
    .contact-form textarea {
        width: 95%;
    }

    .submit-btn {
        display: block;
        margin: 20px auto 0;
        text-align: center;
    }
    
}

.custom-icon {
    font-size: 30px;
    transition: transform 0.3s ease, filter 0.3s ease;
    cursor: pointer;
    color: black;
}

.custom-icons i {
    margin-right: 15px;
}


.custom-icon:hover {
    transform: scale(1.1);
    filter: brightness(1.2);
}

.contact-alternative p {
    margin: 0;
    font-family: 'Oswald', sans-serif;
    font-size: 20px;
}

.contact-alternative .contact-info {
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-info p {
    font-size: 16px;
    line-height: 1.5;
    font-family: 'Arial', sans-serif;
    font-weight: normal;
}


.contact-alternative {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 30px;
    margin-top: 30px;
    width: 100%;
}

@media (max-width: 768px) {
    .contact-alternative {
        align-items: center;
        text-align: center;
        margin-top: 20px;
    }

    .contact-alternative p {
        font-size: 15px;
        margin-top: 0px;
    }
}
