/* BANNIERE */

.hero-banner {
    background: linear-gradient(color-mix(in srgb, var(--background-action-high-blue-france), transparent 40%), color-mix(in srgb, var(--background-action-high-blue-france), transparent 60%)), url('../img/IMG_7140.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 6rem 0;
    margin-bottom: 3rem;
}

.hero-content {
    max-width: 800px;
    /* margin: 0 25%; */
    background-color: var(--background-default-grey);
    padding: 2rem;
    opacity: 0.8;
    color: var(--text-default-grey)
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.hero-subtitle {
    font-size: 1.25rem;
    font-weight: 500;
    opacity: 1;
    line-height: 1.6;
}

.home-description-txt {
    text-align: center;
}

/* CARTES */

.access-card {
    background: var(--background-default-grey);
    border: 2px solid #e5e5e5;
    border-radius: 0.5rem;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
}

.access-card:hover {
    border-color: var(--background-action-high-blue-france);
    box-shadow: 0 8px 24px color-mix(in srgb, var(--background-action-high-blue-france), transparent 80%); ;
    transform: translateY(-4px);
}

.card-icon {
    font-size: 3.5rem;
    color: var(--background-action-high-blue-france);
    margin-bottom: 1.5rem;
}

.card-title {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1rem;
    /* color: #161616; */
}

.card-description {
    font-size: 1rem;
    line-height: 1.6;
    /* color: #666; */
    margin-bottom: 2rem;
}

.features-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
    text-align: left;
}

.features-list li {
    padding: 0.5rem 0;
    /* color: #666; */
    display: flex;
    align-items: center;
}

.features-list li::before {
    content: "✓";
    color: var(--background-action-high-blue-france);
    font-weight: bold;
    margin-right: 0.75rem;
    font-size: 1.25rem;
}

#courses-section {
    background-color: var(--text-inverted-blue-france);
}