/* ================================================================================================================================ */
/* ===================================================== PAGE D'ACCUEIL (index.html) ============================================= */
/* ================================================================================================================================ */

.hero-section {
    position: relative;
    height: 60vh;
    overflow: hidden;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.hero-section video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: -1;
    transform: translate(-50%, -50%);
}

.hero-content {
    padding: 2rem;
    border-radius: 10px;
    z-index: 1;
}

.about-section {
    padding: 4rem 2rem;
    background-color: #fff;
    border-bottom: 5px solid #4CAF50;
    text-align: center;
}

.about-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    gap: 2rem;
}

.about-content p {
    max-width: 800px;
}

.images-container {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.images-container img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.advantages-section {
    padding: 4rem 2rem;
    text-align: center;
    background-color: #e6f3ff;
}

.advantages-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 2rem auto 0;
}

.advantage-item {
    background-color: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
}

.secure-payment-section {
    padding: 4rem 2rem;
    text-align: center;
    background-color: #fff;
    border-top: 5px solid #2196F3;
}

.secure-payment-container {
    max-width: 900px;
    margin: 0 auto;
}

.secure-payment-container h2 {
    color: #1e3a8a;
    margin-bottom: 1.5rem;
}

.secure-payment-container p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.payment-logos {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.payment-logos img {
    height: 40px;
    width: auto;
    filter: grayscale(80%);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.payment-logos img:hover {
    filter: grayscale(0%);
    opacity: 1;
}
