/* ======================
   HERO SECTION
====================== */
.hero {
  background: url('../Bilder/Cnc.png') center/cover no-repeat;
  position: relative;
  min-height: 25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 0;
}

.hero-overlay {
  position: relative;
  z-index: 1;
  padding: 1.25rem;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 0.625rem;
}

.hero p {
  font-size: 1.25rem;
}

.hero .btn {
  margin-top: 1.875rem;
  background: #0a2c3e;
  color: white;
  border: none;
  padding: 0.75rem 1.5rem;
  font-weight: bold;
  border-radius: 0.25rem;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.hero .btn:hover {
  background: #6db3e8;
  color: #0a2c3e;
  transform: translateY(-2px);
}

/* ======================
   MEDIA QUERIES – HERO
====================== */
@media (max-width: 480px) {
  .hero h1 {
    font-size: 2rem;
  }

  .hero p {
    font-size: 1rem;
  }

  .hero .btn {
    padding: 0.625rem 1.25rem;
    font-size: 0.9rem;
  }
}