/* PAGE À PROPOS DE NOUS */

.bodynous {
    min-height: 100vh;
    background: url("../images/àproposdenous.png") center/cover no-repeat fixed;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 80px 20px 80px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.page-title {
    font-size: 2.2rem;
    color: white;
    text-align: center;
    margin-top: 100px;
    margin-bottom: 10px;
}

.page-subtitle {
    color: #ffffffcc;
    text-align: center;
    margin-bottom: 50px;
    font-size: 0.95rem;
}

.cards-grid {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
    max-width: 800px;
}

.card {
    background: linear-gradient(145deg, #7dd4e787, #000e41);
    border-radius: 15px;
    padding: 35px 28px;
    text-align: center;
    transition: 0.3s ease;
    box-shadow: -1px 1px 30px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.05);
    width: 360px;
}

.card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 40px rgb(0, 225, 250), 0 0 20px rgb(0, 229, 255);
}

.card-icon {
    font-size: 2.2rem;
    margin-bottom: 14px;
}

.card-title {
    font-size: 1.1rem;
    color: white;
    font-weight: 600;
    margin-bottom: 18px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.card-text {
    font-size: 0.88rem;
    color: #ffffffcc;
    line-height: 1.75;
    text-align: left;
}

.card-text strong {
    color: #fff;
}

.card-badge {
    display: inline-block;
    margin-top: 16px;
    background: rgba(125, 212, 231, 0.12);
    border: 1px solid rgba(125, 212, 231, 0.3);
    border-radius: 20px;
    padding: 4px 14px;
    font-size: 0.75rem;
    color: #7dd4e7;
}

.reseau-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.reseau-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 16px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    text-decoration: none;
    transition: background 0.2s, transform 0.2s;
}

.reseau-btn:hover {
    background: rgba(125, 212, 231, 0.12);
    transform: translateX(4px);
}

.reseau-btn img {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: -1px 0px 10px 2px #27386d, 0 0 10px #000;
}

.reseau-name {
    font-size: 0.85rem;
    color: white;
    font-weight: 600;
}

.reseau-arrow {
    margin-left: auto;
    color: #7dd4e7;
    font-size: 0.9rem;
}

/* ---- MOBILE (≤ 768px) ---- */
@media (max-width: 768px) {

    .bodynous {
        background-attachment: scroll;
        padding: 70px 16px 60px;
    }

    .page-title {
        font-size: 1.6rem;
        margin-top: 70px;
        margin-bottom: 8px;
    }

    .page-subtitle {
        font-size: 0.9rem;
        margin-bottom: 30px;
    }

    .cards-grid {
        flex-direction: column;
        gap: 20px;
    }

    .card {
        width: 100%;
        padding: 28px 20px;
    }

    .card-icon {
        font-size: 2rem;
        margin-bottom: 12px;
    }

    .card-title {
        font-size: 1rem;
        margin-bottom: 14px;
    }

    .card-text {
        font-size: 0.85rem;
    }
}