
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;500;600;700&display=swap');

:root {
    --pozn-primary: #6f42c1;
    --pozn-secondary: #6c757d;
    --pozn-accent: #20c997;
    --pozn-bg-primary-tint: #f7f5fb;
    --pozn-bg-secondary-tint: #f0f1f2;
    --pozn-bg-accent-tint: #edfaf6;
    --pozn-radius: 8px;
    --pozn-shadow: 0 6px 20px rgba(0,0,0,.08);
}

body {
    font-family: 'Open Sans', Helvetica, sans-serif;
    line-height: 1.7;
    color: #333;
}

.btn-primary, .pozn-btn {
    background-color: var(--pozn-primary);
    border-color: var(--pozn-primary);
    border-radius: var(--pozn-radius);
    transition: all 0.25s ease;
}

.btn-primary:hover, .pozn-btn:hover {
    background-color: var(--pozn-primary);
    border-color: var(--pozn-primary);
    transform: scale(1.02);
    filter: brightness(1.1);
}

.btn-outline-primary {
    color: var(--pozn-primary);
    border-color: var(--pozn-primary);
    border-radius: var(--pozn-radius);
}

.btn-outline-primary:hover {
    background-color: var(--pozn-primary);
    border-color: var(--pozn-primary);
}

.shadow, .shadow-sm, .pozn-shadow {
    box-shadow: var(--pozn-shadow) !important;
}

.card {
    border-radius: var(--pozn-radius);
    transition: all 0.3s ease;
}

.card:hover {
    transform: scale(1.02);
    box-shadow: 0 12px 24px rgba(0,0,0,0.12) !important;
}

.accordion-button:not(.collapsed) {
    color: var(--pozn-primary);
    background-color: rgba(111, 66, 193, 0.1);
}

.text-primary, .pozn-text {
    color: var(--pozn-primary) !important;
}

.bg-primary {
    background-color: var(--pozn-primary) !important;
}

.border-primary {
    border-color: var(--pozn-primary) !important;
}

.pozn-logos img {
    filter: grayscale(100%);
    opacity: 0.6;
    transition: all 0.35s ease;
}

.pozn-logos img:hover {
    filter: grayscale(0%);
    opacity: 1;
}

.navbar-brand {
    color: var(--pozn-primary) !important;
}

.nav-link.btn {
    border-radius: var(--pozn-radius);
}

.table-primary {
    background-color: rgba(111, 66, 193, 0.15) !important;
}

.badge.bg-primary {
    background-color: var(--pozn-primary) !important;
}

/* Responsywny tytuł hero - clamp() dla lepszego UX */
.pozn-hero-title {
    font-size: clamp(1.8rem, 4.5vw, 3.2rem);
    line-height: 1.2;
}

/* Karty cennika */
.pozn-card {
    border-radius: var(--pozn-radius);
    transition: all 0.3s ease;
}

.pozn-card:hover {
    transform: scale(1.02);
    border-bottom: 3px solid var(--pozn-primary);
}

/* Unikalne animacje dla poznan */
.pozn-hero {
    background: linear-gradient(rgba(0,0,0,0.55), rgba(0,0,0,0.65));
}

.pozn-cta {
    background-color: var(--pozn-accent);
    color: #fff;
    border-radius: var(--pozn-radius);
}

.pozn-section {
    border-radius: var(--pozn-radius);
}

@media (max-width: 768px) {
    .btn-lg {
        padding: 0.75rem 1.5rem;
    }
}

/* Custom Background Utilities */
.bg-custom-primary-tint {
    background-color: var(--pozn-bg-primary-tint) !important;
}
.bg-custom-secondary-tint {
    background-color: var(--pozn-bg-secondary-tint) !important;
}
.bg-custom-accent-tint {
    background-color: var(--pozn-bg-accent-tint) !important;
}

/* Custom 7-column grid for brands */
@media (min-width: 768px) {
    .col-md-custom-7 {
        flex: 0 0 14.2857%;
        max-width: 14.2857%;
    }
}
