/* =========================================================
   LANDING.CSS - CyberLeimen Technologies
   ========================================================= */

/* ============================================
   FOND BEIGE
   ============================================ */
.bg-beige {
    background-color: #F5F0EB !important;
}

/* ============================================
   TEXTES
   ============================================ */
.text-vert {
    color: #0D683B !important;
}

.text-noir {
    color: #0D0D0D !important;
}

/* ============================================
   BADGE VERT - pour la classe "badge bg-success"
   ============================================ */
.badge.bg-success {
    background-color: #0D683B !important;
}

/* ============================================
   BOUTONS ORANGE - pour "btn btn-primary"
   ============================================ */
.btn-primary {
    background-color: #E05E16 !important;
    border-color: #E05E16 !important;
}

.btn-primary:hover {
    background-color: #c44d12 !important;
    border-color: #c44d12 !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(224, 94, 22, 0.3);
}

/* ============================================
   BOUTONS OUTLINE - pour "btn btn-outline-secondary"
   ============================================ */
.btn-outline-secondary {
    color: #E05E16 !important;
    border-color: #E05E16 !important;
}

.btn-outline-secondary:hover {
    background-color: #E05E16 !important;
    color: #FFFFFF !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(224, 94, 22, 0.3);
}

/* ============================================
   STATISTIQUES - pour "text-primary"
   ============================================ */
.text-primary {
    color: #E05E16 !important;
}

/* ============================================
   CARDS
   ============================================ */
.card {
    transition: all 0.3s ease !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08) !important;
}

.card:hover {
    transform: translateY(-8px) !important;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12) !important;
}

.card-title.text-success {
    color: #0D683B !important;
}

/* ============================================
   ANIMATIONS AU SCROLL
   ============================================ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    opacity: 0;
    animation: fadeInUp 0.6s ease-out forwards;
}

.card:nth-child(1) { animation-delay: 0.1s; }
.card:nth-child(2) { animation-delay: 0.2s; }
.card:nth-child(3) { animation-delay: 0.3s; }
.card:nth-child(4) { animation-delay: 0.4s; }
.card:nth-child(5) { animation-delay: 0.5s; }
.card:nth-child(6) { animation-delay: 0.6s; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 768px) {
    .card {
        padding: 16px !important;
    }
}