/* ====================================================================
   CHATBOT DZ - MAIN STYLESHEET
   VERSION : FINAL.1
   DESCRIPTION : Variables, Reset, Typographie, Navbar, Boutons.
====================================================================
*/

/* =================================================================
   1. CONFIGURATION & VARIABLES (ROOT)
================================================================= */
:root {
    /* -----------------------------------------------------------
       PALETTE DE COULEURS (SYSTEME HSL & HEX)
    ----------------------------------------------------------- */
    
    /* Couleur Primaire : Bleu vibrant "Tech" */
    --primary-50:  #eff6ff;
    --primary-100: #dbeafe;
    --primary-200: #bfdbfe;
    --primary-300: #93c5fd;
    --primary-400: #60a5fa;
    --primary-500: #006AFF; /* COULEUR PRINCIPALE */
    --primary-600: #2563eb;
    --primary-700: #1d4ed8;
    --primary-800: #1e40af;
    --primary-900: #1e3a8a;
    --primary-950: #172554;

    /* Couleurs Neutres : Slate (Gris bleuté pro) */
    --slate-50:  #f8fafc;
    --slate-100: #f1f5f9;
    --slate-200: #e2e8f0;
    --slate-300: #cbd5e1;
    --slate-400: #94a3b8;
    --slate-500: #64748b;
    --slate-600: #475569;
    --slate-700: #334155;
    --slate-800: #1e293b;
    --slate-900: #0f172a;
    --slate-950: #020617;

    /* Couleurs Sémantiques */
    --success-light: #dcfce7;
    --success-main:  #10b981;
    --success-dark:  #047857;

    --warning-light: #fef3c7;
    --warning-main:  #f59e0b;
    --warning-dark:  #b45309;

    --danger-light:  #fee2e2;
    --danger-main:   #ef4444;
    --danger-dark:   #b91c1c;

    --info-light:    #e0f2fe;
    --info-main:     #0ea5e9;
    
    /* Accents Spécifiques */
    --accent-purple: #8b5cf6;
    --accent-orange: #f97316;

    /* -----------------------------------------------------------
       SURFACES & TEXTES
    ----------------------------------------------------------- */
    --bg-body: #ffffff;
    --bg-surface: #ffffff;
    --bg-surface-alt: var(--slate-50);
    --bg-header: rgba(255, 255, 255, 0.85);
    --bg-footer: var(--slate-900);

    --text-main: var(--slate-900);
    --text-secondary: var(--slate-600);
    --text-muted: var(--slate-400);
    --text-inverse: #ffffff;

    /* -----------------------------------------------------------
       BORDURES & RAYONS
    ----------------------------------------------------------- */
    --border-light: var(--slate-200);
    --border-medium: var(--slate-300);

    --radius-xs: 4px;
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 32px;
    --radius-full: 9999px;

    /* -----------------------------------------------------------
       OMBRES (SHADOWS)
    ----------------------------------------------------------- */
    --shadow-xs: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-sm: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px -1px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
    --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    
    --shadow-blue-glow: 0 0 40px rgba(0, 106, 255, 0.15);

    /* -----------------------------------------------------------
       TYPOGRAPHIE
    ----------------------------------------------------------- */
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    
    /* -----------------------------------------------------------
       ANIMATIONS & TRANSITIONS
    ----------------------------------------------------------- */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    
    /* -----------------------------------------------------------
       GRADIENTS
    ----------------------------------------------------------- */
    --gradient-primary: linear-gradient(135deg, var(--primary-500) 0%, var(--primary-600) 100%);
    --gradient-shimmer: linear-gradient(45deg, var(--primary-500), var(--accent-purple), var(--primary-500));
}

/* =================================================================
   2. RESET CSS & BASE (MODERNE & BLINDÉ)
================================================================= */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
}

/* STABILISATION MOBILE CRITIQUE */
html, body {
    font-family: var(--font-sans);
    background-color: var(--bg-body);
    color: var(--text-main);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    
    /* INTERDIT LE SCROLL HORIZONTAL (Problème du menu fantôme) */
    overflow-x: hidden !important;
    width: 100% !important;
    max-width: 100vw !important;
    margin: 0;
    /* SUPPRESSION DE L'ESPACE BLANC EN BAS */
    padding-bottom: 0;
    position: relative;
}

main {
    /* On pousse le contenu vers le bas de la hauteur exacte de la barre (80px) */
    padding-top: 80px;
}
/* Liens */
a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition-normal);
    cursor: pointer;
}

/* Listes */
ul, ol { list-style: none; padding: 0; margin: 0; }

/* Médias */
img, svg { max-width: 100%; height: auto; display: block; }

/* Formulaires */
button, input, textarea, select {
    font-family: inherit; font-size: inherit; color: inherit;
    border: none; background: none; outline: none;
}
button { cursor: pointer; }

/* =================================================================
   3. UTILITAIRES DE MISE EN PAGE & TYPO
================================================================= */

/* Conteneur Principal */
.container {
    width: 100%;
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 24px;
    padding-right: 24px;
    position: relative;
}

/* Espacement des Sections */
.section-padding {
    padding-top: 100px;
    padding-bottom: 100px;
}

/* Fonds Utilitaires */
.bg-light { background-color: var(--bg-surface-alt); }
.bg-white { background-color: var(--bg-surface); }

/* Typographie : Titres */
h1, h2, h3, h4, h5, h6 {
    color: var(--text-main);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1rem;
    letter-spacing: -0.025em;
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 1.75rem; }
h4 { font-size: 1.25rem; }

