/* ===== RESET & BASE ===== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --primary: #1a5f7a;
    --primary-dark: #134a61;
    --accent: #f0a500;
    --text: #1e1e2e;
    --text-light: #6b7280;
    --bg: #ffffff;
    --bg-light: #f8fafc;
    --border: #e5e7eb;
    --radius: 8px;
    --shadow: 0 4px 20px rgba(0,0,0,0.08);
    --transition: 0.2s ease;
    color-scheme: only light;
}

body {
    font-family: 'Segoe UI', system-ui, sans-serif;
    color: var(--text);
    background: var(--bg);
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

a {
    text-decoration: none;
    color: inherit;
}

/* ===== NAVBAR ===== */
.navbar {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
    padding: 16px 0;
}

    .navbar .container {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 8px;
    }

.navbar-brand {
    display: flex;
    align-items: center;
}

.navbar-logo {
    height: 90px;
    width: auto;
    object-fit: contain;
}

.brand-icon {
    font-size: 1.6rem;
}

.nav-links {
    display: flex;
    gap: 32px;
}

    .nav-links a {
        font-weight: 500;
        color: var(--text);
        transition: color var(--transition);
    }

        .nav-links a:hover {
            color: var(--primary);
        }

/* ===== BUTTONS ===== */
.btn-primary {
    background: var(--primary);
    color: white !important;
    padding: 10px 22px;
    border-radius: var(--radius);
    font-weight: 600;
    transition: background var(--transition), transform var(--transition);
    border: none;
    cursor: pointer;
    display: inline-block;
}

    .btn-primary:hover {
        background: var(--primary-dark);
        transform: translateY(-1px);
    }

.btn-outline {
    background: transparent;
    color: var(--primary) !important;
    padding: 10px 22px;
    border-radius: var(--radius);
    font-weight: 600;
    border: 2px solid var(--primary);
    cursor: pointer;
    transition: all var(--transition);
    display: inline-block;
}

    .btn-outline:hover {
        background: var(--primary);
        color: white !important;
    }

/* ===== HERO ===== */
.hero {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 60%, #0d3a50 100%);
    color: white;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

    .hero::before {
        content: '';
        position: absolute;
        inset: 0;
        background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    }

.hero-content {
    position: relative;
    max-width: 700px;
}

.hero-badge {
    display: inline-block;
    background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.3);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    margin-bottom: 24px;
    backdrop-filter: blur(4px);
}

.hero h1 {
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
}

    .hero h1 span {
        color: var(--accent);
    }

.hero p {
    font-size: 1.15rem;
    opacity: 0.9;
    margin-bottom: 36px;
    max-width: 560px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-accent {
    background: var(--accent);
    color: var(--text) !important;
    padding: 14px 28px;
    border-radius: var(--radius);
    font-weight: 700;
    font-size: 1rem;
    transition: all var(--transition);
    display: inline-block;
}

    .btn-accent:hover {
        background: #d4920a;
        transform: translateY(-2px);
    }

.btn-white {
    background: rgba(255,255,255,0.15);
    color: white !important;
    padding: 14px 28px;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 1rem;
    border: 2px solid rgba(255,255,255,0.4);
    transition: all var(--transition);
    display: inline-block;
}

    .btn-white:hover {
        background: rgba(255,255,255,0.25);
    }

/* ===== STATS ===== */
.stats-bar {
    background: white;
    box-shadow: var(--shadow);
    padding: 32px 0;
}

.stats-grid {
    display: flex;
    justify-content: center;
    gap: 48px;
    text-align: center;
    flex-wrap: wrap;
}

.stat-item {
    min-width: 160px;
}

.stat-item h3 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary);
}

.stat-item p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-top: 4px;
}

/* ===== SECTIONS ===== */
.section {
    padding: 80px 0;
}

.section-alt {
    background: var(--bg-light);
}

.section-header {
    text-align: center;
    margin-bottom: 56px;
}

.section-label {
    display: inline-block;
    background: var(--primary);
    color: white;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 16px;
    padding: 6px 16px;
    border-radius: 20px;
}

.section-header h2 {
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    font-weight: 800;
    margin-bottom: 16px;
}

.section-header p {
    color: var(--text-light);
    max-width: 560px;
    margin: 0 auto;
    font-size: 1.05rem;
}

/* ===== KATEGORIE CARDS ===== */
.kategorie-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.kategoria-card {
    background: white;
    border-radius: 12px;
    padding: 36px 28px;
    border: 1px solid var(--border);
    transition: all var(--transition);
    text-align: center;
}

    .kategoria-card:hover {
        border-color: var(--primary);
        box-shadow: var(--shadow);
        transform: translateY(-4px);
    }

