@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.13.1/font/bootstrap-icons.min.css");

#hero {
  /* height: 100vh; */
  background-image: url('/header-bg.jpg');
  background-attachment: fixed;
  background-position: center;
  background-size: cover;
}

:root {
  --stripe-size: 40px;
  /* csík ismétlődési távolság */
  --stripe-width: 20px;
  /* fekete csík vastagság */
  --bg: #ffd400;
  /* sárga háttér */
  --stripe: #000000;
  /* fekete csík */
  --text-color: #000;
  /* szöveg szín */
}

.warning-band {
  height: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-family: sans-serif;
  font-size: 1.25rem;
  color: var(--text-color);

  background-color: var(--bg);
  background-image: repeating-linear-gradient(135deg,
      /* csíkok dőlésszöge */
      var(--stripe),
      /* kezdő szín: fekete */
      var(--stripe) var(--stripe-width),
      /* fekete csík szélessége */
      var(--bg) var(--stripe-width),
      /* innen sárga */
      var(--bg) var(--stripe-size)
      /* teljes ciklus hossza */
    );
}

/* mobilon kisebb sávmagasság */
@media (max-width:480px) {
  .warning-band {
    height: 10px;
    font-size: 1rem;
  }
}

.faq-header {
  text-align: center;
  margin-bottom: 40px;
}

.contact-header {
  text-align: center;
  margin-bottom: 40px;
}

.form-control,
.btn {
  border-radius: 0.5rem;
}