/*
Theme Name: Mobimex Theme
Theme URI: https://mobimex.pl
Author: Dan Jarosz
Author URI: 
Description: Custom WordPress theme for Mobimex by Dan Jarosz, built with Codex, Tailwind CSS, daisyUI and Alpine.js.
Version: 1.0.0
Text Domain: mobimex-theme
*/

:root {
  color-scheme: light;
  --font-heading: "Varela Round", "Helvetica Neue", Arial, sans-serif;
  --font-body: "IBM Plex Sans", "Helvetica Neue", Arial, sans-serif;
  --gs-green: #2d6b4f;
  --gs-green-deep: #1b3328;
  --gs-neon: #d7eadc;
  --gs-cream: #fbfaf7;
  --gs-surface: #f3f2ee;
  --gs-black: #101314;
  --gs-text: #1f2523;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: var(--font-body);
  line-height: 1.6;
  color: var(--gs-text);
  background: #ffffff;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 400;
  letter-spacing: 0;
}

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

a {
  color: var(--gs-green);
}

.site-container {
  width: min(1140px, 92vw);
  margin-inline: auto;
}

.no-js .main-nav {
  display: block;
}
