/*
Theme Name:   Matlak.Stream
Theme URI:    https://matlak.stream
Author:       Matlak.Stream
Author URI:   https://matlak.stream
Description:  Profesjonalny motyw single-page dla firmy Matlak.Stream — streaming i obsługa AV wydarzeń.
Version:      1.0.0
Requires at least: 6.0
Tested up to: 6.7
License:      Proprietary
Text Domain:  matlakstream
*/

/* ─── CSS Custom Properties (Design Tokens) ─── */
:root {
    --color-navy:       #1a2030;
    --color-navy-light: #222b3e;
    --color-navy-dark:  #141825;
    --color-gray:       #b0b8c1;
    --color-gray-dim:   #6b7785;
    --color-cyan:       #29abe2;
    --color-cyan-dark:  #1a8cbf;
    --color-white:      #ffffff;

    --font-base: 'Inter', 'Helvetica Neue', Arial, sans-serif;

    --nav-height:        120px;
    --container-max:     1200px;
    --section-padding:   100px 0;
    --border-radius:     6px;
    --border-radius-lg:  12px;
    --transition:        0.3s ease;
}

/* ─── Reset + Base ─── */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    background-color: var(--color-navy);
    color: var(--color-gray);
    font-family: var(--font-base);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

body.nav-open {
    overflow: hidden;
}

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

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

a:hover {
    color: var(--color-white);
}

ul {
    list-style: none;
}