.kategoria-icon {
    font-size: 3rem;
    margin-bottom: 16px;
}

.kategoria-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--primary);
}

.kategoria-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ===== CTA ===== */
.cta-section {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    padding: 80px 0;
    text-align: center;
}

    .cta-section h2 {
        font-size: 2.2rem;
        font-weight: 800;
        margin-bottom: 16px;
    }

    .cta-section p {
        font-size: 1.1rem;
        opacity: 0.9;
        margin-bottom: 36px;
    }

/* ===== FOOTER ===== */
.footer {
    background: #0f1923;
    color: #94a3b8;
    padding: 64px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 48px;
}

.footer-col h3 {
    color: white;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.footer-col h4 {
    color: white;
    font-weight: 600;
    margin-bottom: 16px;
}

.footer-col p {
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.footer-col ul {
    list-style: none;
}

    .footer-col ul li {
        margin-bottom: 8px;
    }

    .footer-col ul a {
        color: #94a3b8;
        transition: color var(--transition);
    }

        .footer-col ul a:hover {
            color: white;
        }

.footer-bottom {
    border-top: 1px solid #1e2d3d;
    padding: 20px 0;
    text-align: center;
    font-size: 0.875rem;
}
/* ===== RESPONSIVE ===== */

/* Tablet — poniżej 1024px */
@media (max-width: 1024px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

/* Mobile — poniżej 768px */
@media (max-width: 768px) {
    /* Navbar */
    .nav-links {
        display: none;
    }

    .navbar-logo {
        height: 70px;
    }

    /* Hero */
    .hero {
        padding: 60px 0;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn-accent, .btn-white {
        text-align: center;
    }

    /* Stats */
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    /* Kategorie */
    .kategorie-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    /* Sections */
    .section {
        padding: 48px 0;
    }

    .section-header {
        margin-bottom: 32px;
    }

    .cta-section {
        padding: 48px 0;
    }
}

/* Małe mobile — poniżej 480px */
@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stat-item h3 {
        font-size: 1.5rem;
    }

    .container {
        padding: 0 16px;
    }
}
/* ===== PAGE HERO ===== */
.page-hero {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    padding: 60px 0;
    text-align: center;
}

    .page-hero h1 {
        font-size: clamp(1.6rem, 3vw, 2.4rem);
        font-weight: 800;
        margin: 12px 0;
    }

    .page-hero p {
        opacity: 0.9;
        font-size: 1.05rem;
    }

/* ===== FILTRY ===== */
.filtry {
    display: flex;
    gap: 12px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.filtr-btn {
    padding: 10px 22px;
    border-radius: 30px;
    border: 2px solid var(--border);
    background: white;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition);
    font-size: 0.95rem;
}

    .filtr-btn:hover {
        border-color: var(--primary);
        color: var(--primary);
    }

    .filtr-btn.active {
        background: var(--primary);
        border-color: var(--primary);
        color: white;
    }

/* ===== OFERTA GRID ===== */
.oferta-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.pawilon-card {
    background: white;
    border-radius: 12px;
    border: 1px solid var(--border);
    overflow: hidden;
    transition: all var(--transition);
}

    .pawilon-card:hover {
        box-shadow: var(--shadow);
        transform: translateY(-4px);
    }

.pawilon-img {
    height: 200px;
    background: var(--bg-light);
    position: relative;
    overflow: hidden;
}

    .pawilon-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.pawilon-img-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
}

.pawilon-kategoria {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--primary);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: capitalize;
}

.pawilon-body {
    padding: 20px;
}

    .pawilon-body h3 {
        font-size: 1.15rem;
        font-weight: 700;
        margin-bottom: 8px;
    }

    .pawilon-body p {
        color: var(--text-light);
        font-size: 0.9rem;
        line-height: 1.5;
        margin-bottom: 12px;
    }

.pawilon-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
    color: var(--text-light);
}

.pawilon-cena {
    font-weight: 700;
    color: var(--primary);
    font-size: 1rem;
}

/* ===== STANY ===== */
.loading, .empty-state {
    text-align: center;
    padding: 60px;
    color: var(--text-light);
    font-size: 1.1rem;
}

/* ===== RESPONSIVE OFERTA ===== */
@media (max-width: 1024px) {
    .oferta-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .oferta-grid {
        grid-template-columns: 1fr;
    }
}
/* ===== ADMIN ===== */
.admin-wrapper {
    display: flex;
    min-height: 100vh;
}

