/**
 * assets/css/style.css
 * Feuille de styles premium personnalisée pour le site Strat'Team (AWE)
 * Indentation : Tabulations obligatoires
 */

/* ==========================================================================
   1. Variables CSS Globales & Reset
   ========================================================================== */
:root {
	--primary-color: #0b3052;      /* Bleu Nuit (Textes, backgrounds, premium) */
	--accent-color: #06adef;       /* Bleu Ciel (Liens, hovers, accents) */
	--orange-color: #e84f13;       /* Orange (Boutons d'action, CTA) */
	--orange-hover: #c93f0b;
	--bg-light: #f1f6ff;           /* Fond de section clair alterné */
	--bg-white: #ffffff;
	--text-dark: #0f1c2a;          /* Texte de lecture principal */
	--text-light: #606d7e;         /* Texte secondaire */
	--font-title: 'Poppins', sans-serif;
	--font-body: 'Poppins', sans-serif;
	--transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
	box-sizing: border-box;
}

body {
	font-family: var(--font-body);
	color: var(--text-dark);
	background-color: var(--bg-white);
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

/* Suppression du box-layout restrictif d'Elementor/BeTheme */
#Wrapper, .container-fluid, body {
	max-width: 100% !important;
	overflow-x: hidden;
}

/* ==========================================================================
   2. Typographie & Titres
   ========================================================================== */
h1, h2, h3, h4, h5, h6 {
	font-family: var(--font-title);
	font-weight: 700;
	color: var(--primary-color);
	line-height: 1.3;
	margin-bottom: 1rem;
}

h1 {
	font-size: 2.8rem;
}

h2 {
	font-size: 2.2rem;
	position: relative;
	padding-bottom: 0.5rem;
}

h3 {
	font-size: 1.8rem;
}

p {
	margin-bottom: 1.25rem;
	font-size: 1rem;
}

.text-orange {
	color: var(--orange-color) !important;
}

.text-blue-ciel {
	color: var(--accent-color) !important;
}

.text-white-50 {
	color: rgba(255, 255, 255, 0.7) !important;
}

/* ==========================================================================
   3. Boutons & Éléments Interactifs
   ========================================================================== */
.btn {
	font-family: var(--font-title);
	font-weight: 600;
	padding: 0.75rem 1.75rem;
	border-radius: 4px;
	transition: var(--transition-smooth);
	text-transform: uppercase;
	letter-spacing: 0.5px;
	font-size: 0.875rem;
}

.btn-orange {
	background-color: var(--orange-color);
	border-color: var(--orange-color);
	color: var(--bg-white) !important;
}

.btn-orange:hover, .btn-orange:focus {
	background-color: var(--orange-hover);
	border-color: var(--orange-hover);
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(232, 79, 19, 0.35);
}

.btn-outline-orange {
	background-color: transparent;
	border: 2px solid var(--orange-color);
	color: var(--orange-color) !important;
}

.btn-outline-orange:hover {
	background-color: var(--orange-color);
	color: var(--bg-white) !important;
	transform: translateY(-2px);
}

.btn-blue {
	background-color: var(--accent-color);
	border-color: var(--accent-color);
	color: var(--bg-white) !important;
}

.btn-blue:hover {
	background-color: #058cc4;
	border-color: #058cc4;
	transform: translateY(-2px);
}

.transition-all {
	transition: var(--transition-smooth);
}

/* ==========================================================================
   4. Navbar Fixed Premium & Glassmorphism
   ========================================================================== */
.navbar-premium {
	background-color: transparent;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
	padding: 1.25rem 0;
	z-index: 1030;
	transition: var(--transition-smooth);
}

/* Effet au scroll */
.navbar-premium.scrolled {
	background-color: rgba(11, 48, 82, 0.95);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	padding: 0.75rem 0;
	box-shadow: 0 4px 30px rgba(0, 0, 0, 0.15);
	border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.navbar-logo {
	height: 48px;
	width: auto;
	transition: var(--transition-smooth);
}

.navbar-premium.scrolled .navbar-logo {
	height: 38px;
}

.nav-link-premium {
	color: rgba(255, 255, 255, 0.85) !important;
	font-weight: 500;
	font-size: 0.95rem;
	padding: 0.5rem 1rem !important;
	transition: var(--transition-smooth);
	position: relative;
}

.nav-link-premium:hover, .nav-link-premium:focus {
	color: var(--accent-color) !important;
}

.nav-link-premium::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 1rem;
	right: 1rem;
	height: 2px;
	background-color: var(--accent-color);
	transform: scaleX(0);
	transition: var(--transition-smooth);
}

.nav-link-premium:hover::after {
	transform: scaleX(1);
}

/* Hamburger mobile */
.hamburger-btn {
	background: none;
	border: none;
	cursor: pointer;
	padding: 0.5rem;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	height: 24px;
	width: 30px;
}

