/* ========== LANDING: Strona w budowie ========== */

/* Schowaj elementy szablonu, których nie chcemy na landing */
body.landing header.header,
body.landing .container-nav,
body.landing .container-topbar,
body.landing .container-below-top,
body.landing .container-banner,
body.landing .container-footer,
body.landing footer,
body.landing .breadcrumbs,
body.landing #back-top {
  display: none !important;
}

/* Pełnoekranowe tło */
html, body {
  height: 100% !important;
}

body.landing {
  min-height: 100vh !important;
  background-image: url("/images/las.png") !important;
  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
}



/* Wyśrodkuj treść */
body.landing .container-component {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem 1.5rem;
}

/* Wyłącz zbędne “ramy” Cassiopei */
body.landing .site-grid {
  margin: 0 !important;
}

/* Karta z tekstem (czytelność na tle) */
body.landing .com-content-article {
  max-width: 860px;
  width: 100%;
  text-align: center;
  background: rgba(255,255,255,0.55);
  backdrop-filter: blur(7px);
  border-radius: 18px;
  padding: 2.5rem 2rem;
}

/* Typografia */
body.landing .com-content-article h1,
body.landing .com-content-article h2 {
  margin: 0 0 1rem 0;
}

body.landing .com-content-article p {
  font-size: 1.1rem;
  line-height: 1.7;
  margin: 0.6rem 0;
}

/* Link e-mail – bardziej “premium” */
body.landing a {
  text-decoration: none;
  border-bottom: 1px solid rgba(0,0,0,0.25);
}
body.landing a:hover {
  border-bottom-color: rgba(0,0,0,0.6);
}
/* ===== Landing page: tło + karta ===== */

html, body { height: 100%; }

body.landing {
  min-height: 100vh;
  /* trochę ciemniej i neutralniej, żeby las nie był “żółty” */
  background:
    linear-gradient(rgba(255,255,255,0.28), rgba(255,255,255,0.28)),
    url("/images/las.png") center / cover no-repeat fixed;
}

/* wyłącz resztę layoutu Cassiopei na landing */
body.landing header.header,
body.landing .container-nav,
body.landing .container-topbar,
body.landing .container-below-top,
body.landing .container-banner,
body.landing .breadcrumbs,
body.landing .container-footer,
body.landing footer,
body.landing #back-top {
  display: none !important;
}

/* wyśrodkuj */
body.landing .container-component {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2.5rem 1.25rem;
}

/* karta */
body.landing .com-content-article {
  max-width: 760px;
  width: 100%;
  text-align: center;

  background: rgba(255,255,255,0.62);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);

  border-radius: 18px;
  padding: 2.2rem 2.1rem;

  box-shadow: 0 18px 55px rgba(0,0,0,0.18);
}

/* typografia */
body.landing .com-content-article h1,
body.landing .com-content-article h2 {
  margin: 0 0 0.8rem 0;
  letter-spacing: -0.02em;
}

body.landing .com-content-article p {
  margin: 0.6rem 0;
  font-size: 1.08rem;
  line-height: 1.7;
  color: rgba(0,0,0,0.78);
}

/* link maila */
body.landing .com-content-article a {
  color: rgba(0,0,0,0.78);
  text-decoration: none;
  border-bottom: 1px solid rgba(0,0,0,0.25);
}
body.landing .com-content-article a:hover {
  border-bottom-color: rgba(0,0,0,0.55);
}
/* Leśny akcent tytułu */
body.landing .com-content-article h1,
body.landing .com-content-article h2 {
  color: #6B7F3F; /* głęboka leśna zieleń */
}
body.landing .com-content-article h1 {
  text-shadow: 0 1px 2px rgba(255,255,255,0.4);
}
body.landing .com-content-article strong {
  color: #6B7F3F;
}


