﻿/* ==========================
           Header
        ========================== */


.homepage-header {
    position: relative;
    height: 800px;
    background: url('/img/homepage_header.webp') center / cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    overflow: hidden;
    z-index:0;
}



    /* Overlay noir 30% */
    .homepage-header::before {
        content: "";
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        background: rgba(0, 0, 0, 0.3);
        z-index: 1;
    }

    /* Dégradé noir bas */
    .homepage-header::after {
        content: "";
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 315px;
        background: linear-gradient( to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.4) 40%, rgba(0, 0, 0, 0.75) 70%, rgba(0, 0, 0, 1) 100% );
        z-index: 2;
    }

/* Contenu */
.header-content {
    position: relative;
    z-index: 3;
    padding: 15px;
    max-width: 1000px;
}

/* Titre principal */
.header-title {
    font-family: Arial, sans-serif;
    font-weight: bold;
    font-size: 2.6669rem;
    line-height: 1.2;
    margin-bottom: 10px;
}

/* Sous-titre */
.header-subtitle {
    font-family: Arial, sans-serif;
    font-weight: 400; /* Regular */
    font-size: 1.8331rem;
    margin: 0;
}

/* Sous-titre */
.section-gradient-header-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 100px;
    width: 100%;
    background: linear-gradient( to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.4) 40%, rgba(0, 0, 0, 0.75) 70%, rgba(0, 0, 0, 1) 100% );
}