.hamburger-line {
	display: block;
	height: 2px;
	width: 100%;
	background-color: var(--bg-white);
	border-radius: 2px;
	transition: var(--transition-smooth);
}

/* ==========================================================================
   5. Mobile Slide-out Drawer
   ========================================================================== */
.mobile-drawer {
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	width: 300px;
	background-color: #092137;
	z-index: 2000;
	transform: translateX(100%);
	transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
	box-shadow: -10px 0 30px rgba(0, 0, 0, 0.25);
	padding: 2.5rem 2rem;
	display: flex;
	flex-direction: column;
}

.mobile-drawer.active {
	transform: translateX(0);
}

.mobile-drawer-close {
	position: absolute;
	top: 1.5rem;
	right: 1.5rem;
	background: none;
	border: none;
	color: var(--bg-white);
	font-size: 1.75rem;
	cursor: pointer;
	transition: var(--transition-smooth);
}

.mobile-drawer-close:hover {
	color: var(--orange-color);
	transform: rotate(90deg);
}

.mobile-drawer-nav {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
}

.mobile-drawer-nav .nav-link {
	color: rgba(255, 255, 255, 0.9) !important;
	font-size: 1.2rem;
	font-weight: 500;
	text-decoration: none;
	transition: var(--transition-smooth);
}

.mobile-drawer-nav .nav-link:hover {
	color: var(--accent-color) !important;
	padding-left: 8px;
}

.mobile-drawer-nav .btn-orange {
	text-align: center;
}

/* ==========================================================================
   6. Hero Banner Section
   ========================================================================== */
.hero-banner {
	position: relative;
	background-image: url('../img/consultant2-slider-bg.png');
	background-size: cover;
	background-position: center;
	min-height: 80vh;
	display: flex;
	align-items: center;
	padding-top: 120px;
	padding-bottom: 80px;
}

/* Overlay sombre pour la lisibilité */
.hero-banner::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(135deg, rgba(11, 48, 82, 0.85) 0%, rgba(9, 21, 35, 0.6) 100%);
	z-index: 1;
}

.hero-banner .container {
	position: relative;
	z-index: 2;
}

.hero-title {
	font-size: 3.5rem;
	font-weight: 800;
	color: var(--bg-white);
	margin-bottom: 1.5rem;
	text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.hero-subtitle {
	font-size: 1.35rem;
	color: rgba(255, 255, 255, 0.9);
	max-width: 700px;
	margin-bottom: 2.5rem;
	font-weight: 400;
	line-height: 1.6;
}

/* ==========================================================================
   7. Sections Standard & Alternées
   ========================================================================== */
.section-padding {
	padding: 80px 0;
}

.bg-section-light {
	background-color: var(--bg-light);
}

.section-title-line {
	width: 60px;
	height: 3px;
	background-color: var(--orange-color);
	margin-top: 15px;
}

/* Bento Grid / Cards Mission */
.bento-card {
	background-color: var(--bg-white);
	border-radius: 8px;
	padding: 2.5rem 2rem;
	height: 100%;
	border: 1px solid rgba(11, 48, 82, 0.08);
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
	transition: var(--transition-smooth);
}

.bento-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 12px 30px rgba(11, 48, 82, 0.08);
	border-color: rgba(6, 173, 239, 0.2);
}

.bento-icon {
	font-size: 2.5rem;
	color: var(--accent-color);
	margin-bottom: 1.5rem;
}

.bento-card h4 {
	font-size: 1.25rem;
	font-weight: 700;
	margin-bottom: 1rem;
	color: var(--primary-color);
}

/* Section Méthode : Étapes */
.method-step-card {
	background-color: var(--bg-white);
	border-radius: 8px;
	padding: 2rem;
	position: relative;
	border: 1px solid rgba(11, 48, 82, 0.06);
	box-shadow: 0 4px 15px rgba(0,0,0,0.01);
	height: 100%;
	transition: var(--transition-smooth);
}

.method-step-card:hover {
	transform: translateY(-3px);
	border-color: rgba(6, 173, 239, 0.25);
}

.step-number {
	font-size: 3.5rem;
	font-weight: 800;
	color: rgba(6, 173, 239, 0.12);
	position: absolute;
	top: 1rem;
	right: 1.5rem;
	line-height: 1;
}

/* Statistiques Section */
.stat-box {
	text-align: center;
	padding: 2rem 1rem;
}

.stat-number {
	font-size: 3.5rem;
	font-weight: 800;
	color: var(--orange-color);
	line-height: 1;
	margin-bottom: 0.5rem;
}

.stat-label {
	color: rgba(255, 255, 255, 0.9);
	font-weight: 500;
	font-size: 1rem;
}

/* ==========================================================================
   8. Carrousel de Témoignages
   ========================================================================== */
.testimonial-carousel-container {
	background-color: var(--bg-light);
	border-radius: 8px;
	padding: 3rem 2rem;
	box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.02);
}

