/* Styles pour le footer */
.footer {
    background-color: #F0EEFF;
    padding: 60px 0 30px;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, rgba(123, 137, 255, 0.1), rgba(123, 137, 255, 0.8), rgba(123, 137, 255, 0.1));
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-column {
    display: flex;
    flex-direction: column;
}

.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.footer-logo img {
    height: 40px;
    width: auto;
    margin-right: 10px;
}

/* Style spécifique pour le logo SVG */
.footer-logo-img {
    height: 40px;
    width: auto;
    max-width: 150px;
}

.footer-logo-text {
    font-family: 'Rubik', sans-serif;
    font-weight: 700;
    font-size: 22px;
    color: #000B10;
}

.footer-description {
    color: #555;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 20px;
    text-align: left;
}

.footer-socials {
    display: flex;
    gap: 15px;
    margin-top: 5px;
}

.footer-social-link {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: #7B89FF;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s, background-color 0.3s;
    text-decoration: none;
}

.footer-social-link:hover {
    transform: translateY(-3px);
    background-color: #6678f7;
}

.footer-title {
    font-family: 'Rubik', sans-serif;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #000B10;
    position: relative;
    padding-bottom: 10px;
    text-align: left;
}

.footer-title::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    border-radius: 3px;
    background-color: #7B89FF;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-link {
    color: #555;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s, transform 0.3s;
    display: flex;
    align-items: center;
}

.footer-link svg {
    margin-right: 8px;
    fill: #7B89FF;
    min-width: 14px;
}

.footer-link:hover {
    color: #7B89FF;
    transform: translateX(3px);
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
    font-size: 15px;
    color: #555;
}

.footer-contact-item svg {
    margin-right: 10px;
    fill: #7B89FF;
    min-width: 16px;
    margin-top: 3px;
}

.footer-newsletter-text {
    font-size: 15px;
    color: #555;
    margin-bottom: 15px;
    line-height: 1.6;
}

.footer-form {
    display: flex;
    margin-bottom: 20px;
}

.footer-input {
    flex: 1;
    padding: 10px 15px;
    border: 1px solid #ddd;
    border-radius: 6px 0 0 6px;
    font-size: 14px;
    outline: none;
    transition: border-color 0.3s;
}

.footer-input:focus {
    border-color: #7B89FF;
}

.footer-button {
    background-color: #7B89FF;
    color: white;
    border: none;
    padding: 0 15px;
    border-radius: 0 6px 6px 0;
    cursor: pointer;
    font-family: 'Rubik', sans-serif;
    font-weight: 500;
    transition: background-color 0.3s;
}

.footer-button:hover {
    background-color: #6678f7;
}

.footer-bottom {
    text-align: center;
    margin-top: 50px;
    padding-top: 20px;
    border-top: 1px solid rgba(123, 137, 255, 0.2);
}

.footer-copyright {
    color: #777;
    font-size: 14px;
}

/* Responsive */
@media (max-width: 992px) {
    .footer-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .footer-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer {
        padding: 40px 0 20px;
    }
    
    .footer-bottom {
        margin-top: 30px;
    }
}
