/*
Theme Name: ECR Landing Hero Elementor
Theme URI: https://ecrrehabilitacja.pl/
Author: Izabela
Description: Minimalistyczny motyw pod Elementor – czarno/biało/pomarańczowy, z klasami pod landing o nowej lokalizacji i usłudze „Innowacyjna rehabilitacja 360°”.
Version: 1.0
Text Domain: ecr-landing-hero-elementor
*/

:root {
  --accent: #ff7a00;
  --text: #ffffff;
  --text-muted: #d4d4d4;
}

/* reset / global */

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background-color: #000;
  color: var(--text);
}

/* ogólny kontener strony */

.page-wrap {
  min-height: 100vh;
}

/* HEADER – prosty pasek u góry, możesz go wyłączyć w Elementorze jeśli chcesz */

.site-header {
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.site-header-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 10px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  color: var(--text-muted);
  font-size: 13px;
}

.site-header-logo {
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
}

/* stopka */

.site-footer {
  padding: 16px 18px 24px;
  text-align: center;
  font-size: 12px;
  color: var(--text-muted);
}

/* SEKCJA HERO – możesz użyć tych klas w Elementorze (Section + Inner Section/Container + HTML widget) */

/* Sekcja tła */

.hero {
  position: relative;
  min-height: 100vh;
  width: 100%;
  background: url("assets/hero-bg.jpg") center/cover no-repeat;
  display: flex;
  align-items: center;
  padding: 40px;
}

/* przyciemnienie */

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(2px);
}

/* treść */

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 620px;
}

/* logo */

.hero-logo {
  width: 160px;
  margin-bottom: 26px;
}

/* kapsułka */

.hero-pill {
  display: inline-block;
  padding: 4px 10px;
  border: 1px solid var(--accent);
  border-radius: 20px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--accent);
  margin-bottom: 18px;
}

/* tytuł */

.hero-title {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 16px;
}

/* lead */

.hero-lead {
  font-size: 16px;
  color: var(--text-muted);
  margin-bottom: 30px;
  max-width: 520px;
}

/* bloki info */

.info-box {
  border-left: 3px solid var(--accent);
  padding-left: 14px;
  margin-bottom: 20px;
}

.info-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--text-muted);
}

.info-main {
  font-size: 18px;
  font-weight: 600;
  margin-top: 4px;
}

/* mały tekst */

.hero-small {
  font-size: 14px;
  color: var(--text-muted);
  margin-top: 10px;
  max-width: 520px;
}

/* responsywność */

@media (max-width: 700px) {
  .hero {
    padding: 24px;
  }

  .hero-logo {
    width: 130px;
  }

  .hero-title {
    font-size: 30px;
  }
}
