* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.hero-banner {
  position: relative;
  background-image: url('../images/narancskurva-pica.png');
  background-size: cover;
  background-position: center;
  width: 100%;
  min-height: 100vh;
  max-height: 100vh;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
  padding: 20px;
}

.hero-content {
  max-width: 800px;
  padding: 20px;
}

.cim {
  font-size: clamp(2rem, 8vw, 50px);
  color: white;
  margin-bottom: 15px;
  letter-spacing: 5px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.motto1, .motto2 {
  font-size: clamp(1rem, 3vw, 1.3rem);
  margin: 8px 0;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

@media (max-width: 768px) {
  .hero-banner {
    min-height: 80vh;
    height: auto;
    padding: 40px 20px;
  }
  
  .cim {
    letter-spacing: 3px;
  }
}