/* === PALETTE PASTEL FRANCOTALENTS ("MONSTER STYLE") === */
:root { 
    --ft-primary: #9b87f5; /* Violet Pastel */
    --ft-primary-hover: #7E69AB; 
    --ft-primary-light: #F3F0FF; /* Violet très doux */
    --ft-accent: #2dd4bf; /* Vert Menthe doux */
    --ft-dark: #1E293B; /* Gris Ardoise (Texte) */
    --ft-bg: #FFFFFF; /* Fond blanc pur */
    --ft-yellow: #FDE68A; /* Jaune moutarde doux pour les étapes */
    --ft-yellow-text: #92400E;
}

body { 
    font-family: 'Plus Jakarta Sans', sans-serif; 
    background-color: var(--ft-bg); 
    color: var(--ft-dark); 
}

/* === BOUTONS & LIENS === */
.text-primary { color: var(--ft-primary) !important; }
.bg-primary { background-color: var(--ft-primary) !important; }

.btn-primary { 
    background-color: var(--ft-primary) !important; 
    border-color: var(--ft-primary) !important; 
    color: white !important; 
    border-radius: 50px;
    padding: 12px 28px;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(155, 135, 245, 0.2);
    transition: 0.3s;
}

.btn-primary:hover { 
    background-color: var(--ft-primary-hover) !important; 
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(155, 135, 245, 0.3);
}

.btn-outline-custom {
    background: white; 
    border: 2px solid #E2E8F0; 
    border-radius: 50px; 
    color: var(--ft-dark); 
}

.btn-outline-custom:hover {
    border-color: var(--ft-primary);
    color: var(--ft-primary);
    background: var(--ft-primary-light);
}

a { color: var(--ft-primary); text-decoration: none; transition: 0.2s; }

/* === NAVIGATION === */
.navbar { 
    padding: 1rem 0; 
    background: rgba(255, 255, 255, 0.95); 
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #F1F5F9; 
}
.navbar-brand { font-weight: 800; color: var(--ft-dark); font-size: 1.6rem; letter-spacing: -0.5px;}
.logo-dot { color: var(--ft-accent); font-size: 2rem; line-height: 0; }
.nav-link { font-weight: 600; color: #475569 !important; padding: 10px 18px !important; border-radius: 50px; }
.nav-link:hover { color: var(--ft-primary) !important; background: var(--ft-primary-light); }

/* === HERO SECTION AVEC BACKGROUND.JPG (Opacité 75%) === */
.hero-section {
    padding: 180px 0 100px;
    text-align: center;
    position: relative;
    z-index: 1; /* S'assure que le contenu reste au-dessus de l'image */
}

/* Le calque de l'image de fond à 75% d'opacité */
.hero-section::before {
    content: "";
    position: absolute;
    top: 0; 
    left: 0; 
    width: 100%; 
    height: 100%;
    background: url('images/Background6.jpg') center/cover no-repeat;
    opacity: 1;
    z-index: -1; /* Place l'image derrière le texte */
}

.hero-title { font-size: 4rem; font-weight: 800; letter-spacing: -1px; margin-bottom: 24px; line-height: 1.1; }
.hero-title span { color: var(--ft-accent); }
.badge-soft {
    background-color: white; color: var(--ft-primary); font-weight: 800;
    padding: 8px 18px; border-radius: 50px; font-size: 0.85rem; letter-spacing: 1px;
    box-shadow: 0 2px 10px rgba(155, 135, 245, 0.1); margin-bottom: 30px; display: inline-block;
}

/* === PROCESSUS 3 ÉTAPES === */
.process-section { padding: 100px 0; background-color: white; }
.step-card { text-align: left; padding: 15px; }

.illustration-box {
    height: 220px;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.illustration-box img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
}

.step-number-box {
    background-color: var(--ft-yellow);
    color: var(--ft-yellow-text);
    min-width: 45px;
    height: 45px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.3rem;
    flex-shrink: 0;
}
.step-text { color: var(--ft-dark); font-size: 1.15rem; font-weight: 600; line-height: 1.5; margin-top: 8px;}

/* === SECTION RECRUTEURS === */
.argument-card {
    background: white; border: 1px solid #F1F5F9; border-radius: 24px; 
    padding: 2.5rem 2rem; transition: 0.3s; height: 100%;
}
.argument-card:hover { transform: translateY(-5px); box-shadow: 0 15px 30px rgba(155, 135, 245, 0.08); }
.icon-box { 
    display: inline-flex; width: 60px; height: 60px; border-radius: 16px; 
    color: var(--ft-primary); background: var(--ft-primary-light); 
    align-items: center; justify-content: center; font-size: 1.8rem; margin-bottom: 20px;
}

/* === DASHBOARD COMPONENTS (Recruteur Dashboard) === */
.dash-card { 
    background: white; 
    border-radius: 24px; 
    border: 1px solid #e2e8f0; 
    padding: 30px; 
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.dash-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(155, 135, 245, 0.08); 
    border-color: var(--ft-primary-light);
}

.avatar-box { 
    width: 64px; 
    height: 64px; 
    border-radius: 18px; 
    object-fit: cover; 
    flex-shrink: 0; 
    border: 3px solid var(--ft-primary-light); 
}

/* === FOOTER === */
footer { background: white; border-top: 1px solid #F1F5F9; padding: 60px 0 30px; color: #64748b; }