@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  background: #121212;
  color: #eee;
  line-height: 1.6;
  scroll-behavior: smooth;
}

header {
   padding-top: max(env(safe-area-inset-top), 20px);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 80px;
  background: rgba(26, 26, 26, 0.7);
  backdrop-filter: blur(8px);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.7);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 120px;
}

.header-content {
  width: 100%;
  max-width: 1200px;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

header .logo {
  height: 40px; /* oder was für dich passt */
  width: auto;
  object-fit: contain;
}


nav a {
  margin: 0 15px;
  color: #bbb;
  text-decoration: none;
  font-weight: 500;
  position: relative;
  transition: color 0.3s ease;
  border-radius: 12px;
  padding: 6px 12px;
}

nav a:hover {
  color: #5ef5d5;
  background-color: rgba(94, 245, 213, 0.15);
  box-shadow: 0 6px 12px rgba(94, 245, 213, 0.25);
}

main {
  max-width: 900px;
  margin: 40px auto;
  padding: 100px 20px 20px 20px; /* Oben 100px Platz für fixierten Header */
}


h2 {
  font-size: 2rem;
  color: #5ef5d5;
  margin-bottom: 20px;
  border-left: 6px solid #5ef5d5;
  padding-left: 12px;
  border-radius: 0 12px 12px 0;
}

.beats {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}

@media (min-width: 600px) {
  .beats {
    grid-template-columns: repeat(3, 1fr);
  }
}

.beat-card {
  display: flex;
  flex-direction: column;
  background: #2b2b2b;
  border-radius: 24px;
  box-shadow: 0 8px 25px rgba(94, 245, 213, 0.12);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.beat-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 40px rgba(94, 245, 213, 0.25);
}

.beat-cover {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-top-left-radius: 24px;
  border-top-right-radius: 24px;
}

.beat-info {
  padding: 20px;
  text-align: center;
  border-bottom-left-radius: 24px;
  border-bottom-right-radius: 24px;
}

.beat-info h3 {
  margin-bottom: 10px;
  color: #5ef5d5;
  font-weight: 700;
  font-size: 1.2rem;
}

audio {
  width: 100%;
  margin-top: 10px;
  border-radius: 16px;
  outline: none;
  background: #3a3a3a;
  box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.5);
}

form {
  background: #2b2b2b;
  padding: 30px;
  border-radius: 24px;
  box-shadow: 0 10px 30px rgba(94, 245, 213, 0.1);
}

form label {
  display: block;
  margin-bottom: 10px;
  font-weight: 600;
  color: #ccc;
}

form input,
form textarea {
  width: 100%;
  padding: 14px 18px;
  margin-bottom: 25px;
  border: none;
  border-radius: 20px;
  background: #3a3a3a;
  color: #eee;
  font-size: 1rem;
  transition: background 0.3s ease;
}

form input:focus,
form textarea:focus {
  outline: 2px solid #5ef5d5;
  background: #444;
}

form input[type="submit"] {
  background: #5ef5d5;
  color: #111;
  font-weight: 700;
  cursor: pointer;
  border-radius: 30px;
  padding: 14px 0;
  transition: background 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 6px 18px rgba(94, 245, 213, 0.4);
}

form input[type="submit"]:hover {
  background: #42c3aa;
  box-shadow: 0 8px 22px rgba(66, 195, 170, 0.6);
}

footer {
  text-align: center;
  padding: 25px 0;
  background: #1e1e1e;
  color: #777;
  font-size: 0.9rem;
  margin-top: 80px;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  box-shadow: inset 0 4px 12px rgba(0, 0, 0, 0.4);
}

.socials {
  margin-top: 50px;
  text-align: center;
}

.socials h3 {
  color: #5ef5d5;
  font-size: 1.6rem;
  margin-bottom: 12px;
}

.social-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 15px;
}

.social-links a {
  background: #5ef5d5;
  color: #111;
  text-decoration: none;
  padding: 14px 26px;
  border-radius: 40px;
  font-weight: 700;
  transition: background 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 5px 18px rgba(94, 245, 213, 0.3);
}

.social-links a:hover {
  background: #42c3aa;
  box-shadow: 0 8px 22px rgba(66, 195, 170, 0.6);
}

/* HERO BANNER */
.hero {
  height: auto; /* oder eine feste Höhe bei Bedarf */
  width: 100%;
  background: url("WhatsApp\ Image\ 2025-07-22\ at\ 13.01.52.jpeg") center top no-repeat;
  background-size: 100% auto;
  background-attachment: scroll; /* statt fixed */
  aspect-ratio: 3 / 1; /* z. B. für Panorama-Format */
}

/* Arrow Down */
.arrow-down {
  position: fixed;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  width: 30px;
  height: 30px;
  cursor: pointer;
  opacity: 0.8;
  z-index: 10;
  transition: opacity 0.4s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.arrow-down svg {
  width: 30px;
  height: 30px;
  stroke: #00ffe0;
  stroke-width: 3;
  fill: none;
  animation: bounce 2s infinite ease-in-out;
  transition: stroke 0.3s ease;
}

.arrow-down:hover svg {
  stroke: #00ccb8;
}

/* Animation: sanftes Auf- und Abbewegen */
@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(10px);
  }
}
.logo {
  height: 40px;
  width: auto;
  display: block;
}
header nav {
  display: flex;
  gap: 20px;
}
.logo-link {
  display: block;
  height: 40px;
}
@media (max-width: 600px) {
  .header-content {
    flex-direction: column;
    align-items: center;
    gap: 10px;
    height: auto;
    padding: 10px 20px;
  }

  header {
    height: auto;
    padding: 10px 0;
  }
}