/* Typographie : Paragraphes */
p {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.75;
    max-width: 65ch;
}

/* Utilitaires Texte */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }
.text-shimmer {
    background: var(--gradient-shimmer);
    background-size: 200% auto;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shimmer 3s linear infinite;
    display: inline-block;
}
@keyframes shimmer { 0% { background-position: 200% center; } 100% { background-position: -200% center; } }

/* En-tête de Section Centré */
.section-header {
    text-align: center;
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 80px;
    position: relative;
}
.section-header h2 { margin-bottom: 20px; }
.section-header p { margin-left: auto; margin-right: auto; }

/* =================================================================
   4. COMPOSANTS UI : BOUTONS & BADGES
================================================================= */

/* Bouton Base */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: var(--radius-md);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
    overflow: hidden;
    white-space: nowrap;
    border: 1px solid transparent;
}

/* Bouton Primaire */
.btn-primary {
    background-color: var(--primary-500);
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(0, 106, 255, 0.25);
}
.btn-primary:hover {
    background-color: var(--primary-600);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 106, 255, 0.3);
}
.btn-primary-arrow::after {
    content: '→';
    display: inline-block;
    transition: transform 0.3s ease;
    margin-left: 6px;
}
.btn-primary-arrow:hover::after {
    transform: translateX(5px);
}

/* Bouton Secondaire */
.btn-secondary {
    background-color: #ffffff;
    color: var(--text-main);
    border-color: var(--border-light);
    box-shadow: var(--shadow-xs);
}
.btn-secondary:hover {
    border-color: var(--primary-500);
    color: var(--primary-500);
    background-color: var(--primary-50);
    transform: translateY(-1px);
}

/* Bouton Ghost */
.btn-ghost {
    background-color: transparent;
    color: var(--text-secondary);
    box-shadow: none;
}
.btn-ghost:hover {
    background-color: var(--slate-100);
    color: var(--primary-500);
}

.full-width { width: 100%; }

/* Badges */
.badge-new {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: #ffffff;
    border: 1px solid var(--primary-200);
    color: var(--primary-600);
    padding: 6px 16px;
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 24px;
    box-shadow: var(--shadow-sm);
}
.badge-feature {
    display: inline-block;
    text-transform: uppercase;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: var(--primary-600);
    background-color: var(--primary-50);
    padding: 8px 16px;
    border-radius: 100px;
    margin-bottom: 20px;
}

/* =================================================================
   5. NAVBAR (NAVIGATION - STYLE MODERNE)
================================================================= */
.navbar-wrapper {
    position: fixed;
    top: 0; left: 0; width: 100%;
    z-index: 9999;
    
    /* Effet Glassmorphism plus profond et lumineux */
    background-color: rgba(255, 255, 255, 0.8); 
    backdrop-filter: blur(20px) saturate(180%); /* Flou + Saturation */
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    
    border-bottom: 1px solid rgba(255, 255, 255, 0.5); /* Bordure plus subtile */
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.03); /* Ombre très douce */
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

/* Logo avec interaction */
/* STYLE DU LOGO TEXTE - OPTION 1 (Gradient) */
.logo {
    display: flex; align-items: center; gap: 10px;
    text-decoration: none; /* Important pour enlever le soulignement du lien */
}

.logo-text {
    font-size: 1.35rem; /* Un peu plus compact */
    font-weight: 800; 
    color: var(--text-main); /* "Chatbot" reste noir/gris foncé */
    letter-spacing: -0.03em; /* Resserre les lettres pour un look "Pro" */
    line-height: 1;
}

/* Le "DZ" magique */
.logo-text .highlight {
    /* Création du dégradé sur le texte */
    background: linear-gradient(135deg, #006AFF 0%, #8b5cf6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent; /* Rend le texte transparent pour voir le fond */
    background-clip: text;
    
    font-weight: 900; /* Encore plus gras */
    margin-left: 2px;
}
/* Conteneur Logo - Animation au survol */
.logo:hover .logo-image-wrapper {
    transform: rotate(-5deg) scale(1.05);
    box-shadow: 0 8px 20px rgba(0, 106, 255, 0.25);
}

.logo-image-wrapper {
    width: 42px; /* Légèrement plus grand */
    height: 42px;
    min-width: 42px;
    border-radius: 12px; /* Arrondis plus doux */
    overflow: hidden;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 106, 255, 0.15);
    background: #ffffff; /* Fond blanc pour faire ressortir le logo */
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1); /* Effet ressort */
}

.main-logo-icon {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

/* Menu Principal */
.nav-menu { display: flex; align-items: center; }
/* On réduit l'espace (gap) car les liens ont maintenant du padding */
.nav-links { display: flex; gap: 8px; } 

/* Liens style "Pilule" */
.nav-links a {
    color: var(--text-secondary);
    font-weight: 600; font-size: 0.95rem;
    position: relative; 
    padding: 8px 16px; /* Espace cliquable confortable */
    border-radius: 50px; /* Forme pilule */
    transition: all 0.2s ease;
}

/* État Hover : Fond subtil et changement de couleur */
.nav-links a:hover { 
    color: var(--primary-600);
    background-color: var(--primary-50); /* Fond bleu très clair */
    transform: translateY(-1px); /* Petit lift */
}

/* On supprime l'ancien trait de soulignement */
.nav-links a::after { display: none; }

/* Partie Droite (Boutons Desktop) */
.nav-right-desktop { display: flex; align-items: center; gap: 16px; }
.nav-buttons-mobile { display: none; }
.menu-toggle { display: none; }