body {
  font-family: 'Montserrat', Arial, sans-serif;
  margin: 0;
  padding: 0;
  background: linear-gradient(135deg, #e0e7ff 0%, #f0fdfa 100%);
  color: #222;
  min-height: 100vh;
}

header {
  background: linear-gradient(90deg, #0099ff 0%, #00c6a7 100%);
  color: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.07);
  padding: 0;
}

nav {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 2rem;
}

nav ul {
  display: flex;
  gap: 2.5rem;
  list-style: none;
  margin: 0;
  padding: 0.5rem 0;
  justify-content: flex-end;
  align-items: center;
}

nav ul li a {
  text-decoration: none;
  color: #fff;
  font-weight: 600;
  font-size: 1.08rem;
  padding: 0.5rem 1.2rem;
  border-radius: 6px;
  transition: background 0.18s, color 0.18s, box-shadow 0.18s;
  letter-spacing: 0.5px;
  position: relative;
}

nav ul li a:hover, nav ul li a:focus {
  background: rgba(255,255,255,0.13);
  color: #ffd700;
  box-shadow: 0 2px 8px rgba(0,153,255,0.10);
}

nav ul li:first-child a {
  font-weight: 700;
  font-size: 1.15rem;
  color: #fff;
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 60vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: #111;
}

.background-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100%;
  min-height: 60vh;
  object-fit: cover;
  z-index: 1;
  opacity: 0.32;
  filter: blur(0.7px) grayscale(30%);
  pointer-events: none;
  background: #000;
  transition: opacity 0.3s, filter 0.3s;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #f3f3f3;
  background: rgba(34, 34, 34, 0.22);
  border-radius: 1.2rem;
  padding: 2rem 1.2rem 1.2rem 1.2rem;
  box-shadow: 0 4px 24px 0 rgba(0,0,0,0.08);
  margin-top: 2rem;
  max-width: 95vw;
}

.hero-content h1 {
  font-size: 2.1rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  margin-bottom: 0.6rem;
  color: #f3f3f3;
  text-shadow: 0 2px 12px rgba(0,0,0,0.13);
}

.hero-content p {
  font-size: 1.08rem;
  color: #e0e0e0;
  margin-bottom: 1.1rem;
}

