
/* ============================================
   1. BASE – VARIABLES, RESET, TYPOGRAPHIE
   ============================================ */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;700&display=swap');
*{
  margin: 0;
  
}
:root {
  /* Couleurs */
  --color-primary: #f99285;
  --color-secondary: #e59328;
  --color-accent: #f4a82e;
  --color-bg-light: #f3f4ef;
  --color-bg-mid: #e6ede8;
  --color-bg-dark: #1a1a1a;
  --color-text-dark: #333;
  --color-text-mid: #666;
  --color-text-light: #999;
  --color-text-white: #fff;
  --color-success: #28a745;
  --color-danger: #dc3545;
  --color-warning: #ffc107;
  --color-info: #17a2b8;

  /* Couleurs header SMEG */
  --bg-main: #f29a4a;
  --bg-light: #f7c992;
  --bg-dark: #6b3500;
  --bg-pill: #fff1cf;
  --text-dark: #4a2600;
  --radius-pill: 999px;

  /* Bordures et ombres */
  --color-border: #ddd;
  --color-border-light: #e9ecef;
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.15);
  --shadow-lg: 0 8px 16px rgba(0, 0, 0, 0.2);

  /* Espacements */
  --spacing-xs: 0.25rem;
  --spacing-sm: 0.5rem;
  --spacing-md: 1rem;
  --spacing-lg: 1.5rem;
  --spacing-xl: 2rem;
  --spacing-2xl: 3rem;
  --spacing-3xl: 4rem;

  /* Typographie */
  
  --font-sans: "Plus Jakarta Sans", sans-serif !important;
  --font-size-base: 1rem;
  --font-size-sm: 0.875rem;
  --font-size-lg: 1.125rem;
  --line-height-base: 1.5;

  /* Breakpoints */
  --breakpoint-sm: 576px;
  --breakpoint-md: 768px;
  --breakpoint-lg: 992px;
  --breakpoint-xl: 1200px;
  --breakpoint-2xl: 1400px;
}

/* ============================================
   RÉINITIALISATION & BASE
   ============================================ */
html, body, *, *:hover, *:active, *:focus,
a, button, input, textarea, select,
.btn, .btn-gear, .stylish-gear-btn, .dropdown-toggle, .dropdown-item {
  
  font-family: Plus Jakarta Sans, sans-serif !important;
}





html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: Plus Jakarta Sans, sans-serif !important;
  font-size: var(--font-size-base);
  line-height: var(--line-height-base);
  color: var(--color-text-dark);
  background: url("../images/ChatGPT-Image-18-dec-2025-15_29_48.png") center /
    cover no-repeat fixed;
  min-height: 100vh;
  overflow-x: hidden;
  
}

/* ============================================
   TYPOGRAPHIE
   ============================================ */

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-serif);
  color: var(--color-text-dark);
  font-weight: 700;
  margin-bottom: var(--spacing-md);
}

h1 {
  font-size: 2.5rem;
  line-height: 1.2;
}
h2 {
  font-size: 2rem;
  line-height: 1.3;
}
h3 {
  font-size: 1.75rem;
  line-height: 1.3;
}
h4 {
  font-size: 1.5rem;
  line-height: 1.4;
}
h5 {
  font-size: 1.25rem;
  line-height: 1.4;
}
h6 {
  font-size: 1rem;
  line-height: 1.5;
}

p {
  margin-bottom: var(--spacing-md);
  line-height: var(--line-height-base);
}

a {
  color: var(--color-primary);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--color-secondary);
}

small,
.text-small {
  font-size: var(--font-size-sm);
}

.text-muted {
  color: var(--color-text-mid);
}

.text-light {
  color: var(--color-text-light);
}

.text-center {
  text-align: center;
}

.text-start {
  text-align: left;
}

.text-end {
  text-align: right;
}

/* ============================================
   LISTES
   ============================================ */

ul,
ol {
  margin-bottom: var(--spacing-md);
  padding-left: var(--spacing-xl);
}

li {
  margin-bottom: var(--spacing-sm);
}

/* ============================================
   IMAGES
   ============================================ */

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* ============================================
   FORMULAIRES
   ============================================ */

input,
textarea,
select {
  font-family: inherit;
  font-size: inherit;
  padding: 0.5rem;
  border: 1px solid var(--color-border);
  border-radius: 4px;
  transition: border-color 0.3s ease;
}

input:focus,
textarea:focus,
select:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: none;
}

textarea {
  resize: vertical;
  min-height: 120px;
}

label {
  display: block;
  margin-bottom: var(--spacing-sm);
  font-weight: 500;
  color: var(--color-text-dark);
}

/* ============================================
   AUTRES ÉLÉMENTS
   ============================================ */

hr {
  border: none;
  border-top: 1px solid var(--color-border-light);
  margin: var(--spacing-xl) 0;
}

code {
  background: var(--color-bg-light);
  padding: 2px 6px;
  border-radius: 3px;
  font-family: monospace;
}

blockquote {
  margin: var(--spacing-lg) 0;
  padding-left: var(--spacing-lg);
  border-left: 4px solid var(--color-primary);
  color: var(--color-text-mid);
}
