/* ============================================
   INDEX.CSS — Styles dédiés à la page d'accueil
   Dréa Digital · dreadigital.fr
   ============================================ */

/* ─────────────────────────────────────────────
   LIGHTBOX — FIX RATIO (même correctif que demo.css)
   index.html avait width="1000" height="600" forcés
   sur le tag img → ratio 5:3 sur toutes les images.
   Supprimés + override CSS ci-dessous.
───────────────────────────────────────────── */
.lightbox__img--sized {
    width: auto;
    height: auto;
    max-width: 92vw;
    max-height: 88vh;
    object-fit: contain;
}

@media (max-width: 768px) {
    .lightbox__img--sized {
        max-width: 96vw;
        max-height: 82vh;
    }
    .lightbox__close {
        top: 12px;
        right: 16px;
        font-size: 32px;
        padding: 4px 8px;
    }
}

/* ─────────────────────────────────────────────
   SECTION FONDATEUR
───────────────────────────────────────────── */
.founder {
    padding: var(--space-xl) 0;
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-subtle);
    border-bottom: 1px solid var(--border-subtle);
}

.founder__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-xl);
    text-align: center;
}

@media (min-width: 768px) {
    .founder__inner {
        flex-direction: row;
        align-items: center;
        text-align: left;
        gap: 4rem;
    }
}

/* Photo */
.founder__photo-wrap {
    position: relative;
    flex-shrink: 0;
}

.founder__photo-glow {
    position: absolute;
    inset: -20px;
    background: var(--gradient-primary);
    filter: blur(35px);
    opacity: 0.2;
    border-radius: var(--radius-lg);
    pointer-events: none;
}

.founder__photo {
    width: 180px;
    height: auto;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-accent);
    position: relative;
    z-index: 1;
    object-fit: cover;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.45);
    display: block;
}

@media (min-width: 768px) {
    .founder__photo {
        width: 220px;
    }
}

/* Contenu textuel */
.founder__content {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    max-width: 600px;
}

.founder__quote {
    font-size: 1.35rem;
    font-weight: 600;
    line-height: 1.5;
    color: var(--text-primary);
    margin: 0;
    font-style: normal;
    border: none;
    padding: 0;
}

@media (min-width: 768px) {
    .founder__quote {
        font-size: 1.55rem;
    }
}

.founder__text {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin: 0;
}

/* ─────────────────────────────────────────────
   FOOTER — Lien Mini-Jeu 404 (Easter egg)
───────────────────────────────────────────── */
.footer__game-link {
    opacity: 0.55;
    font-size: 0.8rem;
    transition: opacity 0.2s ease, color 0.2s ease;
}

.footer__game-link:hover {
    opacity: 1;
    color: var(--accent-green) !important;
}