.cta-btn {
  background: linear-gradient(90deg, #fff 60%, #e6e6e6 100%);
  color: #222;
  border: none;
  border-radius: 2rem;
  padding: 0.7rem 2.2rem;
  font-size: 1.05rem;
  font-weight: 600;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  opacity: 0.93;
  transition: background 0.2s, color 0.2s, opacity 0.2s, box-shadow 0.2s;
}

.cta-btn:hover {
  background: linear-gradient(90deg, #222 60%, #444 100%);
  color: #fff;
  opacity: 1;
  box-shadow: 0 4px 16px rgba(0,0,0,0.13);
}

.hero nav {
  position: relative;
  z-index: 2;
  margin-top: 1.5rem;
}

.hero nav ul {
  background: rgba(34,34,34,0.18);
  border-radius: 1.5rem;
  padding: 0.5rem 1.5rem;
  display: flex;
  gap: 1.2rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  backdrop-filter: blur(1.5px);
  flex-wrap: wrap;
  justify-content: center;
}

.hero nav ul li a {
  color: #e0e0e0;
  font-weight: 500;
  text-decoration: none;
  font-size: 1.05rem;
  opacity: 0.82;
  transition: color 0.2s, opacity 0.2s;
}

.hero nav ul li a:hover {
  color: #fff;
  opacity: 1;
}

@media (max-width: 700px) {
  .hero {
    min-height: 40vh;
  }
  .background-video {
    min-height: 40vh;
    height: 100%;
    width: 100vw;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    object-fit: cover;
  }
  .hero-content {
    padding: 1.2rem 0.5rem 1rem 0.5rem;
    margin-top: 1.2rem;
    max-width: 99vw;
  }
  .hero-content h1 {
    font-size: 1.3rem;
  }
  .hero-content p {
    font-size: 0.98rem;
  }
  .hero nav ul {
    flex-direction: column;
    align-items: center;
    gap: 0.2rem;
    padding: 0.3rem 0.5rem;
    font-size: 1.08rem;
    background: rgba(34,34,34,0.22);
    min-width: 120px;
  }
  .hero nav ul li {
    width: 100%;
    text-align: center;
    margin: 0.1rem 0;
  }
  .hero nav ul li a {
    display: block;
    padding: 0.5rem 0;
    width: 100%;
  }
}

main {
  max-width: 800px;
  margin: 2rem auto;
  background: #fff;
  padding: 2rem;
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
  animation: fadeInUp 1.2s;
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

main img {
  display: block;
  margin: 0 auto 1.5rem auto;
  border-radius: 12px;
  max-width: 100%;
  height: auto;
  box-shadow: 0 2px 12px rgba(0,153,255,0.10);
  transition: transform 0.2s;
}

main img:hover {
  transform: scale(1.03) rotate(-2deg);
}

section h2 {
  margin-top: 0;
  color: #0099ff;
}

footer {
  background: #222;
  color: #fff;
  text-align: center;
  padding: 1rem 0;
  position: relative;
  width: 100%;
  bottom: 0;
  letter-spacing: 1px;
  font-size: 1rem;
  box-shadow: 0 -2px 8px rgba(0,0,0,0.05);
}

.footer-impressum {
  margin-top: 0.5rem;
  font-size: 0.95em;
  color: #888;
}

.footer-impressum a {
  color: #888;
  text-decoration: underline;
}

.gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
  margin-bottom: 2rem;
}

.gallery-item {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0,153,255,0.10);
  overflow: hidden;
  max-width: 320px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.2s, box-shadow 0.2s;
}

.gallery-item:hover {
  transform: scale(1.03) rotate(-1deg);
  box-shadow: 0 6px 24px rgba(0,153,255,0.18);
}

.gallery-item img, .gallery-item video {
  width: 100%;
  height: auto;
  display: block;
  border-bottom: 1px solid #eee;
}

.gallery-caption {
  padding: 1rem;
  text-align: center;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.buy-btn {
  background: #0099ff;
  color: #fff;
  border: none;
  border-radius: 20px;
  padding: 0.5rem 1.5rem;
  font-weight: bold;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
  cursor: pointer;
  margin-top: 0.5rem;
}

.buy-btn:hover {
  background: #00c6a7;
  color: #fff;
}

.pricing-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0 2rem 0;
  text-align: center;
}

.pricing-list li {
  background: #f0fdfa;
  margin: 0.5rem auto;
  padding: 1rem 2rem;
  border-radius: 8px;
  max-width: 400px;
  font-size: 1.1rem;
  box-shadow: 0 1px 4px rgba(0,153,255,0.05);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 400px;
  margin: 1rem auto 2rem auto;
  background: #f8fafc;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,153,255,0.07);
}

.contact-form label {
  font-weight: 500;
}

.contact-form input, .contact-form textarea {
  border: 1px solid #ccc;
  border-radius: 6px;
  padding: 0.5rem;
  font-size: 1rem;
  width: 100%;
}

.contact-form button {
  background: #0099ff;
  color: #fff;
  border: none;
  border-radius: 20px;
  padding: 0.7rem 2rem;
  font-weight: bold;
  font-size: 1.1rem;
  cursor: pointer;
  transition: background 0.2s;
}

.contact-form button:hover {
  background: #00c6a7;
}

.news-article {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
  max-width: 800px;
  margin: 2rem auto;
  padding: 2rem;
  animation: fadeInUp 1.2s;
}

.news-article h2 {
  color: #0099ff;
  margin-top: 0;
}

.news-article em {
  color: #888;
  font-size: 1rem;
}

#scroll-video-section {
  position: relative;
  min-height: 60vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: linear-gradient(120deg, rgba(30,30,40,0.82) 0%, rgba(20,20,30,0.72) 100%);
  overflow: hidden;
  margin: 3rem 0 0 0;
  padding: 0;
}

#scroll-video-section video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  opacity: 0.32;
  filter: blur(1.5px) grayscale(30%);
  pointer-events: none;
  background: #000;
  transition: opacity 0.3s, filter 0.3s;
}

#scroll-video-section h2,
#scroll-video-section p {
  position: relative;
  z-index: 2;
  color: #f3f3f3;
  text-shadow: 0 2px 8px rgba(0,0,0,0.18);
}

#scroll-video-section h2 {
  font-size: 2rem;
  margin-top: 2.5rem;
  margin-bottom: 1.2rem;
}

#scroll-video-section p {
  font-size: 1.05rem;
  margin-bottom: 2.5rem;
}
