body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f4f7f9;
  color: #333;
}

header.hero {
  background: #005a87;
  color: white;
  text-align: center;
  padding: 60px 20px;
}

.logo {
  max-width: 300px;
  margin-bottom: 20px;
}

.about, .contact {
  padding: 40px 20px;
  max-width: 800px;
  margin: auto;
  background-color: white;
  border-radius: 8px;
  margin-top: 20px;
}

h2 {
  color: #005a87;
}

.contact-form {
  display: flex;
  flex-direction: column;
}

.contact-form label {
  margin: 10px 0 5px;
}

.contact-form input,
.contact-form textarea {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.contact-form button {
  margin-top: 20px;
  padding: 12px;
  background-color: #005a87;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.contact-form button:hover {
  background-color: #004a6f;
}

footer {
  text-align: center;
  padding: 20px;
  font-size: 0.9em;
  background-color: #eee;
  margin-top: 40px;
}

.video-banner {
  width: 100%;
  height: 600px;
  overflow: hidden;
  position: relative;
}

.video-banner video {
  object-position: center -113px;
  width: 100%;
  height: auto;
  object-fit: cover;
}


.large-logo {
  max-width: 600px;
}

.impressum {
  padding: 40px 20px;
  max-width: 800px;
  margin: 40px auto;
  font-size: 0.95em;
  background-color: #ffffff;
  border-radius: 8px;
  color: #333;
}


.shop-links {
  padding: 40px 20px;
  max-width: 800px;
  margin: 20px auto;
  font-size: 1em;
  background-color: #ffffff;
  border-radius: 8px;
  text-align: center;
}

.shop-links a {
  color: #005a87;
  font-weight: bold;
  text-decoration: none;
}

.shop-links a:hover {
  text-decoration: underline;
}


.shop-buttons {
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: center;
  margin-top: 20px;
}

.shop-button {
  color: white !important;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transition: transform 0.2s ease, background-color 0.3s ease;

  display: inline-block;
  padding: 12px 24px;
  background-color: #005a87;
  color: white;
  text-decoration: none;
  font-weight: bold;
  border-radius: 8px;
  transition: background-color 0.3s ease;
  font-size: 1.1em;
}

.shop-button:hover {
  transform: scale(1.05);

  background-color: #004266;
  color: white;
}

@media (max-width: 768px) {
  .video-banner {
    height: 300px;
  }

  .logo.large-logo {
    max-width: 80%;
  }

  .shop-buttons {
    width: 100%;
  }

  .shop-button {
    width: 90%;
    font-size: 1em;
  }
}
