@import url('fonts/fonts.css');

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: 'Roboto', sans-serif;
    background-color: #FFFFFF;
    color: #333333;
    line-height: 1.7;
    font-size: 16px;
    overflow-x: hidden;
}

h1, h2, h3 { font-family: 'Playfair Display', serif; color: #0A2342; /* Deep Navy */ font-weight: 700; }

a { text-decoration: none; color: #D4AF37; /* Subtle Gold */ transition: 0.3s; }
a:hover { color: #0A2342; text-decoration: underline; }

/* The Grid Scrambler */
._struktura_glowna {
    display: flex;
    flex-direction: column;
}

/* Scrambled Sections via order */
._stopka_prawa { order: 6; }
._bohater_sekcja { order: 2; }
._nawigacja_gorna { order: 1; }
._o_naszej_firmie { order: 4; }
._oferta_biura { order: 3; }
._kontakt_formularz { order: 5; }

/* Navbar */
._nawigacja_gorna {
    background-color: #0A2342;
    padding: 20px 10%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 3px solid #D4AF37;
}

._logo_firmy { font-family: 'Playfair Display', serif; font-size: 24px; font-weight: 700; color: #FFFFFF; letter-spacing: 1px;}
._logo_firmy span { color: #D4AF37; }

._linki_menu { display: flex; gap: 30px; }
._linki_menu a { font-size: 15px; font-weight: 500; color: #E2E8F0; text-transform: uppercase; letter-spacing: 1px;}
._linki_menu a:hover, ._linki_menu a._aktualna { color: #D4AF37; text-decoration: none; }

/* Hero */
._bohater_sekcja {
    padding: 80px 10%;
    display: flex;
    align-items: center;
    gap: 60px;
    background-color: #F8FAFC;
}

._tekst_glowny { flex: 1; }
._tekst_glowny h1 { font-size: 52px; line-height: 1.2; margin-bottom: 20px; color: #0A2342; }
._tekst_glowny p { font-size: 18px; color: #4A5568; margin-bottom: 35px; }

._przycisk_zloty {
    display: inline-block;
    padding: 16px 35px;
    background-color: #D4AF37;
    color: #0A2342 !important;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 4px;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(212, 175, 55, 0.3);
    transition: 0.3s;
}
._przycisk_zloty:hover { background-color: #B5952F; transform: translateY(-2px); text-decoration: none;}

._obraz_biura { flex: 1; text-align: right; }
._obraz_biura img { width: 100%; max-width: 500px; border-radius: 8px; box-shadow: 0 15px 30px rgba(10, 35, 66, 0.15); border: 1px solid #E2E8F0;}

/* Common Sections */
._sekcja_zawartosc { padding: 80px 10%; text-align: center; }
._sekcja_zawartosc h2 { font-size: 36px; margin-bottom: 25px; }
._sekcja_zawartosc > p { max-width: 700px; margin: 0 auto 50px; font-size: 18px; color: #4A5568; }

/* Services */
._siatka_uslug {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

._karta_uslugi {
    background-color: #FFFFFF;
    border-top: 4px solid #D4AF37;
    padding: 40px 30px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    text-align: left;
    transition: 0.3s;
}
._karta_uslugi:hover { transform: translateY(-5px); box-shadow: 0 15px 35px rgba(0,0,0,0.08); }

._karta_uslugi h3 { font-size: 22px; margin-bottom: 15px; color: #0A2342; }
._karta_uslugi p { font-size: 16px; color: #4A5568; }

/* Contact Form */
._formularz_pit { max-width: 500px; margin: 0 auto; display: flex; flex-direction: column; gap: 20px; text-align: left;}
._formularz_pit label { font-weight: 700; font-size: 14px; color: #0A2342; margin-bottom: -10px; text-transform: uppercase;}
._formularz_pit input, ._formularz_pit textarea {
    width: 100%; padding: 15px; background-color: #F8FAFC;
    border: 1px solid #CBD5E0; border-radius: 4px;
    font-family: 'Roboto', sans-serif; font-size: 16px;
}
._formularz_pit input:focus, ._formularz_pit textarea:focus { outline: none; border-color: #D4AF37; background-color: #FFFFFF; }

/* Footer */
._stopka_prawa {
    background-color: #0A2342; color: #A0AEC0; text-align: center; padding: 40px; font-size: 14px; border-top: 1px solid #1A365D;
}
._stopka_prawa a { color: #E2E8F0; margin: 0 15px; font-weight: 500; text-transform: uppercase; font-size: 12px;}
._stopka_prawa a:hover { color: #D4AF37; }

/* Inner Overrides */
._strona_wewnetrzna ._bohater_sekcja { padding: 50px 10%; background-color: #0A2342; color: #FFFFFF; justify-content: center; min-height: auto;}
._strona_wewnetrzna ._bohater_sekcja h1 { text-align: center; margin-bottom: 0; color: #FFFFFF;}
._tekst_czytelny { max-width: 800px; margin: 0 auto; font-size: 18px; color: #333333; text-align: left;}
._tekst_czytelny p { margin-bottom: 20px; }
._tekst_czytelny h2 { font-size: 28px; margin: 40px 0 20px; text-align: left; color: #0A2342;}

@media (max-width: 768px) {
    ._nawigacja_gorna { flex-direction: column; gap: 15px; padding: 20px 5%; }
    ._bohater_sekcja { flex-direction: column; text-align: center; padding: 40px 5%; }
    ._obraz_biura { text-align: center; }
    ._linki_menu { flex-wrap: wrap; justify-content: center; gap: 15px;}
    ._sekcja_zawartosc { padding: 60px 5%; }
}