.admin-nav {
    width: 240px;
    background: #0f1923;
    color: white;
    padding: 24px 16px;
    flex-shrink: 0;
    position: sticky;
    top: 0;
    height: 100vh;
}

.admin-logo a {
    font-size: 1.1rem;
    font-weight: 700;
    color: white;
    display: block;
    margin-bottom: 32px;
    padding: 0 8px;
}

.admin-nav-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #4b5563;
    padding: 0 8px;
    margin-bottom: 8px;
}

.admin-nav-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    border-radius: var(--radius);
    color: #94a3b8;
    font-weight: 500;
    transition: all var(--transition);
    margin-bottom: 4px;
}

    .admin-nav-link:hover {
        background: rgba(255,255,255,0.08);
        color: white;
    }

.admin-nav-logout {
    color: #ef4444 !important;
}

.admin-content {
    flex: 1;
    padding: 40px;
    background: var(--bg-light);
}

.admin-header {
    margin-bottom: 36px;
}

    .admin-header h1 {
        font-size: 1.8rem;
        font-weight: 800;
    }

    .admin-header p {
        color: var(--text-light);
    }

.admin-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 40px;
    max-width: 600px;
}

.admin-stat-card {
    background: white;
    border-radius: 12px;
    padding: 24px;
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    gap: 16px;
}

.admin-stat-icon {
    font-size: 2rem;
}

.admin-stat-card h3 {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary);
}

.admin-stat-card p {
    color: var(--text-light);
    font-size: 0.9rem;
}

.admin-shortcuts h2 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.shortcuts-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    max-width: 700px;
}

.shortcut-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 24px 16px;
    text-align: center;
    transition: all var(--transition);
}

    .shortcut-card:hover {
        border-color: var(--primary);
        box-shadow: var(--shadow);
        transform: translateY(-2px);
    }

    .shortcut-card span {
        font-size: 2rem;
        display: block;
        margin-bottom: 8px;
    }

    .shortcut-card p {
        font-size: 0.85rem;
        font-weight: 600;
        color: var(--text);
    }

/* Admin responsive */
@media (max-width: 768px) {
    .admin-nav {
        display: none;
    }

    .admin-content {
        padding: 20px;
    }

    .shortcuts-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
/* ===== ADMIN FORMS & TABLE ===== */
.admin-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 36px;
}

.admin-table-wrapper {
    background: white;
    border-radius: 12px;
    border: 1px solid var(--border);
    overflow: hidden;
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
}

    .admin-table th {
        background: var(--bg-light);
        padding: 14px 16px;
        text-align: left;
        font-size: 0.85rem;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        color: var(--text-light);
        border-bottom: 1px solid var(--border);
    }

    .admin-table td {
        padding: 14px 16px;
        border-bottom: 1px solid var(--border);
        font-size: 0.95rem;
    }

    .admin-table tr:last-child td {
        border-bottom: none;
    }

    .admin-table tr:hover td {
        background: var(--bg-light);
    }

.badge {
    background: var(--primary);
    color: white;
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: capitalize;
}

.status {
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.status-ok {
    background: #dcfce7;
    color: #166534;
}

.status-off {
    background: #fee2e2;
    color: #991b1b;
}

.table-actions {
    display: flex;
    gap: 8px;
}

.btn-sm {
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    border: 1px solid var(--border);
    background: white;
    cursor: pointer;
    transition: all var(--transition);
    text-decoration: none;
    color: var(--text);
}

    .btn-sm:hover {
        background: var(--bg-light);
    }

.btn-danger {
    border-color: #fca5a5 !important;
    color: #dc2626 !important;
}

    .btn-danger:hover {
        background: #fee2e2 !important;
    }

/* Formularz */
.admin-form-wrapper {
    background: white;
    border-radius: 12px;
    border: 1px solid var(--border);
    padding: 32px;
    max-width: 800px;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
}

    .form-group label {
        display: block;
        font-weight: 600;
        font-size: 0.9rem;
        margin-bottom: 6px;
        color: var(--text);
    }

.form-control {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    font-size: 0.95rem;
    transition: border var(--transition);
    font-family: inherit;
}

    .form-control:focus {
        outline: none;
        border-color: var(--primary);
        box-shadow: 0 0 0 3px rgba(26, 95, 122, 0.1);
    }

textarea.form-control {
    resize: vertical;
}

.form-check {
    display: flex !important;
    align-items: center;
    gap: 10px;
    flex-direction: row !important;
}

    .form-check label {
        margin-bottom: 0 !important;
    }

.zdjecia-podglad {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 12px;
}

    .zdjecia-podglad img {
        width: 100px;
        height: 80px;
        object-fit: cover;
        border-radius: 6px;
        border: 1px solid var(--border);
    }

.form-actions {
    display: flex;
    gap: 12px;
    justify-content: flex-end;
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid var(--border);
}

.alert {
    padding: 12px 16px;
    border-radius: var(--radius);
    margin-bottom: 16px;
    font-weight: 500;
}

.alert-success {
    background: #dcfce7;
    color: #166534;
}

.alert-error {
    background: #fee2e2;
    color: #991b1b;
}
/* ===== SZCZEGÓŁY PAWILONU ===== */
.szczegoly-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}

