/* ===================== style.css ===================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
  color: #222;
  background-image: url("background_260218.png");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  background-repeat: no-repeat;

}

.hero {
 /* background-image: url("background_260218.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  background-attachment: fixed; /* efekt parallax */
  color: #fff;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  position: relative;
}

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

.hero > * {
  position: relative;
  z-index: 1;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 3rem;
}

.logo {
  font-size: 1.5rem;
  font-weight: bold;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}

.nav-links a {
  color: #fff;
  text-decoration: none;
}

.hero-content {
  background: transparent;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 2rem;
}

.hero-content h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.section {
  background: rgb(240, 240, 240, 0.6);
  backdrop-filter: blur(2px);
  padding: 4rem 3rem;
  max-width: 1100px;
  margin: 0 auto;
  margin-bottom: 10px;
  border: 0 hidden;
  border-radius: 5px;
}

.section h2 {
  margin-bottom: 1.5rem;
}

.section.alt {
  background: rgb(250, 250, 250, 0.6);
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.card {
  background: #fff;
  padding: 2rem;
  border-radius: 8px;
}

.process {
  list-style-position: inside;
  font-size: 1.1rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 400px;
}

.contact-form input,
.contact-form textarea {
  padding: 0.8rem;
}

.btn-primary {
  background: #2c5364;
  color: #fff;
  padding: 0.8rem 1.5rem;
  border: none;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
}

.footer {
  text-align: center;
  padding: 1.5rem;
  background: #111;
  color: #fff;
}

