/*
Theme Name: Remote CleverBureau
Theme URI: https://lightcyan-dotterel-334199.hostingersite.com
Author: CleverBureau
Description: Thème WordPress sobre, SEO-first, orienté télétravail & performance.
Version: 1.0
Text Domain: remote-cleverbureau
*/

:root {
  --primary: #4f46e5;
  --secondary: #0f172a;
  --background: #f8fafc;
  --text: #1e293b;
  --accent: #22c55e;
  --radius: 8px;
  --font-main: 'Inter', sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-main);
  background-color: var(--background);
  color: var(--text);
  line-height: 1.6;
}

header {
  background: white;
  border-bottom: 1px solid #e5e7eb;
  padding: 1rem 2rem;
}

nav a {
  color: var(--secondary);
  text-decoration: none;
  margin-right: 1.5rem;
  font-weight: 500;
}

nav a:hover {
  color: var(--primary);
}

section {
  padding: 4rem 2rem;
  max-width: 1100px;
  margin: auto;
}

h1, h2, h3 {
  color: var(--secondary);
  margin-bottom: 1rem;
}

.button {
  background: var(--primary);
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius);
  text-decoration: none;
  display: inline-block;
  margin-top: 1rem;
}

.button:hover {
  background: #4338ca;
}

.card {
  background: white;
  padding: 2rem;
  border-radius: var(--radius);
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  margin-bottom: 2rem;
}

footer {
  background: var(--secondary);
  color: white;
  text-align: center;
  padding: 2rem;
  margin-top: 4rem;
}
