/*
Theme Name: Hello Elementor Child
Theme URI: https://elementor.com/hello-theme/?utm_source=wp-themes&utm_campaign=theme-uri&utm_medium=wp-dash
Template: hello-elementor
Author: Elementor Team
Author URI: https://elementor.com/?utm_source=wp-themes&utm_campaign=author-uri&utm_medium=wp-dash
Description: Hello Elementor is a lightweight and minimalist WordPress theme that was built specifically to work seamlessly with the Elementor site builder plugin. The theme is free, open-source, and designed for users who want a flexible, easy-to-use, and customizable website. The theme, which is optimized for performance, provides a solid foundation for users to build their own unique designs using the Elementor drag-and-drop site builder. Its simplicity and flexibility make it a great choice for both beginners and experienced Web Creators.
Tags: accessibility-ready,flexible-header,custom-colors,custom-menu,custom-logo,featured-images,rtl-language-support,threaded-comments,translation-ready
Version: 3.4.5.1764519430
Updated: 2025-11-30 18:17:10

*/


/* 1. Ustawienie Body na Flex, aby rozciągnąć #page */
html {
    height: 100%;
}

body {
    margin: 0;
    min-height: 100vh;
    display: flex; 
    flex-direction: column; 
}

#page {
    display: flex;
    flex-direction: column;
    flex-grow: 1; 
}

/* --- KLUCZOWA ZMIANA: Wysoka Waga Selektora (Globalnie) --- */

/* Celuje w element .elementor-page, który znajduje się wewnątrz #page */
#page .elementor-page { 
    flex-grow: 1; 
    /* Dodajemy !important, aby mieć pewność, że styl nie zostanie nadpisany
       przez wewnętrzne style Elementora, które często mają złą kolejność. */
    flex-shrink: 0 !important; 
    min-height: 0 !important;
}

/* Styl dla standardowego kontenera elementor, jeśli klasa .elementor-page jest zbyt wąska */
#page .elementor[data-elementor-post-type="page"] {
    flex-grow: 1; 
    flex-shrink: 0 !important;
    min-height: 0 !important;
}

/* 4. Style dla stopki (ID lub klasa) */
#colophon {
    background-color: #e3e0de;
    color: white;
    padding: 15px;
    text-align: center;
	border-top: 2px solid #d3d3d3;
    /* Inne style dla Twojej stopki */
}