/*
Theme Name: Fornix Theme
Theme URI: https://www.fornix.com.hr
Author: Fornix
Description: Custom theme for Fornix d.o.o. - Recreates the original Devox50 design with fixed sidebar navigation, carousel homepage, and content-focused layout.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: fornix-theme
*/

/* CSS Custom Properties - Design Tokens */
:root {
  --color-primary: #005b9f;
  --color-primary-dark: #004a7f;
  --color-accent: #c4d82e;
  --color-teal: #6db8d9;
  --color-button: #4a4a4a;
  --color-text: #777777;
  --color-text-secondary: #999999;
  --color-heading: #111111;
  --color-sidebar-bg: #f5f5f5;
  --color-footer-bg: #222222;
  --color-footer-text: #777777;
  --color-light-gray: #d3d3d3;
  --color-off-white: #e8e8e8;
  --color-white: #ffffff;
  --sidebar-width: 20%;
  --submenu-column-width: min(280px, 28vw);
  --font-body: 'Roboto', Helvetica, Arial, sans-serif;
  --font-heading: 'Montserrat', sans-serif;
}

/* Base styles */
*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 13.2px;
  line-height: 1.6;
  color: var(--color-text);
  background: var(--color-white);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--color-heading);
}

a {
  color: var(--color-primary);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

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