/*
Theme Name: Universalis Bizness
Theme URI: https://universalis-bizness.net
Author: Universalis Bizness Team
Author URI: https://universalis-bizness.net
Description: Thème WordPress haut de gamme, rapide et responsive pour ESN et entreprises de services numériques. Inclut un tableau de bord de capture de leads et un importateur de démo en 1 clic.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: universalis-bizness
Tags: translation-ready, custom-menu, portfolio, services, professional, responsive-layout
*/

/* ============================================
   DESIGN SYSTEM — Variables & Global Styles
   Extrait fidèlement de src/style.css
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@400;500;600;700;800&display=swap');

:root {
  --primary: #2EA8F7;
  --primary-hover: #177FD6;
  --primary-rgb: 46, 168, 247;
  --primary-light: #EAF6FF;
  --primary-gradient: linear-gradient(135deg, #2EA8F7 0%, #177FD6 100%);
  --dark-blue: #3E4348;
  --dark-blue-light: #177FD6;
  --dark-blue-rgb: 62, 67, 72;
  --text-main: #3E4348;
  --text-muted: #7A8087;
  --text-light: #cbd5e1;
  --bg-light: #F5F7FA;
  --bg-white: #FFFFFF;
  --border-color: #D9D6D2;
  --border-light: #e6e4e2;
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
  --header-height: 80px;
  --container-width: 1200px;
  --border-radius-sm: 6px;
  --border-radius-md: 12px;
  --border-radius-lg: 20px;
  --border-radius-full: 9999px;
  --shadow-sm: 0 2px 8px rgba(62, 67, 72, 0.06);
  --shadow-md: 0 8px 24px rgba(62, 67, 72, 0.08);
  --shadow-lg: 0 16px 36px rgba(62, 67, 72, 0.12);
  --shadow-glow: 0 0 20px rgba(46, 168, 247, 0.25);
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; -webkit-tap-highlight-color: transparent; height: 100%; }
body { font-family: var(--font-body); background-color: var(--bg-white); color: var(--text-main); line-height: 1.6; overflow-x: hidden; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; height: 100%; }
h1, h2, h3, h4, h5, h6 { font-family: var(--font-heading); color: var(--dark-blue); font-weight: 700; line-height: 1.25; }
a { color: inherit; text-decoration: none; transition: color var(--transition-fast), background-color var(--transition-fast); }
button, input, textarea, select { font-family: inherit; font-size: inherit; outline: none; }
ul { list-style: none; }
img { max-width: 100%; height: auto; display: block; }

::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bg-light); }
::-webkit-scrollbar-thumb { background: var(--border-color); border-radius: var(--border-radius-full); }
::-webkit-scrollbar-thumb:hover { background: var(--text-muted); }

.container { max-width: var(--container-width); margin: 0 auto; padding: 0 24px; width: 100%; }
.section { padding: 80px 0; position: relative; }
.section-bg-light { background-color: var(--bg-light); }
.section-bg-dark { background-color: var(--dark-blue); color: var(--bg-white); }
.section-header { text-align: center; max-width: 650px; margin: 0 auto 50px; }
.section-tag { display: inline-block; padding: 5px 14px; background-color: var(--primary-light); color: var(--primary-hover); font-family: var(--font-heading); font-weight: 600; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 1px; border-radius: var(--border-radius-full); margin-bottom: 12px; }
.section-title { font-size: 2.25rem; margin-bottom: 14px; color: var(--dark-blue); }
.section-bg-dark .section-title { color: var(--bg-white); }
.section-desc { color: var(--text-muted); font-size: 1.05rem; }
.section-bg-dark .section-desc { color: var(--border-color); }

.page-banner { background: linear-gradient(135deg, var(--dark-blue) 0%, #202428 100%); color: var(--bg-white); padding: 80px 0 60px; margin-top: var(--header-height); position: relative; overflow: hidden; }
.page-banner::after { content: ''; position: absolute; top: 0; right: 0; width: 300px; height: 100%; background: radial-gradient(circle, rgba(46, 168, 247, 0.15) 0%, transparent 70%); z-index: 1; }
.page-banner-container { position: relative; z-index: 2; }
.page-banner-title { font-size: 2.8rem; color: var(--bg-white); margin-bottom: 12px; }
.page-breadcrumbs { display: flex; gap: 8px; font-size: 0.88rem; color: var(--primary); font-weight: 500; }
.page-breadcrumbs a { color: var(--border-color); }
.page-breadcrumbs a:hover { color: var(--primary); }

/* Buttons */
.btn { display: inline-flex; align-items: center; justify-content: center; padding: 12px 24px; font-weight: 600; font-size: 0.9rem; border-radius: var(--border-radius-sm); transition: all var(--transition-normal); cursor: pointer; border: 1px solid transparent; gap: 8px; }
.btn-primary { background: var(--primary-gradient); color: var(--bg-white); box-shadow: 0 4px 12px rgba(46, 168, 247, 0.2); }
.btn-primary:hover { background: var(--primary-hover); transform: translateY(-2px); box-shadow: 0 6px 16px rgba(23, 127, 214, 0.3), var(--shadow-glow); }
.btn-secondary { background-color: transparent; color: var(--primary-hover); border-color: var(--primary); }
.btn-secondary:hover { background-color: var(--primary-light); transform: translateY(-2px); }
.btn-white { background-color: var(--bg-white); color: var(--primary-hover); box-shadow: var(--shadow-sm); }
.btn-white:hover { background-color: var(--bg-light); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-dark { background-color: var(--dark-blue); color: var(--bg-white); }
.btn-dark:hover { background-color: #202428; transform: translateY(-2px); }

/* Info blocks & cards */
.info-block { background-color: var(--primary-light); border-left: 4px solid var(--primary); border-radius: var(--border-radius-sm); padding: 24px; margin-bottom: 24px; }
.info-block-title { font-size: 1.15rem; font-weight: 700; color: var(--primary-hover); margin-bottom: 8px; }
.info-block-text { font-size: 0.95rem; color: var(--text-main); line-height: 1.6; }

.styled-card-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; margin: 32px 0; }
.styled-card { background-color: var(--bg-white); border: 1px solid var(--border-color); border-radius: var(--border-radius-md); padding: 30px; transition: all var(--transition-normal); display: flex; flex-direction: column; }
.styled-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: var(--primary); }
.card-icon-box { width: 48px; height: 48px; background-color: var(--primary-light); color: var(--primary-hover); border-radius: var(--border-radius-sm); display: flex; align-items: center; justify-content: center; margin-bottom: 20px; }
.card-title { font-size: 1.2rem; margin-bottom: 12px; color: var(--dark-blue); }
.card-desc { font-size: 0.88rem; color: var(--text-muted); line-height: 1.6; }