.galeria-glowne {
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border);
    height: 380px;
}

    .galeria-glowne img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.galeria-placeholder {
    height: 380px;
    background: var(--bg-light);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
    border: 1px solid var(--border);
}

.galeria-miniatury {
    display: flex;
    gap: 10px;
    margin-top: 12px;
    flex-wrap: wrap;
}

    .galeria-miniatury img {
        width: 80px;
        height: 64px;
        object-fit: cover;
        border-radius: 6px;
        border: 2px solid var(--border);
        cursor: pointer;
        transition: all var(--transition);
    }

        .galeria-miniatury img.active,
        .galeria-miniatury img:hover {
            border-color: var(--primary);
        }

.szczegoly-cena {
    background: var(--bg-light);
    border-radius: 12px;
    padding: 20px 24px;
    margin-bottom: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 1px solid var(--border);
}

    .szczegoly-cena span {
        color: var(--text-light);
    }

    .szczegoly-cena strong {
        font-size: 1.8rem;
        color: var(--primary);
        font-weight: 800;
    }

.szczegoly-opis {
    margin-bottom: 24px;
}

    .szczegoly-opis h3 {
        font-weight: 700;
        margin-bottom: 10px;
    }

    .szczegoly-opis p {
        color: var(--text-light);
        line-height: 1.7;
    }

.szczegoly-meta {
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 24px;
}

.meta-row {
    display: flex;
    justify-content: space-between;
    padding: 12px 16px;
    border-bottom: 1px solid var(--border);
    font-size: 0.95rem;
}

    .meta-row:last-child {
        border-bottom: none;
    }

    .meta-row span {
        color: var(--text-light);
    }

.text-green {
    color: #166534;
}

.text-red {
    color: #991b1b;
}

@media (max-width: 768px) {
    .szczegoly-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}
/* ===== HERO SLIDER ===== */
.hero-slider {
    position: relative;
    height: 600px;
    overflow: hidden;
}

.slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.8s ease;
}

    .slide.active {
        opacity: 1;
    }

    .slide img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(15, 25, 35, 0.75) 0%, rgba(26, 95, 122, 0.5) 100%);
}

.slide-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    color: white;
}

    .slide-content .hero-badge {
        display: inline-block;
        background: rgba(255,255,255,0.15);
        border: 1px solid rgba(255,255,255,0.3);
        padding: 6px 16px;
        border-radius: 20px;
        font-size: 0.85rem;
        margin-bottom: 20px;
    }

    .slide-content h1 {
        font-size: clamp(2rem, 5vw, 3.2rem);
        font-weight: 800;
        line-height: 1.2;
        margin-bottom: 16px;
    }

        .slide-content h1 span {
            color: var(--accent);
        }

    .slide-content p {
        font-size: 1.1rem;
        opacity: 0.9;
        margin-bottom: 32px;
        max-width: 540px;
    }

/* Strzałki */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.15);
    border: 2px solid rgba(255,255,255,0.3);
    color: white;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all var(--transition);
    z-index: 10;
    backdrop-filter: blur(4px);
}

    .slider-arrow:hover {
        background: rgba(255,255,255,0.3);
    }

    .slider-arrow.left {
        left: 24px;
    }

    .slider-arrow.right {
        right: 24px;
    }

/* Kropki */
.slider-dots {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.6);
    background: transparent;
    cursor: pointer;
    transition: all var(--transition);
    padding: 0;
}

    .dot.active {
        background: white;
        border-color: white;
        transform: scale(1.3);
    }

/* ===== KATEGORIE ZE ZDJĘCIAMI ===== */
.kategorie-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.kategoria-card-img {
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--border);
    transition: all 0.3s ease;
    display: block;
    background: white;
    text-decoration: none;
    color: inherit;
}

    .kategoria-card-img:hover {
        transform: translateY(-6px);
        box-shadow: 0 12px 40px rgba(0,0,0,0.15);
    }

