/*
Theme Name: EON Studio
Theme URI: https://eon-studio.pl
Author: EON Studio Team
Description: Custom WordPress theme for EON Studio - Evolution of Network.
Version: 2.0.0
License: GNU General Public License v2 or later
Text Domain: eon-studio
*/

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

:root {
    --primary-navy: #1e3a5f;
    --accent-blue: #2d5a8f;
    --deep-navy: #1a2332;
    --light-blue: #4a7cb8;
    --light-gray: #f5f5f5;
    --white: #ffffff;
    --success: #28a745;
}

body {
    font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: var(--white);
    color: var(--deep-navy);
    line-height: 1.6;
    overflow-x: hidden;
}

html {
    scroll-behavior: smooth;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
}

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