/* ─────────────────────────────────────────
   style_kontak.css — Kontak page only
   Requires: style_shared.css
───────────────────────────────────────── */

body { padding-top: 64px; }

/* ── PAGE HERO (reuses shared pattern) ── */
.page-hero {
  background: var(--navy);
  padding: 5rem 0 4rem;
  position: relative;
  overflow: hidden;
}
.page-hero__bg-text {
  position: absolute;
  right: -1rem; top: 50%;
  transform: translateY(-50%);
  font-size: clamp(6rem, 14vw, 12rem);
  font-weight: 900;
  color: rgba(255,255,255,0.04);
  line-height: 1;
  letter-spacing: -0.05em;
  pointer-events: none;
  user-select: none;
}
.page-hero .eyebrow { color: var(--orange); }
.page-hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}
.page-hero .hero-divider {
  width: 32px; height: 3px;
  background: var(--orange);
  border-radius: 2px;
  margin-bottom: 1rem;
}
.page-hero p { font-size: 1rem; color: rgba(255,255,255,0.6); max-width: 520px; }

/* ── CONTACT CARDS ── */
.contact-section { padding: 5rem 0; background: var(--white); }

.contact-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.contact-card {
  border: 1px solid var(--border);
  border-top: 3px solid var(--navy);
  border-radius: 6px;
  padding: 2rem 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-top-color 0.2s ease;
}

.contact-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.07);
  border-top-color: var(--orange);
}

.contact-card__icon {
  width: 44px; height: 44px;
  background: var(--surface);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s ease;
}

.contact-card:hover .contact-card__icon { background: rgba(229,107,31,0.1); }

.contact-card__icon i {
  font-size: 1.25rem;
  color: var(--navy);
  transition: color 0.2s ease;
}

.contact-card:hover .contact-card__icon i { color: var(--orange); }

.contact-card h3 {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--navy-dark);
  letter-spacing: -0.01em;
}

.contact-card p {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.7;
  flex: 1;
}

.contact-card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--navy);
  transition: color 0.15s ease, gap 0.15s ease;
  margin-top: 0.25rem;
}

.contact-card__link:hover { color: var(--orange); gap: 0.55rem; }

/* ── LOCATION SECTION ── */
.location-section {
  padding: 5rem 0;
  background: var(--surface);
  border-top: 1px solid var(--border);
}

.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: start;
}

.location-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 1rem;
}

.map-wrapper {
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid var(--border);
  aspect-ratio: 4 / 3;
}

.map-wrapper iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

.location-photo img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: 6px;
  border: 1px solid var(--border);
  display: block;
}

.location-caption {
  margin-top: 0.75rem;
  font-size: 0.8rem;
  color: var(--muted-light);
  line-height: 1.5;
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .contact-cards { grid-template-columns: 1fr; }
  .location-grid { grid-template-columns: 1fr; }
  .location-photo img { height: 240px; }
  .contact-section, .location-section { padding: 3.5rem 0; }
  .page-hero { padding: 3.5rem 0 3rem; }
}

@media (max-width: 480px) {
  .contact-section, .location-section { padding: 3rem 0; }
}
