/* === BLOG ARTICLE STYLES === */
:root {
  --sky: #4FC3F7;
  --sky-light: #E1F5FE;
  --sky-mid: #B3E5FC;
  --sky-dark: #0288D1;
  --navy: #1565C0;
  --navy-dark: #0D47A1;
  --accent: #FFD740;
  --white: #FFFFFF;
  --bg: #F0F9FF;
  --text: #1A2744;
  --text-light: #4A6080;
  --shadow-card: 0 4px 20px rgba(2,136,209,0.12);
  --radius: 20px;
  --radius-sm: 12px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Nunito', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
}

/* NAVBAR */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(13, 71, 161, 0.98);
  backdrop-filter: blur(12px);
  padding: 0 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  box-shadow: 0 2px 20px rgba(0,0,0,0.2);
}
.logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.logo-img { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; border: 2px solid var(--sky); }
.logo-text { font-family: 'Baloo 2', cursive; font-size: 1.2rem; font-weight: 800; color: var(--white); line-height: 1.1; }
.logo-text span { display: block; font-size: 0.75rem; font-weight: 600; color: var(--sky); font-family: 'Nunito', sans-serif; }
.nav-links { display: flex; gap: 6px; list-style: none; align-items: center; }
.nav-links a { color: rgba(255,255,255,0.85); text-decoration: none; font-family: 'Baloo 2', cursive; font-weight: 600; font-size: 0.9rem; padding: 6px 14px; border-radius: 50px; transition: all 0.2s; }
.nav-links a:hover { background: rgba(255,255,255,0.15); color: var(--white); }
.nav-cta { background: var(--accent) !important; color: var(--navy-dark) !important; font-weight: 800 !important; }
@media (max-width: 768px) {
  .nav-links { display: none; }
  .logo-text { font-size: 1rem; }
}

/* ARTICLE HEADER */
.article-header {
  background: linear-gradient(135deg, #0D47A1, #1565C0, #0288D1);
  color: var(--white);
  padding: 120px 5% 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.article-header::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.04'%3E%3Ccircle cx='30' cy='30' r='20'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.article-header-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}
.article-breadcrumb {
  font-family: 'Baloo 2', cursive;
  font-weight: 600;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: 16px;
}
.article-breadcrumb a { color: rgba(255,255,255,0.9); text-decoration: none; }
.article-breadcrumb a:hover { color: var(--accent); }
.article-badge {
  display: inline-block;
  background: var(--accent);
  color: var(--navy-dark);
  font-family: 'Baloo 2', cursive;
  font-weight: 800;
  font-size: 0.8rem;
  padding: 5px 16px;
  border-radius: 50px;
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.article-header h1 {
  font-family: 'Baloo 2', cursive;
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 16px;
}
.article-meta-top {
  display: flex;
  gap: 18px;
  justify-content: center;
  flex-wrap: wrap;
  font-family: 'Baloo 2', cursive;
  font-weight: 600;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.85);
}

/* CONTENT */
.article-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 60px 5%;
}
.article-content h2 {
  font-family: 'Baloo 2', cursive;
  font-size: clamp(1.4rem, 2.5vw, 1.8rem);
  font-weight: 800;
  color: var(--navy-dark);
  margin: 40px 0 16px;
  line-height: 1.3;
}
.article-content h2:first-child { margin-top: 0; }
.article-content h3 {
  font-family: 'Baloo 2', cursive;
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--sky-dark);
  margin: 28px 0 12px;
}
.article-content p {
  font-size: 1.02rem;
  margin-bottom: 16px;
  color: var(--text);
}
.article-content strong {
  color: var(--navy-dark);
  font-weight: 800;
}
.article-content ul, .article-content ol {
  margin: 0 0 20px 22px;
}
.article-content li {
  margin-bottom: 8px;
  font-size: 1rem;
}
.article-content blockquote {
  background: var(--sky-light);
  border-left: 4px solid var(--sky-dark);
  padding: 18px 22px;
  margin: 24px 0;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-style: italic;
  color: var(--navy-dark);
}
.article-content a {
  color: var(--sky-dark);
  font-weight: 700;
}
.article-content img {
  width: 100%;
  border-radius: var(--radius);
  margin: 24px 0;
}

