/* ==========================================================
   SEKCJE STRONY GŁÓWNEJ — cennik / co nas wyróżnia / misja
   Nowy czysty styl, spójny z sekcją menu
   ========================================================== */
.bib-sec {
    font-family: 'Inter', 'Poppins', -apple-system, sans-serif;
    padding: 64px 24px 72px;
}
.bib-sec-head { text-align: center; max-width: 720px; margin: 0 auto 40px; }
.bib-sec-badge {
    display: inline-block;
    background: #e0f2fe;
    color: #0369a1;
    font-weight: 800;
    font-size: 12px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 999px;
    margin-bottom: 16px;
}
.bib-sec-title {
    font-family: 'Baloo 2', 'Baloo Bhai 2', cursive;
    font-size: clamp(2rem, 5vw, 2.8rem);
    font-weight: 800;
    color: #1e293b;
    margin: 0 0 12px;
    line-height: 1.1;
}
.bib-sec-sub { font-size: 1.05rem; color: #475569; margin: 0; }

/* ---------- CENNIK ---------- */
.bib-cennik { background: #fff; }
.bib-price-grid {
    max-width: 880px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}
.bib-price-card {
    background: #f0f9ff;
    border: 2px solid #dbeafe;
    border-radius: 24px;
    padding: 32px 30px;
    box-shadow: 0 8px 22px rgba(44,26,14,0.06);
}
.bib-price-card--weekend {
    background: #eaf4fe;
    border-color: #ffd9b8;
}
.bib-price-day {
    font-family: 'Baloo 2', 'Baloo Bhai 2', cursive;
    font-size: 1.3rem;
    font-weight: 700;
    color: #e8420a;
    text-align: center;
    margin-bottom: 18px;
}
.bib-price-list { list-style: none; margin: 0; padding: 0; }
.bib-price-list li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 13px 4px;
    border-bottom: 1px dashed #e6d5c5;
    font-size: 1.05rem;
    color: #4a3525;
}
.bib-price-list li:last-child { border-bottom: none; }
.bib-price-list b { color: #1e293b; font-size: 1.15rem; }
.bib-discounts {
    max-width: 880px;
    margin: 28px auto 0;
    list-style: none;
    padding: 22px 26px;
    background: #f0f9ff;
    border: 1px solid #dbeafe;
    border-radius: 18px;
    display: grid;
    gap: 10px;
}
.bib-discounts li { color: #475569; font-size: 0.98rem; }
.bib-discounts b { color: #0369a1; }

/* ---------- CO NAS WYRÓŻNIA ---------- */
.bib-features { background: #f0f9ff; }
.bib-feat-grid {
    max-width: 1180px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 22px;
}
.bib-feat-card {
    background: #fff;
    border-radius: 20px;
    padding: 32px 28px;
    box-shadow: 0 6px 18px rgba(44,26,14,0.08);
    text-align: center;
    transition: transform 0.2s, box-shadow 0.2s;
}
.bib-feat-card:hover { transform: translateY(-4px); box-shadow: 0 14px 30px rgba(44,26,14,0.14); }
.bib-feat-icon {
    font-size: 2.6rem;
    margin-bottom: 14px;
    line-height: 1;
}
.bib-feat-card h3 {
    font-family: 'Baloo 2', 'Baloo Bhai 2', cursive;
    font-size: 1.2rem;
    color: #e8420a;
    margin: 0 0 10px;
    line-height: 1.25;
}
.bib-feat-card p { color: #475569; font-size: 0.96rem; line-height: 1.55; margin: 0; }

/* ---------- NASZA MISJA ---------- */
.bib-mission {
    background: linear-gradient(135deg, #38bdf8 0%, #6366f1 100%);
}
.bib-mission .bib-sec-badge { background: rgba(255,255,255,0.2); color: #fff; }
.bib-mission .bib-sec-title { color: #fff; text-align: center; }
.bib-mission-inner { max-width: 820px; margin: 0 auto; text-align: center; }
.bib-mission-inner p {
    color: #f3f8ec;
    font-size: 1.08rem;
    line-height: 1.7;
    margin: 0 0 18px;
}
.bib-mission-inner p:last-child { margin-bottom: 0; }

/* ---------- Responsywność ---------- */
@media (max-width: 720px) {
    .bib-sec { padding: 48px 18px 56px; }
    .bib-price-grid { grid-template-columns: 1fr; gap: 16px; }
    .bib-mission-inner p { font-size: 1rem; }
}

/* ---------- DLACZEGO WARTO TU BYĆ (4 karty ze zdjęciami) ---------- */
.bib-why { background: #fff; }
.bib-why-grid {
    max-width: 1180px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
}
.bib-why-card {
    background: #f0f9ff;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 8px 22px rgba(44,26,14,0.09);
    display: flex;
    flex-direction: column;
    transition: transform 0.2s, box-shadow 0.2s;
}
.bib-why-card:hover { transform: translateY(-5px); box-shadow: 0 16px 34px rgba(44,26,14,0.16); }
.bib-why-img { aspect-ratio: 4 / 3; overflow: hidden; background: #eef4fb; }
.bib-why-img img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.4s; }
.bib-why-card:hover .bib-why-img img { transform: scale(1.06); }
.bib-why-body { padding: 22px 22px 26px; display: flex; flex-direction: column; flex: 1; }
.bib-why-body h3 {
    font-family: 'Baloo 2', 'Baloo Bhai 2', cursive;
    font-size: 1.3rem;
    color: #e8420a;
    margin: 0 0 10px;
    line-height: 1.2;
}
.bib-why-body p { color: #475569; font-size: 0.97rem; line-height: 1.55; margin: 0 0 16px; flex: 1; }
.bib-why-cta {
    align-self: flex-start;
    background: #e8420a;
    color: #fff !important;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    padding: 10px 20px;
    border-radius: 999px;
    transition: background 0.18s, transform 0.15s;
}
.bib-why-cta:hover { background: #c43408; transform: translateX(2px); }
