/* ============================================================
   JAŚKO KAJAKI – GALLERY STYLES
   ============================================================ */

.jk-gallery-main {
  background: #F8FAFB;
  font-family: 'Inter', system-ui, sans-serif;
}

/* ── Hero ────────────────────────────────────────────────── */
.jk-gallery-hero {
  background: linear-gradient(135deg, #0E3A5B 0%, #5C7A5B 100%);
  padding: 72px 24px 64px;
  text-align: center;
}

.jk-gallery-hero__inner {
  max-width: 640px;
  margin: 0 auto;
}

.jk-gallery-hero__title {
  font-family: 'Newsreader', Georgia, serif;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  color: #fff;
  margin: 0 0 16px;
  line-height: 1.15;
}

.jk-gallery-hero__desc {
  font-size: 1.0625rem;
  color: rgba(255,255,255,0.82);
  margin: 0;
  line-height: 1.65;
}

/* ── Gallery grid ────────────────────────────────────────── */
.jk-gallery-section {
  padding: 56px 24px;
}

.jk-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 1160px;
  margin: 0 auto;
}

@media (max-width: 900px) {
  .jk-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px) {
  .jk-gallery-grid {
    grid-template-columns: 1fr;
  }
}

/* ── Gallery item ────────────────────────────────────────── */
.jk-gallery-item {
  margin: 0;
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 2px 10px rgba(14,58,91,0.08);
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.22s ease, transform 0.22s ease;
}

.jk-gallery-item:hover {
  box-shadow: 0 8px 30px rgba(14,58,91,0.15);
  transform: translateY(-3px);
}

.jk-gallery-item__link {
  display: block;
  overflow: hidden;
  aspect-ratio: 4/3;
}

.jk-gallery-item__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}

.jk-gallery-item:hover .jk-gallery-item__img {
  transform: scale(1.05);
}

.jk-gallery-item__caption {
  padding: 10px 14px 12px;
  font-size: 0.8125rem;
  color: #5C7A5B;
  font-weight: 500;
  line-height: 1.4;
  text-align: center;
  background: #fff;
}

/* ── CTA ─────────────────────────────────────────────────── */
.jk-gallery-cta {
  background: linear-gradient(135deg, #0E3A5B 0%, #1F7A8C 100%);
  padding: 72px 24px;
  text-align: center;
}

.jk-gallery-cta__inner {
  max-width: 640px;
  margin: 0 auto;
}

.jk-gallery-cta__lead {
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.75);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin: 0 0 12px;
  font-weight: 600;
}

.jk-gallery-cta__title {
  font-family: 'Newsreader', Georgia, serif;
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  font-weight: 700;
  color: #fff;
  margin: 0 0 28px;
  line-height: 1.25;
}

.jk-gallery-cta__actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.jk-gallery-cta__btn {
  display: inline-flex;
  align-items: center;
  padding: 13px 28px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.9375rem;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.18s ease;
}

.jk-gallery-cta__btn--primary {
  background: #F4A261;
  color: #1C2730;
}

.jk-gallery-cta__btn--primary:hover {
  background: #e8904a;
  transform: translateY(-1px);
}

.jk-gallery-cta__btn--secondary {
  background: rgba(255,255,255,0.15);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.35);
}

.jk-gallery-cta__btn--secondary:hover {
  background: rgba(255,255,255,0.25);
  transform: translateY(-1px);
}
