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

header {
  background-color: rgba(244, 146, 234, 0.8);
  color: #fff;
  padding: 10px;
  display: inline-block;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  position: fixed;
  max-width: 1800px;
  max-height: 200px;
  left: 0;
  right: 0;
  margin-left: auto;
  margin-right: auto;
  z-index: 25;
  margin-top: -480px;
}

.logo {
  margin-left: 50px;
  margin-right: 10px;
  position: relative;
  margin-top: 25px;
  
}

.logo img {
  width: 150px;
  height: auto;
  margin-right: 10px;
}

.menu-toggle {
  display: none;
  cursor: pointer;
  z-index: 1000;
}

.menu-toggle .hamburger {
  width: 25px;
  height: 3px;
  background-color: #fff;
  margin: 3px 0;
  transition: all 0.3s ease;
}

.menu-toggle.active .hamburger:nth-child(1) {
  transform: rotate(45deg) translate(4px, 4px);
}

.menu-toggle.active .hamburger:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active .hamburger:nth-child(3) {
  transform: rotate(-45deg) translate(4px, -4px);
}

nav.menu {
  display: flex;
  justify-content: flex-end;
}

nav.menu ul {
  list-style-type: none;
  display: fixed;
  margin: 0; /* Add this line to remove default margin */
  padding: 0; /* Add this line to remove default padding */
}

nav.menu ul li {
  margin-right: 20px;
}

nav.menu ul li a {
  color: #fff;
  text-decoration: none;
}

.menu {
  display: none;
  position: fixed;
  top: 100%;
  left: 0;
  background-color: #2e066e;
  width: 100%;
  z-index: 1000;
}

.menu.active {
  display: flex;
  flex-direction: column;
}

.menu ul {
  padding: 0;
}

.menu ul li {
  padding: 10px 20px;
}

.menu ul li a {
  color: #fff;
  text-decoration: none;
}

@media only screen and (max-width: 600px) {
  .menu-toggle {
    display: block;
    position: fixed;
    top: 20px;
  }

  nav.menu {
    position: fixed;
    top: 0;
    right: 0;
    background-color: rgba(244, 146, 234, 0.8);
    padding: 20px;
    max-height: 100vh;
    overflow-y: auto;
    width: calc(100% - 60px);
    flex-direction: column;
    align-items: flex-start;
    display: none;
  }

  nav.menu.active {
    display: flex;
  }

  nav.menu ul {
    flex-direction: column;
    align-items: flex-start;
  }

  nav.menu ul li {
    margin-right: 0;
    margin-bottom: 10px;
  }
}

main {
  text-align: center;
  margin-top: 500px;
  
}

h1 {
  color: #4d07e3;
  font-size: xx-large;
  font-family: "Fugaz One", sans-serif;
  font-weight: 200px;
}

.loader-text {
  font-size: 150px;
  text-align: center;
  color: transparent;
  background: linear-gradient(to right, #00f, #0ff, #f00);
  background-clip: text;
  -webkit-background-clip: text;
  animation: glitch 2s linear infinite 5s, slideIn 2s ease-in-out infinite alternate;
  font-family: 'Bangers', cursive;
  margin-top: -180px;
 
}

.s {
  color: #fff;
}

@keyframes slideIn {
  0% {
      transform: translateY(-10%);
  }
  100% {
      transform: translateY(10%);
  }
}

h2 {
  color: whitesmoke;
  font-family: "Oleo Script Swash Caps", sans-serif;
  font-weight: 400;
}

@font-face {
  font-family: 'Oleo Script Swash Caps';
  src: url('fonts/OleoScriptSwashCaps-Regular.ttf') format('truetype');
}

h3 {
  color: #e9a513;
  font-family: "Comic Neue", cursive;
  font-weight: 400;
  margin-bottom: -15px;
}

h4 {
  color: #45a049;
  font-family: "Fantasy";
  font-weight: 400;
}

.superman-gif {
  display: block;
  margin: auto;
  margin-top: 20px;
}

#slideshow img {
  max-width: 50%;
  height: auto;
  margin-right: auto;
}

img {
  max-width: 100%;
  height: auto;
}

video {
  max-width: 50%;
  height: auto;
  text-align: center;
  margin-top: 20px;
}

