/*
Theme Name: Hello Elementor Child
Theme URI: https://elementor.com/hello-theme/?utm_source=wp-themes&utm_campaign=theme-uri&utm_medium=wp-dash
Template: hello-elementor
Author: Elementor Team
Author URI: https://elementor.com/?utm_source=wp-themes&utm_campaign=author-uri&utm_medium=wp-dash
Description: Hello Elementor is a lightweight and minimalist WordPress theme...
Tags: accessibility-ready,flexible-header,custom-colors,custom-menu,custom-logo,featured-images,rtl-language-support,threaded-comments,translation-ready
Version: 3.4.5.1768406369
Updated: 2026-01-14
*/

:root {
  --primary-color: #360f3e;
  --primary-color-light: #2f348321;
  --secondary-color: #c29fc7;
  --third-color: #ea92af;
  --third-color-light: #ea92af57;
}

/* =========================================
   1. STRUCTURE APP SHELL (OBLIGATOIRE)
   ========================================= */

html {
    height: 100%;
    overflow: hidden; /* Empêche le scroll sur le HTML global */
}

body {
    /* Configuration Flexbox Verticale */
    display: flex;
    flex-direction: column;
    height: 100%;
    margin: 0;
    overflow: hidden; /* Le body ne scrolle pas, c'est le Main qui le fera */
    
    /* Couleurs et Fond */
    background-color: #1a0b2e; 
    background: -webkit-linear-gradient(top left, #1a0b2e, #2d1b4e, #0f0718);
    background: -moz-linear-gradient(top left, #1a0b2e, #2d1b4e, #0f0718);
    background: linear-gradient(to bottom right, #1a0b2e, #2d1b4e, #0f0718);
    color: var(--secondary-color);
}

/* --- COMMON --- */
.mr-1{
	margin-right: .5rem
}
.mr-2{
	margin-right: 1rem;
}
.text-red{
	color: red;
}

p:last-child{
	margin-bottom: 0;
}


/* --- ZONE CENTRALE (SCROLLABLE) --- */
#content.site-main {
    flex: 1 1 auto; /* Prend tout l'espace disponible entre Header et Footer */
    overflow-y: auto; /* Active le scroll vertical ICI */
    overflow-x: hidden;
    position: relative;
    max-width: calc(1024px - 2.5rem);
    width: calc(100vw - 2.5rem);
	margin: auto;
    scroll-behavior: smooth;
}

/* --- SCROLLBAR PERSONNALISÉE (Pour un look App) --- */
#content.site-main::-webkit-scrollbar {
  width: 12px;
}

#content.site-main::-webkit-scrollbar-track {
  background: var(--primary-color);
  border-radius: 10px;
}

#content.site-main::-webkit-scrollbar-thumb {
  background: var(--secondary-color);
  border-radius: 10px;
}

#content.site-main::-webkit-scrollbar-thumb:hover {
  background: #555;
}

/* Pour Firefox */
#content.site-main {
  scrollbar-width: thin;
  scrollbar-color: var(--secondary-color) var(--primary-color);
}



/* --- CORRECTIF BARRE ADMIN WORDPRESS --- */
body.admin-bar {
    height: calc(100% - 32px);
    margin-top: 32px;
}
@media screen and (max-width: 782px) {
    body.admin-bar {
        height: calc(100% - 46px);
        margin-top: 46px;
    }
}

/* =========================================
   2. TYPOGRAPHIE GLOBALE
   ========================================= */

h1, h2, h3,
h1 b, h2 b, h3 b, 
h1 strong, h2 strong, h3 strong{
    color: white;
	font-weight: 700;
}

p b, p strong{
    color: white;
}

h1 b, h2 b, h3 b, 
h1 strong, h2 strong, h3 strong, 
a {
    color: var(--secondary-color);
}

/* =========================================
   3. HEADER "LA CLEF IA"
   ========================================= */

.laclefia-header {
    flex: 0 0 auto; /* Ne rétrécit jamais */
    width: 100%;
    position: relative; 
    z-index: 100;
    padding: 0; /* Reset du padding pour laisser le container gérer */
    /* Pas de background-color ici (transparence) */
}

.laclefia-container {
	max-width: calc(1024px - 2.5rem);
    width: calc(100vw - 2.5rem);
    height: 80px; 
    margin: 0 auto;
    padding: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
footer .laclefia-container{
	height: 60px;
}

/* --- BLOC IDENTITÉ --- */
.site-branding {
    display: flex;
    align-items: center;
}

.branding-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    gap: 15px;
}

.branding-logo img {
    height: 50px;
    width: auto;
    border-radius: 50%;
    display: block;
	border-radius: 50%;
	border: .2rem solid #c29fc7;
	padding: .5rem;
}

.branding-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    line-height: 1.2;
}

.site-title {
    margin: 0;
    color: #FFFFFF;
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    font-size: 20px;
    text-transform: none;
}

.site-description {
    margin: 0;
    color: #A5A5C5;
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    font-size: 13px;
}
@media (max-width: 768px) {
    .site-description {
        display: none;
    }
}

/* --- NAVIGATION & MENU --- */
.nav-wrapper {
    display: flex;
    align-items: center;
    gap: 30px;
}

.laclefia-menu li a {
    color: #FFFFFF;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    font-family: 'Roboto', sans-serif;
}
.laclefia-menu li a:hover {
    color: #A5A5C5;
}

.header-cta .btn-app,
.btn-cta
{
    background-color: #c29fc7;
    color: white;
    padding: 10px 20px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    font-family: 'Roboto', sans-serif;
    transition: 0.3s;
	display: inline-block;
	margin-bottom: .5rem;
}
.btn-cta.invert
{
    background-color: transparent;
    color: #c29fc7;
    border: 1px solid #c29fc7;
}

.header-cta .btn-app:hover {
    background-color: #6366f1;
}

/* --- MOBILE --- */
#mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}
#mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: #ffffff;
}

@media (max-width: 768px) {
    #mobile-menu-toggle {
        display: flex;
    }
    .nav-wrapper.active {
        display: flex;
    }
    .laclefia-menu {
        flex-direction: column;
        align-items: center;
        padding: 0;
        margin-bottom: 20px;
    }
}

/* =========================================
   4. FOOTER "LA CLEF IA"
   ========================================= */

.laclefia-footer {
    flex: 0 0 auto; /* Ne rétrécit jamais */
    padding: 0; /* RÉDUIT PAR 2 (Avant: 20px) */
    font-family: 'Roboto', sans-serif;
    z-index: 100;
    /* Pas de background-color ici (transparence) */
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    max-width: calc(1024px - 2.5rem);
    margin: 0 auto;
    padding: 0;
}

.footer-left {
    display: flex;
    align-items: center;
    gap: 20px;
}

.footer-brand {
    font-weight: 700;
    color: #FFFFFF;
    font-size: 14px;
}

.footer-text {
    color: #A5A5C5;
    font-size: 13px;
    font-weight: 400;
}

.footer-version {
    opacity: 0.8;
}

.footer-right {
    display: flex;
    gap: 10px;
}

.social-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 36px;
    height: 36px;
    background-color: #11071F;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    color: #ffffff;
    transition: 0.3s ease;
}

.social-btn:hover {
    background-color: #4F46E5;
    border-color: #4F46E5;
    transform: translateY(-2px);
}

.social-btn svg {
    width: 16px;
    height: 16px;
}

@media (max-width: 768px) {
	.footer-text{
		display: none;
	}
}