/* Shared Footer Styles - aligned with accueil.html */
.footer {
    background: var(--dark-blue);
    color: var(--white);
    padding: 4rem 2rem 2rem;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

/* Footer logo alignment - override header .logo for footer context */
.footer-about .logo {
    display: flex;
    align-items: center;
    font-size: inherit;
    color: inherit;
}

.footer-description {
    max-width: 421px;
    font-family: Inter, 'Work Sans', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 26px;
    letter-spacing: 0;
    color: #BBBDC2;
    margin-top: 0.5rem;
}

.viedo-are {
    font-family: inherit;
    font-weight: inherit;
    font-size: inherit;
    line-height: inherit;
    letter-spacing: inherit;
    color: #BBBDC2;
    margin-top: 1.5rem;
}

.footer-about p {
    color: #BBBDC2;
    margin-top: 1rem;
    line-height: 1.6;
    font-size: 16px;
}

.to-ohter {
    width: 180px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1.5rem;
    gap: 1rem;
}

.to-ohter-icon {
    display: flex;
    align-items: center;
    position: relative;
    flex: 1;
    text-decoration: none;
    transition: transform 0.3s ease;
    height: 40px;
}

.to-ohter-icon img {
    width: auto;
    height: 100%;
    max-width: 100%;
    display: block;
}

.to-ohter-icon .icon-hover {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: opacity 0.3s ease;
    width: auto;
    height: 100%;
}

.to-ohter-icon .icon-normal {
    opacity: 1;
    transition: opacity 0.3s ease;
    width: auto;
    height: 100%;
}

.to-ohter-icon:hover .icon-normal {
    opacity: 0;
}

.to-ohter-icon:hover .icon-hover {
    opacity: 1;
}

.to-ohter-icon:hover {
    transform: translateY(-3px);
}

.to-ohter-icon:hover .icon-hover {
    transform: translate(-50%, calc(-50% - 3px));
}

.footer-sections-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    grid-column: span 2;
}

.footer-section div {
    margin-bottom: 1.5rem;
    font-family: inherit;
    font-weight: inherit;
    font-size: inherit;
    line-height: inherit;
    letter-spacing: inherit;
    color: #BBBDC2;
}

.footer-section h4 {
    margin-bottom: 1.5rem;
    font-family: Inter, 'Work Sans', sans-serif;
    font-weight: 600;
    font-size: 18px;
    line-height: 26px;
    color: #BBBDC2;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.6rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--orange-primary);
}

.footer-links a.active {
    color: #C91C18;
}

@media (min-width: 1150px) {
    .footer-section-societe {
        margin-left: 4rem;
    }
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
}

@media (max-width: 749px) {
    .footer {
        padding: 3rem 1.5rem 1.5rem;
    }

    .footer-container {
        grid-template-columns: 1fr;
    }

    .footer-sections-row {
        grid-column: 1;
        gap: 2rem;
    }
}
