/* Styles spécifiques pour la section d'accueil */
#home {
    background-color: #6C7BF2;
    color: white;
    padding: 100px 0;
    width: 100%;
    display: block;
}

.hero-content {
    max-width: 1000px;
    margin: 0 auto;
    font-family: 'Poppins', sans-serif;
}

.hero-content h1 {
    font-size: 2.6rem;
    font-weight: 700;
    color: white;
    margin-bottom: 15px;
    line-height: 1.2;
}

.hero-content .subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
}

.hero-text {
    margin-bottom: 50px;
}

.hero-text p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: white;
}

.feature-boxes {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 40px;
}

.feature-box {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 30px;
    transition: all 0.3s ease;
}

.feature-box:hover {
    transform: translateY(-5px);
    background-color: rgba(255, 255, 255, 0.15);
}

.feature-icon {
    width: 50px;
    height: 50px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.feature-icon i {
    font-size: 1.3rem;
    color: white;
}

.feature-box h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: white;
    font-weight: 600;
}

.feature-box p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    font-size: 0.95rem;
}

.cta-button {
    text-align: center;
    margin-top: 40px;
}

.btn-glow {
    position: relative;
    overflow: hidden;
    background: linear-gradient(90deg, #5865F2, #EB459E, #7289DA, #5865F2);
    background-size: 400% 400%;
    animation: glow-animation 8s ease infinite;
    color: white;
    font-weight: 600;
    border: none;
    box-shadow: 0 5px 15px rgba(88, 101, 242, 0.4);
    padding: 12px 30px;
    font-size: 1.1rem;
    border-radius: 30px;
    text-decoration: none;
    display: inline-block;
}

.btn-glow:hover {
    background: linear-gradient(90deg, #5865F2, #EB459E, #7289DA, #5865F2);
    background-size: 400% 400%;
    animation: glow-animation 4s ease infinite;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(88, 101, 242, 0.6);
}

@keyframes glow-animation {
    0% { background-position: 0% 50% }
    50% { background-position: 100% 50% }
    100% { background-position: 0% 50% }
}
