/* RESET */
* {
  box-sizing: border-box;
}

/* BODY */
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background: #111;
  color: #fff;
}

/* CONTAINER */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
}

/* =========================
   HERO
========================= */
.hero {
  position: relative;
  min-height: 90vh;

  /* JEDYNA POPRAWNA ŚCIEŻKA */
  background-image: url("/assets/hero-bg.jpg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;

  display: flex;
  align-items: center;
}

/* OVERLAY */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
}

/* TREŚĆ HERO */
.hero .container {
  position: relative;
  z-index: 2;
}

.hero h1 {
  font-size: 48px;
  line-height: 1.2;
  margin-bottom: 20px;
}

.hero p {
  max-width: 720px;
  font-size: 18px;
  margin-bottom: 30px;
}

/* BUTTON */
.btn {
  display: inline-block;
  background: #c87a2c;
  color: #fff;
  padding: 14px 28px;
  text-decoration: none;
  font-weight: bold;
  border: none;
  cursor: pointer;
}

/* SEKCJE */
.section-dark {
  background: #1a1a1a;
}

/* FORM */
form input,
form textarea,
form button {
  width: 100%;
  padding: 12px;
  margin-bottom: 12px;
  border: none;
  border-radius: 2px;
}

form textarea {
  min-height: 120px;
}

/* FOOTER */
footer {
  background: #111;
  color: #ccc;
  padding: 30px 20px;
  font-size: 14px;
}