.section-home {
  height: 100vh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  text-align: center;
  padding: 0 2rem;
}

.home-content {
  z-index: 2;
  color: #0d0d0d;
}

.section-home h1 {
  font-size: 3rem;
  font-family: 'Outfit', sans-serif;
  margin-bottom: 1rem;
}

.section-home p {
  font-size: 1.3rem;
  font-family: 'Inter', sans-serif;
  margin-bottom: 2rem;
}

.cta-home {
  padding: 0.75rem 2rem;
  font-size: 1rem;
  font-family: 'Inter', sans-serif;
  background: #2196f3;
  color: #fff;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s ease;
}

.cta-home:hover {
  background: #1976d2;
}

/* Dekorativní animace */
.background-animation {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  overflow: hidden;
}

.background-animation .glow {
  width: 200%;
  height: 200%;
  position: absolute;
  top: -50%;
  left: -50%;
  background: radial-gradient(circle, rgba(33,150,243,0.15) 0%, transparent 70%);
  animation: pulse 6s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
    opacity: 0.7;
  }
  50% {
    transform: scale(1.2);
    opacity: 1;
  }
}

@media (max-width: 768px) {
  .section-home {
    height: auto;
    padding: 4rem 1.5rem 2rem 1.5rem;
    flex-direction: column;
    justify-content: flex-start;
  }

  .section-home h1 {
    font-size: 2rem;
    line-height: 1.2;
  }

  .section-home p {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }

  .cta-home {
    font-size: 0.95rem;
    padding: 0.6rem 1.5rem;
  }

  .background-animation .glow {
    width: 300%;
    height: 300%;
    top: -100%;
    left: -100%;
  }
}
@media (max-width: 768px) {
  .home-content {
    max-width: 100%;
    width: 100%;
    text-align: center;
    padding: 0 1rem;
    box-sizing: border-box;
  }

  .section-home h1 {
    font-size: 1.8rem;
    line-height: 1.2;
    word-break: break-word;
  }

  .section-home p {
    font-size: 0.95rem;
    line-height: 1.4;
  }
}

