/* ============================================================
   css/accueil.css - PAGE D'ACCUEIL
   ============================================================ */

/* --- SECTION "QUI JE SUIS" --- */
.about-section { max-width: 1200px; margin: 100px auto; padding: 0 20px; display: flex; align-items: center; justify-content: space-between; gap: 60px; }
.about-text { flex: 1; }
.section-label { color: var(--primary-blue); font-weight: 700; font-size: 1.2rem; margin-bottom: 25px; display: inline-block; border-left: 3px solid var(--primary-blue); padding-left: 10px; }
.about-text p { margin-bottom: 20px; line-height: 1.6; color: #333; }
.quote { font-weight: 700; color: var(--primary-blue); margin-top: 20px; display: block; }
.btn-primary { background-color: var(--primary-blue); color: var(--text-light); padding: 12px 30px; border-radius: 5px; font-weight: 600; display: inline-block; margin-top: 20px; }

.about-image-wrapper { flex: 1; position: relative; height: 450px; display: flex; justify-content: center; align-items: flex-end; }
.blue-shape { position: absolute; width: 100%; height: 85%; background-color: var(--primary-blue); z-index: 1; bottom: 0; clip-path: polygon(10% 0, 100% 0%, 90% 100%, 0% 100%); }
.photo-evan { position: relative; z-index: 2; height: 100%; width: auto; object-fit: contain; filter: drop-shadow(5px 5px 15px rgba(0,0,0,0.3)); }

/* --- SECTION ACTUALITÉS (BENTO GRID) --- */
.news-section { max-width: 1200px; margin: 0 auto 100px 0; padding: 0 20px 0 0; }
.news-grid { display: grid; grid-template-columns: 1.3fr 1fr; gap: 20px; }

.card { position: relative; border-radius: 15px; overflow: hidden; display: flex; align-items: flex-end; transition: transform 0.3s; }
.card:hover { transform: scale(1.01); }

.card-main { height: 450px; position: sticky; top: 100px; border-radius: 0 15px 15px 0; }
.card-overlay { position: relative; z-index: 2; background: var(--card-gradient); width: 100%; padding: 25px; color: white; }
.card h3 { font-size: 1.2rem; margin-bottom: 15px; font-weight: 600; line-height: 1.3; }
.card p { margin-bottom: 15px; }

.sidebar-grid { display: flex; flex-direction: column; gap: 20px; height: 100%; }
.card-small { height: 250px; }
.news-footer-btn { display: block; width: 100%; background-color: var(--primary-blue); color: white; text-align: center; padding: 15px; border-radius: 8px; font-weight: 600; transition: background 0.3s; }
.news-footer-btn:hover { background-color: #153a61; }

/* --- RESPONSIVE ACCUEIL --- */
@media (max-width: 900px) {
    .about-section { flex-direction: column-reverse; margin: 50px auto; gap: 30px; }
    .about-image-wrapper { width: 100%; height: 350px; }
    .blue-shape { max-width: 85%; }
    .about-image-wrapper img { width: 50%; }
    .about-text { text-align: left; }
    .section-label { margin-bottom: 15px; }

    .news-section { margin: 0 auto 100px auto; padding: 0 20px; }
    .news-grid { grid-template-columns: 1fr; height: auto; }
    .card-main { height: 300px; order: -1; border-radius: 15px; position: relative; top: 0; }
    .card-small { height: 300px; }
    .card-overlay > p { display: none; }
}

/* Style pour l'icône Play superposée */
.play-icon-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px; /* Un peu plus petit pour la sidebar */
    height: 50px;
    background-color: rgba(0, 0, 0, 0.6);
    border: 2px solid white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    z-index: 5;
    pointer-events: none;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    transition: transform 0.3s ease, background-color 0.3s;
}

/* Effet au survol */
.card:hover .play-icon-overlay, 
.hero:hover .play-icon-overlay {
    background-color: #e74c3c;
    transform: translate(-50%, -50%) scale(1.1);
    border-color: #e74c3c;
}

/* Ajustement taille icône play pour le Hero (plus grand) */
.hero .play-icon-overlay, .card-main .play-icon-overlay {
    width: 80px;
    height: 80px;
    font-size: 2rem;
}