footer {
    display: flex;
    background-color: #121212;
    color: rgba(255, 255, 255, 0.6);
    padding: 50px 0px 15px 0px;
    margin-top: 40px;
    z-index: 999;
    position: relative;
}

.row-container {
    max-width: 1200px;
    display: flex;
    flex-direction: column;
    height: 100%;
}
.footer-container {
    display: flex;
    flex-direction: column;
}

.row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    margin-left: 35px;
}
.row > div {
    flex: 1;
    margin-right: 20px;
    margin-bottom: 30px;
}

/* Colonnes du footer */
.footer-col {
    width: 30%;
    min-width: 280px;
}
.row-container hr {
    width: 100%;
    border: none;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: auto;
}

/* Titres */
.footer-title {
    color: #fff;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 16px;
    margin-bottom: 15px;
}

/* Texte */
footer p {
    font-size: 1em;
    line-height: 1.2;
    margin-bottom: 15px;
}

/* Contact Info */
.footer-contact {
    list-style: none;
    padding: 0;
}

.footer-contact li {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    font-size: 14px;
}

.footer-contact i {
    margin-right: 10px;
    color: var(--third-text-color);
}
.footer-contact a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color 0.3s ease-in-out;
}
.footer-contact a:hover {
    color: var(--text-hover-color);
}

/* Icônes sociales */
.footer-social {
    display: flex;
    gap: 10px;
    padding-left: 0;
    margin-top: 15px;
}

.footer-social li {
    list-style: none;
}

.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    background-color: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.8);
    border-radius: 5px;
    font-size: 16px;
    transition: 0.3s ease-in-out;
    text-decoration: none;
}

.footer-social a:hover {
    background-color: var(--text-hover-color);
    color: #fff;
}

/* Liens utiles */
.footer-links {
    list-style: none;
    padding-left: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 14px;
    transition: 0.3s ease-in-out;
}

.footer-links a:hover {
    color: var(--text-hover-color);
}

/* Formulaire de contact */
.footer-form-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-left: 50px;
}

.footer-form {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.footer-input,
.footer-textarea {
    width: 100%;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    border-radius: 5px;
    padding: 12px;
    margin-bottom: 15px;
    font-size: 1em;
}

.footer-input::placeholder,
.footer-textarea::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.footer-input:focus,
.footer-textarea:focus {
    border-color: rgba(255, 255, 255, 0.5);
    outline: none;
}

.footer-textarea {
    resize: none;
    height: 120px;
}

/* Bouton de soumission */
.footer-btn {
    background-color: var(--third-text-color);
    color: white;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    border-radius: 5px;
    padding: 14px;
    text-align: center;
    transition: 0.3s ease-in-out;
    border: none;
    cursor: pointer;
    width: 100%;
}

.footer-btn:hover {
    background-color: var(--text-hover-color);
}

/* Responsive */
@media (max-width: 1000px) {
    footer {
        padding-bottom: 80px;
        position: relative;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    .row-container {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        text-align: center;
    }
    .footer-contact {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .footer-social {
        margin: auto 20px;
    }
    .link-social {
        display: flex;
        align-items: center;
        position: absolute;
        bottom: 10px;
        justify-content: center;
    }
    .footer-form {
        align-items: center;
    }
    .footer-input, .footer-textarea {
        width: 100%;
    }
    .footer-btn {
        width: 100%;
    }
}
.footer-divider {
    width: 100%;
    border: none;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: none;
    margin: 20px 0;
}
.link-social {
    display: flex;
    align-items: center;
    justify-content: center;
}
.link-social p {
    color: var(--main-text-color);
    font-family: var(--main-font);
    font-size: 0.9em;
    text-align: center;
    margin: 20px auto 0px 30px;
}
