/*All Animation*/
.scroll-indicator {
    position: absolute;
    left: 50%;
    bottom: 25px;
    transform: translateX(-50%);
    background: transparent;
    border: 0;
    color: hsl(var(--text-white-color-hls)/ .8);
    font-size: 1.5rem;
    animation: bounce 2s infinite;
}

.scroll-indicator:hover {color: hsl(var(--text-white-color-hls));}

@keyframes bounce {
    0%,20%,50%,80%,100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}
/*All Effects*/

/* === box shadow effects & animation === */
.card-effects {
    cursor: pointer;
    border-radius: 1.25rem;
    border-width: 1px;
    border-color: hsl(var(--border) / .3);
    background-color: hsl(var(--card));
    padding: 1.5rem;
    transition-property: all;
    transition-timing-function: cubic-bezier(.4,0,.2,1);
    transition-duration: .3s;
    transition-timing-function: cubic-bezier(0,0,.2,1);
    animation-duration: .3s;
    animation-timing-function: cubic-bezier(0,0,.2,1)
}

.card-effects {
    box-shadow: var(--shadow-soft)
}

.card-effects:hover {
    box-shadow: var(--shadow-card);
    transform: translateY(-2px);
    border-color: hsl(var(--accent) / .2)
}
  .icon-box {
    width: 54px;
    height: 54px;
    border-radius: 1rem;
    background-color: hsl(var(--accent) / .1);
    transition: all 0.25s ease;
  }

  .card-effects:hover .icon-box {
    background-color: hsl(var(--accent) / .15);
    transform: scale(1.05);
  }

  .solution-link {
    transition: all 0.25s ease;
  }

  .card-effects:hover .solution-link {
    gap: 10px !important;
  }
/*Button move effects - used in toutes les situations*/
.situation-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 6px 20px;
    border-radius: 50px;
    background-color: transparent;
    border: 1px solid hsl(var(--accent-color-hls) / .8);
    text-decoration: none;
    color: hsl(var(--text-blue-gray-hls));
    font-size: 18px;;
    font-weight: 500;
    transition: all .3s ease;
}

.situation-btn .icon-left,
.situation-btn .icon-right {
    transition: all .3s ease;
}

/* Hover effects */
.situation-btn:hover {
    transform: translateY(-3px);
    border: 1px solid hsl(var(--accent-color-hls) / .5);
    box-shadow: 0 .5rem 1rem rgba(0,0,0,.12);
    color: hsl(var(--text-blue-gray-hls));
}

.situation-btn:hover .icon-left {
    transform: scale(1.1);
    color:  hsl(var(--text-golden-color-hls));
}

.situation-btn:hover .icon-right {
    transform: translateX(4px);
    color:  hsl(var(--text-golden-color-hls));
}


