/* Hero Section Styles */
.hero {
  position: relative;
  width: 100%;
  height: 100vh; 
  background: linear-gradient(135deg, #000428, #004e92);
  overflow: hidden;
  display: flex;
  align-items: center; 
  justify-content: center;
}
/* Content wrapper with black background and low opacity */
.content-wrapper {
  background-color: rgba(0, 0, 0, 0.6); 
  padding: 20px;
  border-radius: 8px;
  text-align: center;
  max-width: 1200px; 
  margin: 0 auto; 
  z-index: 2; 
  position: relative;
  width: 50%; 
  height: auto; 
}
/* Logo styling */
.logo-wrapper {
  text-align: center;
  margin-bottom: 20px;
}

.home-logo {
  max-width: 450px; 
  height: auto;
}

.content h1, .content h2, .content h3 {
  color: #fff; 
  margin: 10px 0;
  font-size: 2.5rem;
}
/* Swiper Slider */
.swiper-container {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
.swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/* Remove zoom effect on hover */
.swiper-slide img:hover {
  transform: none;
}
/* Button Wrapper */
.button-wrapper {
  margin-top: 20px;
  text-align: center; 
}
/* Common Button Styling */
.nav-button-btn, .nav-button-btn-kontakt {
  display: inline-block;
  padding: 12px 30px;
  margin-right: 15px;
  font-size: 1.8rem;
  font-weight: bold;
  color: #fff;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 30px;
  position: relative;
  background-size: 200% 200%; 
  transition: background-position 0.5s ease, transform 0.3s ease;
  cursor: pointer;
}
/* Gradient Animation for Buttons */
.nav-button-btn, .nav-button-btn-kontakt {
  background: linear-gradient(45deg, #007bff, #00c6ff, #1be1ff, #007bff);
  animation: gradientShift 3s ease infinite;
}
@keyframes gradientShift {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
/* Hover Effect on Buttons */
.nav-button-btn:hover, .nav-button-btn-kontakt:hover {
  background-position: 100% 0;
  transform: scale(1.05);
}
/* Highlight for "Kontakt" Button */
.nav-button-btn-kontakt {
  border: 2px solid #fff;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.8); 
}
/* Hover Effect for "Kontakt" Button */
.nav-button-btn-kontakt:hover {
  box-shadow: 0 0 40px rgba(255, 255, 255, 1); 
  transform: scale(1.1); 
}
/* Media Queries for Mobile Responsiveness */
@media screen and (max-width: 768px) {
  .content-wrapper {
    width: 90%;
    padding: 15px;
    height: auto; 
  }

  /* Adjust font sizes */
  .content h1, .content h2, .content h3 {
    font-size: 1.3rem;
  }
  /* Adjust logo size */
  .home-logo {
    max-width: 80%;
  }

  /* Adjust button sizes and stack vertically */
  .nav-button-btn, .nav-button-btn-kontakt {
    font-size: 1.1rem;
    padding: 10px 20px;
    margin-right: 0;
    margin-bottom: 10px;
  }

  /* Stack buttons vertically */
  .button-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .hero {
    height: 100vh; 
    padding: 0; 
    align-items: center; 
  }
}
