/*
Theme Name:  Athlétisme Coach
Theme URI:   https://votresite.com
Description: Thème minimaliste dédié à l'application Athlétisme Coach. Plein écran, dark mode, sans chrome WordPress.
Version:     1.0.0
Author:      Coach App
Author URI:  https://votresite.com
Text Domain: ac-theme
Requires at least: 6.0
Requires PHP: 8.0
License:     GPL-2.0-or-later
*/

/* ================================================================
   VARIABLES & RESET GLOBAL
   ================================================================ */

:root {
  --bg           : #0d0f16;
  --bg-card      : #141720;
  --bg-input     : #1c2030;
  --bg-raised    : #1a1e2e;
  --surface      : #20253a;

  --border       : rgba(255,255,255,.08);
  --border-light : rgba(255,255,255,.05);

  --accent       : #e85d04;
  --accent-light : rgba(232,93,4,.12);
  --accent-hover : #ff6a10;

  --blue         : #3b82f6;
  --blue-light   : rgba(59,130,246,.12);
  --green        : #10b981;
  --yellow       : #f59e0b;
  --red          : #ef4444;
  --purple       : #8b5cf6;

  --text-primary  : #f0f2f8;
  --text-secondary: #8b92a8;
  --text-muted    : #4d566e;

  --radius       : 10px;
  --radius-sm    : 6px;
  --radius-lg    : 14px;
  --shadow       : 0 4px 24px rgba(0,0,0,.35);
  --shadow-lg    : 0 12px 48px rgba(0,0,0,.5);

  --font         : -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Inter', sans-serif;
  --font-mono    : 'Fira Code', 'Cascadia Code', monospace;
}

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

html {
  font-size: 15px;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text-primary);
  line-height: 1.6;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

/* Remove WP admin bar margin on frontend */
html.wp-toolbar { padding-top: 0 !important; }
#wpadminbar    { position: fixed !important; }
