/*
 Theme Name:   Hello Elementor Child
 Theme URI:    https://elementor.com/hello-theme/
 Description:  Motyw potomny (child theme) dla Hello Elementor. Bezpieczne miejsce na własne style CSS, które nie znikną po aktualizacji motywu nadrzędnego.
 Author:       KC
 Author URI:
 Template:     hello-elementor
 Version:      1.0.0
 Text Domain:  hello-elementor-child
*/

/* =============================================================
   WŁASNY CSS – zacznij edycję poniżej.
   Style tutaj nadpiszą style motywu Hello Elementor i (przy
   odpowiedniej specyficzności) style ustawione w Elementorze.
   ============================================================= */

:root {
	--e-child-color-primary: #1a1a1a;
	--e-child-color-secondary: #6d7882;
	--e-child-color-accent: #93003c;
	--e-child-font-base: inherit;
}

/* Przykład: kolor i hover linków w treści */
a {
	color: var(--e-child-color-accent);
	transition: color 0.15s ease-in-out;
}

a:hover,
a:focus {
	color: var(--e-child-color-primary);
}

/* Przykład: globalny kontener treści */
.hello-elementor-child-example {
	max-width: 1200px;
	margin: 0 auto;
}

/* Dodawaj kolejne reguły CSS poniżej tej linii */
p {	line-height: 1.5;}