/*
 * SK PRO — Footer
 * Dark navy — 3 colonnes
 */

.skpro-footer {
    background-color: var(--color-primary);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    margin-top: 5rem;
}

.skpro-footer__main {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    padding: 4rem 2rem;
    max-width: var(--max-width);
    margin-inline: auto;
    font-family: var(--font-family);
    font-size: 0.875rem;
    line-height: 1.8;
}

@media (min-width: 768px) {
    .skpro-footer__main {
        grid-template-columns: 1fr 1fr 1fr;
    }
}

/* ===== COLONNE 1 — Marque ===== */

.skpro-footer__brand {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.skpro-footer__logo {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-secondary-vivid);
    text-decoration: none;
    margin-bottom: 1.5rem;
    display: inline-block;
}

.skpro-footer__desc {
    color: rgba(255, 255, 255, 0.5);
    max-width: 20rem;
    margin-bottom: 2rem;
}

.skpro-footer__socials {
    display: flex;
    gap: 0.75rem;
}

.skpro-footer__social-link {
    width: 2rem;
    height: 2rem;
    border-radius: var(--radius-xs);
    background-color: rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    text-decoration: none;
    transition: background-color var(--transition-fast);
}

.skpro-footer__social-link:hover {
    background-color: var(--color-secondary);
    color: #ffffff;
}

.skpro-footer__social-link .material-symbols-outlined {
    font-size: 0.875rem;
}

/* ===== COLONNES LIENS ===== */

.skpro-footer__links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.skpro-footer__col-title {
    color: #ffffff;
    font-weight: 700;
    margin-bottom: 1.5rem;
    font-size: 0.9375rem;
}

.skpro-footer__nav {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.skpro-footer__nav a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    transition: color var(--transition-fast), transform var(--transition-fast);
    display: inline-block;
}

.skpro-footer__nav a:hover {
    color: #ffffff;
    transform: translateX(4px);
}

/* ===== COLONNE 3 — Newsletter ===== */

.skpro-footer__newsletter {
    display: flex;
    flex-direction: column;
}

.skpro-footer__newsletter-text {
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 1rem;
}

.skpro-footer__newsletter-form {
    display: flex;
    gap: 0.5rem;
}

.skpro-footer__newsletter-input {
    flex: 1;
    background-color: rgba(255, 255, 255, 0.08);
    border: none;
    border-radius: var(--radius-xs);
    padding: 0.5rem 0.75rem;
    font-size: 0.75rem;
    color: #ffffff;
    font-family: var(--font-family);
    outline: none;
    transition: box-shadow var(--transition-fast);
}

.skpro-footer__newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.35);
}

.skpro-footer__newsletter-input:focus {
    box-shadow: 0 0 0 1px var(--color-secondary);
}

.skpro-footer__newsletter-btn {
    background-color: var(--color-secondary);
    border: none;
    border-radius: var(--radius-xs);
    padding: 0.5rem;
    color: #ffffff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color var(--transition-fast);
}

.skpro-footer__newsletter-btn:hover {
    background-color: var(--color-secondary-vivid);
}

.skpro-footer__newsletter-btn .material-symbols-outlined {
    font-size: 0.875rem;
}

/* ===== BOTTOM BAR ===== */

.skpro-footer__bottom {
    padding: 2rem;
    max-width: var(--max-width);
    margin-inline: auto;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    text-align: center;
    color: rgba(255, 255, 255, 0.35);
    font-size: 0.75rem;
}

@media (min-width: 768px) {
    .skpro-footer__bottom {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
}

.skpro-footer__legal {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.skpro-footer__legal a {
    color: rgba(255, 255, 255, 0.35);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.skpro-footer__legal a:hover {
    color: #ffffff;
}
