/*
Theme Name: GN Logistik
Theme URI: https://gnlogistik.de
Author: GN Logistik GmbH
Author URI: https://gnlogistik.de
Description: Native WordPress theme for GN Logistik — premium freight & express transport. Designed to host the GN Logistik Core plugin (pricing calculator, vehicle fleet, WhatsApp booking flow) and to be edited with Elementor. Dark minimal logistics aesthetic, black & yellow palette.
Version: 1.0.0
Requires at least: 6.5
Tested up to: 6.6
Requires PHP: 8.1
License: Proprietary
License URI: https://gnlogistik.de
Text Domain: gn-logistik
Tags: logistics, elementor, custom-post-types, custom-menu, custom-logo, translation-ready
*/

/* The visual design lives in src/index.css of the React reference app and in
   the compiled Tailwind output shipped at assets/css/theme.css. This style.css
   header is required by WordPress to recognise the theme. */

:root {
  --gnl-bg: #0a0a0a;
  --gnl-surface: #111111;
  --gnl-text: #f5f5f5;
  --gnl-muted: #9ca3af;
  --gnl-accent: #facc15; /* yellow */
  --gnl-accent-fg: #0a0a0a;
  --gnl-border: #1f1f1f;
  --gnl-radius: 12px;
}

html, body {
  margin: 0;
  background: var(--gnl-bg);
  color: var(--gnl-text);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--gnl-accent); text-decoration: none; }
a:hover { text-decoration: underline; }

.site-header, .site-footer { background: var(--gnl-surface); border-color: var(--gnl-border); }
.site-main { min-height: 60vh; padding: 2rem 1rem; max-width: 1200px; margin: 0 auto; }
.btn-primary {
  background: var(--gnl-accent); color: var(--gnl-accent-fg);
  padding: 0.75rem 1.25rem; border-radius: var(--gnl-radius);
  font-weight: 600; display: inline-block;
}
.btn-primary:hover { filter: brightness(0.95); text-decoration: none; }
