.hero-section {
  background-image: url("https://i.pinimg.com/736x/80/36/2a/80362a07b16688d5a86df35c05b17194.jpg"); /* nahraď vlastnou cestou k obrázku */
  background-size: cover;
  background-position: center;
  height: 90vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
}

.hero-section::after {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background-color: rgba(0, 0, 0, 0.5); /* tmavý filter */
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-content h1 {
  font-size: 150px;
  margin: 0.5em 0;
  font-style:oblique;
}

.hero-content h2 {
  font-size: 100px;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 1.5em;
}

.hero-button {
  background-color: rgba(6, 12, 70, 0.458);
  color: white;
  padding: 0.8em 1.5em;
  text-decoration: none;
  font-weight: bold;
  border-radius: 30px;
  transition: background-color 0.3s;
}

.hero-button:hover {
  background-color: rgba(58, 98, 199, 0.65);
}