/* OFFER BOX - oferta dmuchańców z linkami */
.offer-section {
  background: linear-gradient(135deg, var(--sky-light) 0%, var(--bg) 100%);
  padding: 60px 5%;
}
.offer-section .inner {
  max-width: 1100px;
  margin: 0 auto;
}
.offer-section h2 {
  font-family: 'Baloo 2', cursive;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 900;
  color: var(--navy-dark);
  text-align: center;
  margin-bottom: 12px;
}
.offer-section h2 span { color: var(--sky-dark); }
.offer-section .subtitle {
  text-align: center;
  color: var(--text-light);
  margin-bottom: 36px;
}
.offer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 20px;
}
.offer-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 2px solid var(--sky-light);
  transition: all 0.3s;
  text-decoration: none;
  color: inherit;
  display: block;
}
.offer-card:hover {
  transform: translateY(-6px);
  border-color: var(--sky);
  box-shadow: 0 16px 40px rgba(2,136,209,0.2);
}
.offer-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  transition: transform 0.4s;
}
.offer-card:hover img { transform: scale(1.05); }
.offer-card-body {
  padding: 16px;
}
.offer-card-title {
  font-family: 'Baloo 2', cursive;
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--navy-dark);
  margin-bottom: 4px;
}
.offer-card-price {
  font-family: 'Baloo 2', cursive;
  font-weight: 700;
  color: var(--sky-dark);
  font-size: 0.95rem;
  margin-bottom: 10px;
}
.offer-card-cta {
  display: inline-block;
  background: var(--navy-dark);
  color: var(--white) !important;
  padding: 7px 14px;
  border-radius: 50px;
  font-family: 'Baloo 2', cursive;
  font-weight: 700;
  font-size: 0.82rem;
  text-decoration: none;
}

/* CONTACT BOX */
.contact-box {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--sky-dark) 100%);
  color: var(--white);
  padding: 50px 5%;
  text-align: center;
}
.contact-box .inner {
  max-width: 700px;
  margin: 0 auto;
}
.contact-box h2 {
  font-family: 'Baloo 2', cursive;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 900;
  margin-bottom: 12px;
}
.contact-box h2 span { color: var(--accent); }
.contact-box p {
  color: rgba(255,255,255,0.85);
  margin-bottom: 28px;
  font-size: 1.05rem;
}
.contact-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: 50px;
  font-family: 'Baloo 2', cursive;
  font-weight: 800;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.25s;
  border: none;
  cursor: pointer;
}
.btn-primary { background: var(--accent); color: var(--navy-dark); box-shadow: 0 6px 24px rgba(255,215,64,0.4); }
.btn-primary:hover { background: #FFE57F; transform: translateY(-3px); }
.btn-wa { background: #25D366; color: var(--white); box-shadow: 0 6px 24px rgba(37,211,102,0.35); }
.btn-wa:hover { background: #20BA5A; transform: translateY(-3px); }
.btn-fb { background: linear-gradient(135deg, #0099FF, #A033FF); color: var(--white); }
.btn-fb:hover { transform: translateY(-3px); }

/* BACK TO BLOG */
.back-to-blog {
  text-align: center;
  padding: 30px 5%;
  background: var(--white);
}
.back-to-blog a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--sky-dark);
  font-family: 'Baloo 2', cursive;
  font-weight: 700;
  text-decoration: none;
  padding: 10px 22px;
  border-radius: 50px;
  border: 2px solid var(--sky-light);
  transition: all 0.2s;
}
.back-to-blog a:hover {
  background: var(--sky-light);
  border-color: var(--sky);
}

/* FOOTER */
footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,0.65);
  padding: 30px 5%;
  text-align: center;
  font-size: 0.85rem;
}
footer a { color: var(--sky); text-decoration: none; }

/* FLOATING BUTTONS */
.float-btns {
  position: fixed;
  bottom: 24px;
  right: 20px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-end;
}
.float-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 18px;
  border-radius: 50px;
  color: var(--white);
  text-decoration: none;
  font-family: 'Baloo 2', cursive;
  font-weight: 800;
  font-size: 0.85rem;
  box-shadow: 0 4px 16px rgba(0,0,0,0.25);
  transition: all 0.2s;
  white-space: nowrap;
}
.float-btn:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(0,0,0,0.3); }
.float-btn.call { background: linear-gradient(135deg, var(--navy-dark), var(--sky-dark)); }
.float-btn.wa { background: linear-gradient(135deg, #128C7E, #25D366); }
.float-btn.fb { background: linear-gradient(135deg, #0099FF, #A033FF); }
@media (max-width: 768px) {
  .float-btn span { display: none; }
  .float-btn { padding: 14px; }
}
