/* Podstawowe ustawienia */
:root {
    --primary-color: #0056b3;
    --text-color: #333;
    --bg-color: #f4f4f4;
    --white: #ffffff;
    --border-color: #ddd;
}

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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--bg-color);
}

/* Header & Nav */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%;
    background: var(--white);
}

/* Nowe style dla sekcji kontaktowej w nagłówku */
.kontakt-header {
    display: flex;
    gap: 1rem;
}

.btn-header {
    text-decoration: none;
    font-weight: bold;
    padding: 0.6rem 1.2rem;
    border-radius: 5px;
    font-size: 0.95rem;
    white-space: nowrap;
    transition: background 0.2s ease, transform 0.1s ease;
}

/* Przycisk telefonu - główny (Niebieski) */
.btn-tel {
    background: var(--primary-color);
    color: var(--white) !important;
}

.btn-tel:hover {
    background: #004085; /* Ciemniejszy odcień niebieskiego na hover */
}

/* Przycisk e-mail - poboczny (Jasny) */
.btn-mail {
    background: #e9ecef;
    color: var(--text-color) !important;
    border: 1px solid var(--border-color);
}

.btn-mail:hover {
    background: #dee2e6;
}

nav {
    background: var(--primary-color);
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 0.5rem;
}

nav a {
    color: var(--white);
    text-decoration: none;
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
}

nav a:hover { text-decoration: underline; }

/* Hero Section */
.hero picture img {
    width: 100%;
    height: auto;
    display: block;
}

.hero-content {
    padding: 2rem 5%;
    background: var(--white);
}

h1 { margin-bottom: 1rem; color: var(--primary-color); }

/* Przyciski w treści strony (Hero) */
.przyciski { margin-top: 2rem; }

.btn {
    display: inline-block;
    padding: 1rem 2rem;
    background: var(--primary-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    margin-right: 1rem;
}

/* Lista główna */
.lista-glowna {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    padding: 2rem 5%;
    list-style: none;
}

.lista-glowna li a {
    display: block;
    padding: 1rem;
    background: var(--white);
    text-align: center;
    text-decoration: none;
    color: var(--text-color);
    border: 1px solid var(--border-color);
}

/* Footer */
footer {
    text-align: center;
    padding: 2rem;
    background: #333;
    color: var(--white);
}

footer a { color: #ffcc00; }

/* Responsywność dla mobile */
@media (max-width: 768px) {
    header {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .kontakt-header {
        flex-direction: column;
        width: 100%;
        gap: 0.5rem;
    }

    .btn-header {
        display: block;
        text-align: center;
        width: 100%;
    }
}
