/* =========================
   sponsors.css
   Page en construction.
   Le reset, header, footer viennent de style1.css.
========================= */

/* =========================
   MAIN
========================= */
.wip-main {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 80px 28px 90px;
    min-height: calc(100vh - var(--nav-h) - 80px);
}

/* =========================
   ICÔNE ANIMÉE
========================= */
.wip-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    margin-bottom: 32px;
}

.wip-circle {
    width: 96px;
    height: 96px;
    background: var(--red-light);
    border: 2px solid var(--red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--red);
    animation: wip-pulse 2.4s ease-in-out infinite;
}

@keyframes wip-pulse {
    0%, 100% { transform: scale(1);    box-shadow: 0 0 0 0 rgba(216,35,42,0.2); }
    50%       { transform: scale(1.05); box-shadow: 0 0 0 12px rgba(216,35,42,0); }
}

/* Points de chargement */
.wip-dots {
    display: flex;
    gap: 6px;
}
.wip-dots span {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--red);
    opacity: 0.3;
    animation: wip-dot 1.2s ease-in-out infinite;
}
.wip-dots span:nth-child(2) { animation-delay: 0.2s; }
.wip-dots span:nth-child(3) { animation-delay: 0.4s; }

@keyframes wip-dot {
    0%, 80%, 100% { opacity: 0.25; transform: scale(0.85); }
    40%           { opacity: 1;    transform: scale(1); }
}

/* =========================
   TEXTE
========================= */
.wip-main .section-label {
    margin-bottom: 12px;
}

.wip-main h1 {
    font-family: var(--font-head);
    font-size: clamp(24px, 4vw, 42px);
    font-weight: 900;
    color: var(--black);
    letter-spacing: -0.5px;
    line-height: 1.1;
    margin-bottom: 16px;
    max-width: 520px;
}

.wip-main > p {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.8;
    color: var(--gray-700);
    max-width: 460px;
    margin-bottom: 40px;
}

/* =========================
   ENCADRÉ CONTACT
========================= */
.wip-contact {
    background: var(--gray-100);
    border: 1px solid #e8e8e8;
    border-radius: var(--radius);
    padding: 28px 36px;
    margin-bottom: 36px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    max-width: 400px;
    width: 100%;
}

.wip-contact p {
    font-family: var(--font-head);
    font-size: 14px;
    font-weight: 600;
    color: var(--gray-700);
    margin: 0;
}

/* =========================
   LIEN RETOUR
========================= */
.wip-back {
    font-family: var(--font-head);
    font-size: 13px;
    font-weight: 600;
    color: var(--gray-400);
    text-decoration: none;
    transition: color var(--transition);
}
.wip-back:hover { color: var(--red); }

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 768px) {
    .wip-main { padding: 60px 20px 70px; }
    .wip-contact { padding: 22px 20px; }
}
