/* ============================================
   HOME.CSS — Page d'accueil uniquement
   ============================================ */

/* --- HERO --- */
.hero {
    height: 75vh;
    min-height: 500px;
    background: linear-gradient(rgba(0,0,0,0.55), rgba(0,0,0,0.55)),
                url('BACKGROUNDHOME.png') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-align: center;
}

.hero-content {
    max-width: 750px;
    padding: 0 20px;
}

.hero h1 {
    font-size: 42px;
    font-weight: 600;
    line-height: 1.25;
    margin-bottom: 18px;
}

.hero p {
    font-size: 17px;
    opacity: 0.85;
    line-height: 1.7;
}

/* --- ENGAGEMENTS --- */
.engagements {
    background: #1a252f;
    color: #fff;
    padding: 90px 0;
    text-align: center;
}

.engagements h2 {
    font-size: 30px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.engagements-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 50px;
}

.eng-card {
    padding: 35px 20px;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 8px;
    transition: all 0.3s ease;
    background: rgba(255,255,255,0.02);
}

.eng-card:hover {
    background: rgba(44,95,158,0.15);
    border-color: #2c5f9e;
    transform: translateY(-5px);
}

.eng-card h3 {
    font-size: 17px;
    margin-bottom: 10px;
    color: #fff;
}

.eng-card p {
    font-size: 13px;
    color: rgba(255,255,255,0.6);
    line-height: 1.6;
}

/* --- RESPONSIVE --- */
@media (max-width: 992px) {
    .engagements-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    /* Hero */
    .hero {
        height: 60vh;
        min-height: 380px;
    }

    .hero h1 {
        font-size: 24px;
        line-height: 1.3;
        margin-bottom: 14px;
    }

    .hero p {
        font-size: 14px;
        line-height: 1.65;
    }

    /* Engagements */
    .engagements { padding: 55px 0; }

    .engagements h2 { font-size: 22px; }

    .engagements-grid {
        grid-template-columns: 1fr 1fr;
        gap: 14px;
        margin-top: 34px;
    }

    .eng-card { padding: 24px 16px; }

    .eng-card h3 { font-size: 15px; }

    .eng-card p { font-size: 12px; }
}

@media (max-width: 420px) {
    .hero h1 { font-size: 21px; }
    .engagements-grid { grid-template-columns: 1fr; }
}
