
/* =========================
   HERO INDEX
========================= */

.hero {
    position: relative;
    height: 100vh;

    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;

    background: url("/assets/images/Fond_CVO.JPG") center/cover no-repeat;
    overflow: hidden;
}

.overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.65);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 4rem;
}

.buttons {
    margin-top: 20px;
    display: flex;
    gap: 15px;
    justify-content: center;
}


/* =========================
   INDEX CARDS CLICKABLE
========================= */

.card.clickable {
    cursor: pointer;
}