:where([class^="ri-"])::before {
    content: "\f3c2";
}

/* Hero section base style */
.hero-section {
    position: relative;
    background-position: right center;
    background-repeat: no-repeat;
    background-size: contain;
    min-height: 400px;
    display: flex;
    align-items: center;
    padding: 2rem;
    z-index: 1;
}

.hero-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5); /* filtre sombre semi-transparent */
    z-index: -1;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .hero-section {
        background-size: cover;
        background-position: center;
    }
}

@media (max-width: 768px) {
    .hero-section {
        background-size: cover;
        background-position: center;
        flex-direction: column;
        text-align: center;
    }
}
