body {
  background-color: rgb(32, 32, 33);
  margin: 0;
  padding: 0;
  color: white;
}

h1,
h2 {
  color: aliceblue;
}

section {
  height: 100vh;
  background-size: auto 100%;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  color: white;
  overflow: hidden;
}

.clickable-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: block;
}

section .hero-container-text {
  position: relative;
  z-index: 2;
}

header {
  -webkit-backdrop-filter: blur(3px);
  backdrop-filter: blur(3px);
  background: #161717cc;
  z-index: 10;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.section-content {
  position: relative;
  z-index: 2;
}

.hero-container-text {
  text-align: left;
  margin: 20px;
  padding: 20px;
  z-index: 2;
  -webkit-backdrop-filter: blur(3px);
  backdrop-filter: blur(3px);
  background: rgba(22, 23, 23, 0.8);
  border-radius: 10px;
}

.hero-top-text {
  margin: 5px;
  font-size: 30px;
  font-weight: 600;
  text-align: left;
  color: #fff;
  text-decoration: none;
}

.hero-text {
  width: 100%;
  color: #eee;
  margin-bottom: 10px;
  font-size: 16px;
  letter-spacing: 0.5px;
  text-align: left;
  text-decoration: none;
}
.hero-top-text:hover {
  text-decoration: underline;
}
.navbar-brand img {
  max-height: 60px;
}

/* === RESPONSYWNOŚĆ === */
@media (max-width: 992px) {
  .hero-top-text {
    font-size: 20px;
    text-align: center;
  }

  .hero-text {
    font-size: 15px;
    text-align: center;
  }

  .hero-container-text {
    margin: 10px;
    padding: 20px;
  }
}

@media (max-width: 768px) {
  .hero-top-text {
    font-size: 18px;
  }

  .hero-text {
    font-size: 14px;
  }

  .hero-container-text {
    padding: 15px;
  }
}

@media (max-width: 500px) {
  .hero-top-text {
    font-size: 16px;
  }

  .hero-text {
    font-size: 13px;
  }

  .hero-container-text {
    padding: 10px;
    margin: 5px;
  }
}
