/*
Theme Name: Clean INN Child Theme
Theme URI: https://cleaninn.pl
Description: Motyw stworzony pod wytyczne Clean INN na wzór ZuzaClean.
Author: Optirian Spółka z Ograniczoną Odpowiedzialnością
Template: hello-elementor
Version: 1.0
*/

/* 1. KOLORY I ZMIENNE (Z Twojego PDF) */
:root {
    --primary-blue: #3b678d;   /* Główny niebieski */
    --accent-yellow: #DADD3D; /* Pop of color - przyciski */
    --light-bg: #f4f9fc;      /* Delikatne tło jak na ZuzaClean */
    --text-dark: #1e3a5a;     /* Ciemny granat do napisów */
}

/* 2.  TYPOGRAFIA */
body {
    font-family: 'Inter', sans-serif; /* Bardzo czytelna czcionka */
    color: var(--text-dark);
}

/* 3. STYL PRZYCISKÓW (Takie jak na ZuzaClean) */
.elementor-button {
    border-radius: 50px !important; /* Zaokrąglone rogi - kluczowe! */
    font-weight: 600 !important;
    transition: all 0.3s ease !important;
}

/* Przycisk akcentowy (Wycena) */
.btn-accent .elementor-button {
    background-color: var(--accent-yellow) !important;
    color: #000 !important;
}

/* 4. WYTYCZNE Z PDF (Formularze na mobile) */
@media (max-width: 767px) {
    input, select, textarea, .wpforms-field-medium {
        min-height: 48px !important;
        font-size: 16px !important;
    }
}

#main-header {
    position: sticky;
    top: 0;
    z-index: 9999;
    background-color: #ffffff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