.buy-button,
.catalog-button,
.imprint-button,
.contact-button a {
  display: inline-block;
  padding: 10px 20px;
  font-size: 16px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  text-decoration: none;
}

.buy-button {
  background-color: #4CAF50;
  color: white;
}

.buy-button:hover {
  background-color: #45a049;
}

.catalog-button {
  background-color: #ff5733;
  color: white;
}

.catalog-button:hover {
  background-color: #e54d27;
}

.imprint-button {
  background-color: #008CBA;
  color: white;
}

.imprint-button:hover {
  background-color: #005f6b;
}

.contact-button a {
  background-color: #007bff;
  color: white;
}

.contact-button a:hover {
  background-color: #0056b3;
}

.social-icons {
  text-align: center;
}

.social-icons a {
  margin: 0 10px;
}

.image-container {
  display: inline-block;
  justify-content: space-between;
  animation: move-and-rotate 10s linear infinite;
}

.image-container img {
  max-width: 100px;
  height: auto;
  transition: transform 0.5s ease;
}

@keyframes move-and-rotate {
  0%, 100% {
      transform: translateX(0) rotate(0);
  }
  30% {
      transform: translateX(30%) rotate(0);
  }
  45% {
      transform: translateX(50%) rotate(180deg);
  }
  50%, 55% {
      transform: translateX(50%) rotate(180deg);
  }
  100% {
      transform: translateX(100%) rotate(0);
  }
}

.rotating-shape {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: radial-gradient(circle, yellow 25%, red 75%);
  animation: rotate 4s linear infinite;
}

.caption {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 24px;
  font-weight: bold;
  color: black;
  opacity: 0;
  animation: fade 4s linear infinite;
}

@keyframes rotate {
  from {
      transform: rotate(0deg);
  }
  to {
      transform: rotate(360deg);
  }
}

@keyframes fade {
  0%, 100% {
      opacity: 0;
  }
  50% {
      opacity: 1;
  }
}

footer {
  background-color: #d61aeb;
  padding: 20px;
  color: #fff;
  text-align: center;
  display: flex;
  justify-content: space-between;
}

#footer-impressum,
#footer-katalog {
  margin-top: 20px;
}

.contact-button a {
  display: inline-block;
  margin-top: 10px;
  background-color: #d4eb0c;
  color: #00f;
  text-decoration: none;
  border-radius: 5px;
}

.contact-button a:hover {
  background-color: #0056b3;
}

.menu-toggle {
  display: none;
  cursor: pointer;
  z-index: 1000;
}

.menu-toggle .hamburger {
  width: 25px;
  height: 3px;
  background-color: #fff;
  margin: 3px 0;
  transition: all 0.3s ease;
}

.menu-toggle.active .hamburger:nth-child(1) {
  transform: rotate(45deg) translate(4px, 4px);
}

.menu-toggle.active .hamburger:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active .hamburger:nth-child(3) {
  transform: rotate(-45deg) translate(4px, -4px);
}

nav.menu {
  display: flex;
  justify-content: flex-end;
}

nav.menu ul {
  list-style-type: none;
  display: flex;
}

nav.menu ul li {
  margin-right: 20px;
}

nav.menu ul li a {
  color: #fff;
  text-decoration: none;
}

.menu {
  display: none;
  position: fixed;
  top: 100%;
  left: 0;
  background-color: #2e066e;
  width: 100%;
  z-index: 1000;
  visibility: hidden;
}

.menu.active {
  display: flex;
  flex-direction: column;
}

.menu ul {
  list-style-type: none;
  padding: 0;
}

.menu ul li {
  padding: 10px 20px;
}

.menu ul li a {
  color: #fff;
  text-decoration: none;
}

@media only screen and (max-width: 600px) {
  .menu {
    position: absolute;
    width: calc(100% - 40px);
    max-height: calc(100vh - 40px);
    overflow-y: auto;
  }

  .menu ul li {
    margin-bottom: 10px;
  }
}
nav.menu {
  display: none;
  justify-content: center;
  align-items: center;
  background-color: rgba(0, 0, 0, 0.5);
  padding: 10px 0;
}

nav.menu ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  display: flex;
}

nav.menu ul li {
  margin: 0 10px;
}

nav.menu ul li a {
  color: #fff;
  text-decoration: none;
  padding: 5px 10px;
}

nav.menu ul li a:hover {
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 5px;
}