* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Arial Black", Arial, sans-serif;
  background: #000;
  color: #fff;
}

/* ===========================
   Hero mit Bild + Animation
   =========================== */

.hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  color: #fff;
}

/* Hintergrund: dein Foto + dunkler Verlauf + langsamer Zoom */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(115deg, rgba(0,0,0,0.75), rgba(0,0,0,0.35)),
    url("background.jpg");
  background-size: cover;
  background-position: center bottom;
  transform: scale(0.1);
  animation: bgMove 18s ease-in-out infinite alternate;
  z-index: 0;
}

@keyframes bgMove {
  0%   { transform: scale(1.08) translateY(0); }
  100% { transform: scale(1.12) translateY(-14px); }
}

/* ===========================
   Inhalt
   =========================== */

.content {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 60px;
}

/* Textblock */

.text {
  animation: riseIn 0.9s ease-out both;
}

@keyframes riseIn {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}

.text h1 {
    font-size: clamp(28px, 4vw, 64px);
    line-height: 1.1;
    text-transform: uppercase;
}

.text h1 span {
  display: block;
  font-weight: 900;
}

.cta {
  margin-top: 30px;
  font-size: 20px;
  font-family: Arial, sans-serif;
}

/* Mail-Link mit Shimmer-Effekt */

.cta a {
  position: relative;
  display: inline-block;
  color: #ffffff;
  font-weight: bold;
  text-decoration: none;
  border-bottom: 2px solid rgba(255,255,255,0.8);
  padding-bottom: 2px;
}

.cta a::after {
  content: "";
  position: absolute;
  left: -25%;
  top: 0;
  width: 25%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255,255,255,0.7),
    transparent
  );
  transform: skewX(-18deg);
  animation: shimmer 2.6s ease-in-out infinite;
}

@keyframes shimmer {
  0%   { left: -25%; opacity: 0; }
  20%  { opacity: 1; }
  60%  { left: 105%; opacity: 1; }
  100% { left: 105%; opacity: 0; }
}

/* Logo – weiß und leicht pulsierend */

.logo {
  text-align: center;
  animation: logoPulse 2.8s ease-in-out infinite;
  filter: drop-shadow(0 10px 35px rgba(0,0,0,0.6));
}

@keyframes logoPulse {
  0%, 100% { transform: translateY(0) scale(1); opacity: 1; }
  50%      { transform: translateY(-2px) scale(1.02); opacity: 0.98; }
}

.fish {
}

.logo-true {
    width: clamp(180px, 24vw, 420px);
    height: auto;
    filter: invert(1) brightness(1000%) contrast(100%);
}

/* ===========================
   Mobile
   =========================== */

@media (max-width: 768px) {

  .content {
    flex-direction: column;
    text-align: center;
    gap: 40px;
  }

  .text h1 {
    font-size: 34px;
  }

  .cta {
    font-size: 18px;
  }

  .fish {
    font-size: 90px;
  }

  .brand {
    font-size: 30px;
  }
}

/* Nutzer, die keine Animation wollen, respektieren */

@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
  }
}
