/* First-paint shell for homepage LCP. Matches default locale (hr) hero title only on "/". */

html.skip-static-lcp-shell .static-lcp-shell {
  display: none;
}

.static-lcp-shell {
  box-sizing: border-box;
  min-height: 100vh;
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  background-color: #075985;
  color: #ffffff;
  text-align: center;
}

.static-lcp-shell__title {
  margin: 0;
  max-width: 72rem;
  font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.03em;
  font-size: clamp(2rem, 10vw, 4.5rem);
  color: #ffffff;
  text-shadow:
    3px 3px 6px rgba(0, 0, 0, 0.9),
    0 0 12px rgba(0, 0, 0, 0.7);
  filter: drop-shadow(0 6px 8px rgba(0, 0, 0, 0.8));
}
