/* ==========================================
   RÉSEAUX SOCIAUX - DESIGN SIMPLE & ÉPURÉ
========================================== */
:root {
    --bleu: #173F8A;
    --bleu-dark: #0F2D5E;
    --orange: #F39C12;
    --noir: #101828;
    --gris: #667085;
    --off: #F7F9FB;
    --border: #E4E7EC;
    --font-titres: 'Cabinet Grotesk', 'EB Garamond', sans-serif;
    --font-corps: 'EB Garamond', 'Georgia', serif;
}

.res-container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }
.res-small { max-width: 720px; }

/* ==========================================
   OUVERTURE
========================================== */
.res-hero {
    background: var(--off);
    text-align: center;
    padding: 110px 24px 90px;
    border-bottom: 1px solid var(--border);
}

.res-label {
    display: inline-block;
    font-family: var(--font-titres);
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--orange);
    margin-bottom: 22px;
}

.res-hero h1 {
    font-family: var(--font-titres);
    font-size: clamp(2.2rem, 5vw, 3.6rem);
    font-weight: 900;
    color: var(--noir);
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.res-hero h1 span { color: var(--bleu); }

.res-subtitle {
    font-family: var(--font-corps);
    font-size: 1.15rem;
    font-style: italic;
    color: var(--gris);
    max-width: 640px;
    margin: 0 auto;
}

/* ==========================================
   SECTIONS
========================================== */
.res-section { padding: 70px 0; background: #FFFFFF; }
.res-alt { background: var(--off); }

.res-head { text-align: center; margin-bottom: 45px; }

.res-head h2 {
    font-family: var(--font-titres);
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 800;
    color: var(--noir);
    margin-bottom: 10px;
}

.res-head h2 span { color: var(--bleu); }

.res-head p {
    font-family: var(--font-corps);
    font-size: 1.05rem;
    font-style: italic;
    color: var(--gris);
}

/* ==========================================
   HEADER AVEC LOGO
========================================== */
.res-header-container {
    text-align: center;
    max-width: 640px;
}

.res-logo {
    width: 120px;
    height: 120px;
    background: var(--off);
    border: 1px solid var(--border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    padding: 18px;
    box-shadow: 0 12px 35px rgba(23, 63, 138, 0.12);
}

.res-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.res-brand {
    font-family: var(--font-titres);
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--bleu);
    letter-spacing: 3px;
    margin-bottom: 14px;
}

.res-intro {
    font-family: var(--font-corps);
    font-size: 1.1rem;
    font-style: italic;
    color: var(--gris);
    line-height: 1.8;
}

/* ==========================================
   LISTE DES RÉSEAUX SOCIAUX
========================================== */
.res-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.res-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 18px 24px;
    background: #FFFFFF;
    border: 1px solid var(--border);
    border-radius: 14px;
    text-decoration: none;
    color: inherit;
    transition: all 0.35s ease;
}

.res-item:hover {
    transform: translateX(8px);
    box-shadow: 0 12px 30px rgba(23, 63, 138, 0.12);
    border-color: transparent;
}

.res-item-icon {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform 0.4s ease;
    font-size: 1.4rem;
    color: #FFFFFF;
}

.res-item:hover .res-item-icon { transform: scale(1.08) rotate(-5deg); }

/* Couleurs officielles des réseaux */
.res-facebook { background: #1877F2; }
.res-instagram { background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%); }
.res-youtube { background: #FF0000; }
.res-whatsapp { background: #25D366; }
.res-linkedin { background: #0A66C2; }
.res-tiktok { background: #000000; }

.res-item-info {
    flex: 1;
    text-align: left;
}

.res-item-info h3 {
    font-family: var(--font-titres);
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--noir);
    margin-bottom: 3px;
    transition: color 0.3s ease;
}

.res-item:hover .res-item-info h3 { color: var(--bleu); }

.res-item-info span {
    font-family: var(--font-corps);
    font-size: 0.88rem;
    font-style: italic;
    color: var(--gris);
}

.res-item-arrow {
    color: var(--gris);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.res-item:hover .res-item-arrow {
    color: var(--orange);
    transform: translateX(4px);
}

/* ==========================================
   CTA COORDONNÉES
========================================== */
.res-cta { text-align: center; }

.res-cta h2 {
    font-family: var(--font-titres);
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 800;
    color: var(--noir);
    margin-bottom: 12px;
}

.res-cta h2 span { color: var(--orange); }

.res-cta p {
    font-family: var(--font-corps);
    font-size: 1.05rem;
    font-style: italic;
    color: var(--gris);
    margin-bottom: 26px;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
}

.res-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 15px 32px;
    background: var(--bleu);
    color: #FFFFFF;
    text-decoration: none;
    border-radius: 8px;
    font-family: var(--font-titres);
    font-weight: 700;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 26px rgba(23, 63, 138, 0.25);
}

.res-btn:hover {
    background: var(--orange);
    transform: translateY(-3px);
    box-shadow: 0 14px 34px rgba(243, 156, 18, 0.4);
}

/* ==========================================
   RESPONSIVE
========================================== */
@media (max-width: 640px) {
    .res-hero { padding: 80px 20px 65px; }
    .res-section { padding: 60px 0; }
    .res-logo { width: 100px; height: 100px; padding: 14px; }
    .res-brand { font-size: 1.8rem; letter-spacing: 2px; }
    .res-item { padding: 14px 18px; gap: 14px; }
    .res-item-icon { width: 46px; height: 46px; font-size: 1.2rem; }
    .res-item-info h3 { font-size: 1rem; }
    .res-item-info span { font-size: 0.82rem; }
    .res-btn { width: 100%; justify-content: center; }
}

@media (max-width: 400px) {
    .res-hero h1 { font-size: 1.9rem; }
    .res-intro { font-size: 1rem; }
    .res-cta h2 { font-size: 1.3rem; }
}