/*
Theme Name: Uplanda Custom Landing
Theme URI: http://uplanda.pl/
Author: Uplanda Team & Gemini AI
Description: Dedykowany, ultra-lekki motyw typu Landing Page dla firmy Uplanda - Soft Market Entry Across Europe. Zoptymalizowany pod kątem konwersji i szybkości.
Version: 1.0.0
Text Domain: uplanda
*/

/* --- 1. ZMIENNE GLOBALNE (DESIGN SYSTEM) --- */
:root {
    --primary-color: #005eb8;    /* Twój biznesowy niebieski */
    --secondary-color: #004b93;  /* Ciemniejszy odcień do hoverów */
    --text-main: #1a1a1a;        /* Główny tekst (prawie czarny) */
    --text-muted: #4b5563;       /* Tekst pomocniczy (szary) */
    --bg-light: #ffffff;         /* Tło sekcji białych */
    --bg-dark: #0a0f1e;          /* Tło dla sekcji Hero / Dark Mode */
    --font-main: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* --- 2. RESET I PODSTAWY --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth; /* Płynne przewijanie do sekcji */
}

body {
    font-family: var(--font-main);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-main);
    background-color: var(--bg-light);
    overflow-x: hidden; /* Zapobiega przypadkowym ruchom na boki */
}

h1, h2, h3, h4 {
    line-height: 1.2;
    margin-bottom: 1rem;
    font-weight: 800;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

/* --- 3. KLASY POMOCNICZE (UTILITIES) --- */
.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-padding {
    padding: 80px 0;
}

.text-center {
    text-align: center;
}

/* Przygotowanie pod Gutenberga - żeby Twoje bloki nie były ściśnięte */
.entry-content > * {
    margin-bottom: 1.5rem;
}

/* --- 4. STYLE DLA TWOICH ELEMENTÓW (WSTĘPNE) --- */
/* Tutaj w przyszłości trafią style Twojego Hero i Slidera, 
   które wcześniej testowaliśmy, aby wszystko było w jednym miejscu. */

/* --- STYLE STOPKI --- */
.site-footer {
    background-color: #f9fafb;
    padding: 40px 0;
    border-top: 1px solid #eaeaea;
    color: var(--text-muted);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-logo {
    font-weight: 800;
    font-size: 1.2rem;
    color: var(--text-main);
    display: block;
}

.footer-info p {
    font-size: 0.85rem;
    margin: 0;
}

.footer-copyright {
    font-size: 0.85rem;
}

/* Responsywność stopki */
@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
}