:root {
    --intro-color-1: #26437d;
    --intro-color-2: #435e96;
    --intro-color-3: #14223d;
    --intro-accent: #00ffe0;
}
.intro-container {
    opacity: 0;
    transform: scale(1);
    margin: 20px auto;
    border-radius: 16px;
}


.intro-container.visible {
    opacity: 1;
    transform: translateY(0);
}

.intro-text {
    margin-bottom: 15px;
    color: #fff;
    font-size: 15px;
    line-height: 1.55;
}

.intro-message {
    color: red;
    font-style: italic;
}

/* Stepper container */
.intro-buttons {
    margin-top: 30px;
    display: flex;
    justify-content: space-around; /* espace entre les boutons */
    position: relative;
    width: 100%;
}

/* Chaque bouton */
.intro-btn-scroll {
    display: flex;
    flex-direction: row;   /* icône à gauche, texte à droite */
    align-items: center;   /* aligne verticalement */
    justify-content: center;
    background: #2b2b2b;
    border: none;
    cursor: pointer;
    z-index: 2;
    position: relative;
    text-align: center;
    transition: background 0.3s ease;
    gap: 8px;           
    padding: 10px 10px;
    border-radius: 10px;
}

/* Effet hover */
.intro-btn-scroll:hover{
    background: #de5700;
}

/* Icône sans bordure */
.intro-btn-icon {
    color: #fff;
    font-size: 22px;
    border: none;
    padding: 0;
    margin: 0;
}

.intro-btn-scroll:hover .intro-btn-icon {
    color: #fff;
}

/* Texte à droite */
.intro-btn-text {
    font-size: 13px;
    color: #fff;
    font-weight: bold;
}
.intro-btn-scroll:hover .intro-btn-text {
    color: #fff;
}

.intro-text strong {
    color: #fff;
}

.intro-text  a {
    color: #de5700;
    text-decoration: none;
    font-weight: bold;
}
.intro-text a:hover {
  color: #de5700;
  text-decoration: underline;
}
/* Version mobile */
/* Version mobile */
@media (max-width: 768px) {
    .intro-text {
        font-size: 14px;
    }
    .intro-buttons {
        flex-wrap: wrap;          /* permet aux boutons de passer à la ligne */
        justify-content: center;  /* centre les boutons */
        gap: 10px;                /* espace entre eux */
    }

    .intro-btn-scroll {
        flex: 1 1 auto;        /* pour qu’il y ait max 2 par ligne */
    }
}