/* Sidebar layout */
.sidebar-layout { display: grid; grid-template-columns: 280px 1fr; gap: 40px; align-items: start; }
.sidebar-menu-card { background-color: var(--bg-light); border: 1px solid var(--border-color); border-radius: var(--border-radius-md); padding: 24px; }
.sidebar-menu-title { font-size: 1.1rem; font-weight: 700; margin-bottom: 16px; color: var(--dark-blue); border-bottom: 2px solid var(--border-color); padding-bottom: 8px; }
.sidebar-links { display: flex; flex-direction: column; gap: 8px; }
.sidebar-link { display: flex; align-items: center; justify-content: space-between; padding: 12px 16px; font-family: var(--font-heading); font-weight: 600; font-size: 0.9rem; border-radius: var(--border-radius-sm); background-color: var(--bg-white); border: 1px solid var(--border-light); transition: all var(--transition-fast); }
.sidebar-link:hover, .sidebar-link.active { background-color: var(--primary); color: var(--bg-white); border-color: var(--primary); }

/* App layout */
.app-layout { display: flex; flex-direction: column; min-height: 100vh; }
.main-content { flex-grow: 1; }

/* Responsive */
@media (max-width: 992px) {
  .section { padding: 60px 0; }
  .sidebar-layout { grid-template-columns: 1fr; gap: 30px; }
  .page-banner-title { font-size: 2.2rem; }
}
@media (max-width: 768px) {
  .section-title { font-size: 1.8rem; }
  .btn { padding: 10px 20px; font-size: 0.85rem; }
}