.kat-img {
    height: 200px;
    position: relative;
    overflow: hidden;
}

    .kat-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.4s ease;
    }

.kategoria-card-img:hover .kat-img img {
    transform: scale(1.05);
}

.kat-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.3), transparent);
}

.kat-body {
    padding: 24px;
}

    .kat-body h3 {
        font-size: 1.2rem;
        font-weight: 700;
        color: var(--primary);
        margin-bottom: 8px;
    }

    .kat-body p {
        color: var(--text-light);
        font-size: 0.9rem;
        line-height: 1.6;
        margin-bottom: 12px;
    }

.kat-link {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary);
}

/* Responsive */
@media (max-width: 768px) {
    .hero-slider {
        height: 480px;
    }

    .slider-arrow {
        display: none;
    }

    .kategorie-grid {
        grid-template-columns: 1fr;
    }
}
/* ===== STAT ROWS ADMIN ===== */
.stat-row {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    border: 1px solid var(--border);
    border-radius: 10px;
    margin-bottom: 12px;
    background: var(--bg-light);
    transition: all var(--transition);
}

.stat-active {
    border-color: var(--primary);
    background: rgba(26, 95, 122, 0.04);
}

.stat-toggle {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    color: var(--text-light);
    min-width: 60px;
}

.stat-preview {
    text-align: center;
    min-width: 100px;
    padding: 8px 16px;
    background: white;
    border-radius: 8px;
    border: 1px solid var(--border);
}

    .stat-preview strong {
        display: block;
        font-size: 1.3rem;
        color: var(--primary);
        font-weight: 800;
    }

    .stat-preview span {
        font-size: 0.75rem;
        color: var(--text-light);
    }
.wbudowie-wrapper {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
}

.wbudowie-box {
    text-align: center;
    max-width: 480px;
}

.wbudowie-icon {
    font-size: 5rem;
    margin-bottom: 24px;
    animation: bounce 2s infinite;
}

.wbudowie-box h1 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 12px;
    color: var(--text);
}

.wbudowie-box p {
    color: var(--text-light);
    font-size: 1.05rem;
    margin-bottom: 28px;
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }
}
/* ===== REALIZACJE ===== */
.realizacje-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.realizacja-card {
    background: white;
    border-radius: 12px;
    border: 1px solid var(--border);
    overflow: hidden;
    transition: all var(--transition);
}

    .realizacja-card:hover {
        box-shadow: var(--shadow);
        transform: translateY(-4px);
    }

.realizacja-img {
    height: 220px;
    position: relative;
    overflow: hidden;
    background: var(--bg-light);
}

    .realizacja-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.4s ease;
    }

.realizacja-card:hover .realizacja-img img {
    transform: scale(1.05);
}

.realizacja-rok {
    position: absolute;
    top: 12px;
    right: 12px;
    background: var(--accent);
    color: var(--text);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
}

.realizacja-body {
    padding: 20px;
}

    .realizacja-body h3 {
        font-size: 1.1rem;
        font-weight: 700;
        margin-bottom: 8px;
    }

    .realizacja-body p {
        color: var(--text-light);
        font-size: 0.9rem;
        line-height: 1.5;
        margin-bottom: 12px;
    }

.realizacja-lokalizacja {
    font-size: 0.85rem;
    color: var(--primary);
    font-weight: 600;
}

@media (max-width: 1024px) {
    .realizacje-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .realizacje-grid {
        grid-template-columns: 1fr;
    }
}
/* ===== HAMBURGER MENU ===== */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    background: var(--primary);
    border: none;
    border-radius: var(--radius);
    cursor: pointer;
    padding: 10px;
}

    .hamburger span {
        display: block;
        width: 22px;
        height: 2px;
        background: white;
        border-radius: 2px;
        transition: all 0.3s ease;
    }

    .hamburger.open span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .hamburger.open span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.open span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

.mobile-menu {
    display: flex;
    flex-direction: column;
    padding: 16px 20px;
    background: white;
    border-top: 1px solid var(--border);
    gap: 4px;
}

    .mobile-menu a {
        padding: 12px 16px;
        border-radius: var(--radius);
        font-weight: 500;
        color: var(--text);
        transition: all var(--transition);
    }

        .mobile-menu a:hover {
            background: var(--bg-light);
            color: var(--primary);
        }

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .desktop-only {
        display: none;
    }
}