.testimonial-item {
	text-align: center;
	max-width: 800px;
	margin: 0 auto;
}

.testimonial-text {
	font-size: 1.2rem;
	font-style: italic;
	color: var(--primary-color);
	line-height: 1.7;
	margin-bottom: 1.5rem;
}

.testimonial-author {
	font-weight: 700;
	color: var(--text-dark);
	font-size: 1rem;
}

.testimonial-company {
	font-size: 0.85rem;
	color: var(--text-light);
}

/* ==========================================================================
   9. Formulaires de contact & réservation SimplyBook
   ========================================================================== */
.booking-container {
	background-color: var(--bg-white);
	border-radius: 8px;
	box-shadow: 0 10px 40px rgba(11, 48, 82, 0.08);
	border: 1px solid rgba(11, 48, 82, 0.05);
	overflow: hidden;
}

.form-group label {
	font-weight: 600;
	color: var(--primary-color);
	margin-bottom: 0.5rem;
	font-size: 0.9rem;
}

.form-control {
	padding: 0.75rem 1rem;
	border: 1px solid #ced4da;
	border-radius: 4px;
	transition: var(--transition-smooth);
}

.form-control:focus {
	border-color: var(--accent-color);
	box-shadow: 0 0 0 0.25rem rgba(6, 173, 239, 0.15);
}

/* ==========================================================================
   10. Footer Premium & Hover Effects
   ========================================================================== */
.footer-premium {
	background-color: #0b1c2c !important;
	border-top: 3px solid var(--orange-color);
}

.footer-logo {
	max-height: 45px;
}

.hover-orange {
	transition: var(--transition-smooth);
}

.hover-orange:hover {
	color: var(--orange-color) !important;
	padding-left: 4px;
}

/* ==========================================================================
   11. Rendu Responsive & Media Queries
   ========================================================================== */
@media (max-width: 991.98px) {
	h1 {
		font-size: 2.2rem;
	}
	
	h2 {
		font-size: 1.8rem;
	}
	
	.hero-title {
		font-size: 2.5rem;
	}
	
	.hero-subtitle {
		font-size: 1.15rem;
	}
	
	.section-padding {
		padding: 60px 0;
	}
}

@media (max-width: 575.98px) {
	.hero-title {
		font-size: 2rem;
	}
	
	.hero-subtitle {
		font-size: 1rem;
	}
	
	.btn {
		width: 100%;
		text-align: center;
		margin-bottom: 0.5rem;
	}
	
	.mobile-drawer {
		width: 100%;
	}
}

/* ==========================================================================
   12. Styles additionnels pour la Page d'Accueil Bootstrap 5
   ========================================================================== */
.bg-dark-blue {
	background-color: #041f3f !important;
}

.bg-grey-light {
	background-color: #eeeded !important;
}

.text-orange {
	color: #e84f13 !important;
}

.border-orange-sep {
	border-top: 4.2px solid #e84f13 !important;
	opacity: 1 !important;
	width: 100%;
}

.rounded-card {
	border-radius: 70px !important;
}

.border-orange-card {
	border: 1px solid #e84f13 !important;
	background-color: #ffffff;
	padding: 80px 60px 60px 60px;
}

@media (max-width: 767.98px) {
	.border-orange-card {
		padding: 50px 30px 50px 30px;
		border-radius: 40px !important;
	}
}

.stat-number-val {
	color: #e84f13;
	font-family: 'Poppins', sans-serif;
	font-size: 70px;
	font-weight: 500;
	line-height: 1;
	margin-bottom: 10px;
}

.circular-mask-img {
	width: 180px;
	height: 180px;
	margin: 0 auto;
	border-radius: 50%;
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
	border: 3px solid #f1f6ff;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.circular-mask-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.btn-orange-round {
	background-color: #e84f13;
	font-family: 'Poppins', sans-serif;
	font-weight: 600;
	color: #ffffff !important;
	border-radius: 10px;
	padding: 15px 40px;
	text-decoration: none;
	display: inline-block;
	transition: all 0.3s ease;
	border: none;
	text-align: center;
}

.btn-orange-round:hover, .btn-orange-round:focus {
	background-color: #5e5e5e;
	color: #ffffff !important;
	transform: translateY(-2px);
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

/* Forcer la police Poppins sur toute la page d'accueil (surcharge des polices système/BeTheme) */
body.home, 
body.home p, 
body.home h1, 
body.home h2, 
body.home h3, 
body.home h4, 
body.home h5, 
body.home h6,
body.home span,
body.home li,
body.home a {
	font-family: 'Poppins', sans-serif !important;
}

/* Forcer le fond du footer et de toutes ses sous-sections à blanc */
#Footer, 
.mfn-footer, 
#Footer .footer_action, 
#Footer .widgets_wrapper, 
#Footer .footer_copy {
	background-color: #ffffff !important;
	background: #ffffff !important;
}



