#header {
    color: white;
    padding: 150px 0;
    /* Augmente la taille de la section */
    animation: fadeInLeft 1.5s ease-out;
    /* Animation d'apparition */
    height: 500px;
}

/* Style pour la bannière principale (Hero Section) */
#hero-section {
    min-height: clamp(400px, 80vh, 900px);
    margin-top: 250px;
    background: url('/images/hero-bg.jpg') no-repeat center center;
    background-size: cover;
    color: white;
    display: flex; /* pour centrer verticalement */
    justify-content: center;
    align-items: center;
    text-align: center;
    height: 100vh; /* occupe toute la hauteur de la fenêtre */
}

#hero-section h1,
.hero-section p {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

/* Animation d’apparition vers le haut */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Features Section */
#features {
    background: url('/images/features-bg.jpg') no-repeat center center;
    background-size: cover;
    color: white;
    padding: 300px 0;
    /* Augmente la taille de la section */
    animation: fadeInLeft 1.5s ease-out;
    /* Animation d'apparition */
    height: 600px;
}

/* Why Us Section */
#why-us {
    background: url('/images/why-us-bg.jpg') no-repeat center center;
    background-size: cover;
    color: white;
    padding: 300px 0;
    /* Augmente la taille de la section */
    animation: fadeInRight 1.5s ease-out;
    /* Animation d'apparition */
    height: 600px;

}

/* Pricing Section */
#pricing {
    background: url('/images/pricing-bg.jpg') no-repeat center center;
    background-size: cover;
    color: white;
    padding: 300px 0;
    /* Augmente la taille de la section */
    animation: fadeInUp 1.5s ease-out;
    /* Animation d'apparition */
    height: 600px;
}

/* Animations pour chaque section */
@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Style général pour les containers */
.container {
    margin: 0 auto;
    max-width: 1200px;
}

.container_dark {
    background-color: rgba(0, 0, 0, 0.45);
    /* Fond clair avec transparence */
    padding: 30px;
    border-radius: 10px;
    /* Coins arrondis */
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.1);
    /* Légère ombre pour profondeur */
    margin: 0 auto;
    max-width: 1200px;
}

/* Ajustement spécifique pour card-body pour garder le contraste */
.card-body {
    /* background-color: rgba(0, 0, 0, 0.8); */
    /* Fond sombre pour le contenu de chaque carte */
    padding: 20px;
    border-radius: 8px;
}

/* Ombre et style supplémentaire pour les cartes */
.card {
    padding: 15px;
    border: none;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.3);
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

/* Footer */
footer {
    padding: 30px 0;
    background-color: #222;
    color: white;
}