body {
  margin: 0;
  font-family: 'Roboto', sans-serif;
  background: #000;
  color: #fff;
}

/* =========================
   LANGUAGE SWITCH
========================= */
.lang-switch {
  display: flex;
  gap: 6px;
}

.lang-switch img {
  height: 20px;
}

.lang-switch img:hover {
  transform: scale(1.1);
  opacity: 0.8;
}

/* =========================
   TYPOGRAPHY
========================= */
h1, h2, h3, .menu a, .menu span {
  font-family: 'Oswald', sans-serif;
  letter-spacing: 1px;
}

h1, h2 {
  text-transform: uppercase;
}

/* =========================
   HEADER
========================= */
.header-bar {
  position: fixed;
  top: 0;
  width: 100%;
  height: 70px;
  display: flex;
  align-items: center;
  background: rgba(0,0,0,0.8);
  z-index: 10000;
}

.header-left { width: 60px; display: flex; justify-content: center; }
.header-center { flex: 1; display: flex; justify-content: center; }
.header-right { width: 80px; display: flex; justify-content: center; }

.header-center img {
  max-width: 300px;
  width: 100%;
}

/* =========================
   HERO (FIXED)
========================= */
.hero {
  position: relative;
  width: 100%;
  height: 300px;
  margin-top: 70px;
  overflow: hidden;
  background: black;
}

.hero-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
  z-index: 1;
}

.hero-slider {
  position: relative;
  width: 100%;
  height: 100%;
}

.hero img {
  position: absolute;
  max-width: 90%;
  max-height: 90%;
  width: auto;
  height: auto;

  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.4);

  opacity: 0;
  transition: opacity 1.5s ease, transform 3.5s ease;

  object-fit: contain;
  z-index: 2;
}

.hero img.active {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.hero img.final {
  max-width: 70%;
  max-height: 70%;
  z-index: 3;
}

/* =========================
   🔥 MENU BUTTON FIX
========================= */
.menu-toggle {
  position: fixed;
  top: 15px;
  left: 20px;
  z-index: 11000;
  width: 30px;
  height: 22px;
  cursor: pointer;
}

/* Linien */
.menu-toggle span {
  display: block;
  height: 3px;
  width: 100%;
  background: white;
  margin: 5px 0;
  transition: all 0.3s ease;
}

/* 🔥 Hover (rot) */
.menu-toggle:hover span {
  background: #ff4444;
}

/* 🔥 X Animation */
.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

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

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

/* =========================
   MENU
========================= */
.menu {
  position: fixed;
  top: 70px;
  left: 20px;
  background: rgba(20,20,20,0.95);
  padding: 15px 20px;
  border-radius: 10px;
  min-width: 220px;
  z-index: 12000;
  transform: translateX(-120%);
  opacity: 0;
  transition: 0.3s;
}

.menu.show {
  transform: translateX(0);
  opacity: 1;
}

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

.menu li {
  margin: 10px 0;
}

.menu a,
.menu span {
  color: #ddd;
  text-decoration: none;
  display: flex;
  justify-content: space-between;
  padding: 6px 8px;
}

.menu a:hover,
.menu span:hover {
  background: rgba(255,50,50,0.15);
  color: #fff;
}

/* SUBMENU */
.submenu {
  display: none;
  padding-left: 20px;
}

.has-sub.active .submenu {
  display: block;
}

/* ARROW */
.arrow {
  transition: 0.4s;
}

.has-sub.active .arrow {
  transform: rotate(270deg);
  color: #ff4444;
}

/* =========================
   MAIN
========================= */
main {
  max-width: 900px;
  margin: 0 auto;
  padding: 100px 20px 40px;
  text-align: center;
}

/* =========================
   STARTSEITE
========================= */
.welcome {
  display: flex;
  justify-content: center;
  padding: 40px 20px;
}

.welcome-content {
  max-width: 700px;
  text-align: center;
}

.subtitle { color: #ccc; }
.text { color: #aaa; line-height: 1.6; }

/* =========================
   CONTACT
========================= */
.contact {
  max-width: 600px;
  margin: 0 auto;
}

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

.contact-form input,
.contact-form textarea {
  padding: 10px;
  background: #111;
  border: 1px solid #333;
  color: white;
  border-radius: 5px;
}

.contact-form textarea {
  min-height: 120px;
}

.contact-form button {
  padding: 12px;
  background: #ff4444;
  border: none;
  color: white;
  border-radius: 5px;
}

/* CAPTCHA */
.captcha-box {
  display: flex;
  align-items: center;
  gap: 10px;
}

.captcha-box img {
  height: 40px;
}

/* ERROR / SUCCESS */
.error-msg {
  color: #ff4444;
  background: rgba(255,50,50,0.1);
  border: 1px solid rgba(255,50,50,0.5);
  padding: 10px;
  margin-bottom: 15px;
  animation: errorPulse 1.8s infinite;
}

.success-msg {
  color: #4cff88;
  background: rgba(0,255,120,0.1);
  border: 1px solid rgba(0,255,120,0.5);
  padding: 10px;
  margin-bottom: 15px;
  animation: successPulse 2s infinite;
}

@keyframes errorPulse {
  0% { box-shadow: 0 0 0 rgba(255,50,50,0.2); }
  50% { box-shadow: 0 0 12px rgba(255,50,50,0.6); }
  100% { box-shadow: 0 0 0 rgba(255,50,50,0.2); }
}

@keyframes successPulse {
  0% { box-shadow: 0 0 0 rgba(0,255,120,0.2); }
  50% { box-shadow: 0 0 10px rgba(0,255,120,0.6); }
  100% { box-shadow: 0 0 0 rgba(0,255,120,0.2); }
}

/* =========================
   BAND / STORY
========================= */
.band-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
}

.band-member img {
  max-width: 220px;
  width: 100%;
  border-radius: 10px;
}

.band-header-image img,
.story-image img {
  max-width: 700px;
  width: 100%;
}

/* =========================
   MOBILE
========================= */
@media (max-width: 600px) {
  .download-item {
    flex-direction: column;
  }
}

/* =========================
   HOME BUTTONS (UPGRADE)
========================= */
.home-buttons {
  margin-top: 30px;
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* Basis – überschreibt globale Link-Styles */
.home-buttons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 14px 26px;
  border-radius: 10px;

  font-family: 'Oswald', sans-serif;
  font-size: 16px;
  letter-spacing: 1px;

  text-decoration: none;
  cursor: pointer;

  transition: all 0.25s ease;
}

/* 🔥 Hauptbutton */
.btn-primary {
  background: linear-gradient(135deg, #ff4444, #880000);
  color: #fff;
  border: none;

  box-shadow: 0 0 15px rgba(255, 50, 50, 0.6),
              inset 0 0 10px rgba(255,255,255,0.05);
}

.btn-primary:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 0 25px rgba(255, 50, 50, 1);
}

/* ⚡ Secondary Button */
.btn-secondary {
  background: rgba(255,255,255,0.05);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.25);

  box-shadow: 0 0 10px rgba(255,255,255,0.1);
}

.btn-secondary:hover {
  background: rgba(255,50,50,0.15);
  border-color: #ff4444;
  color: #ff4444;

  transform: translateY(-2px);
  box-shadow: 0 0 20px rgba(255, 50, 50, 0.6);
}

/* =========================
   MOBILE SPACING FIX (STARTSEITE)
========================= */
@media (max-width: 600px) {

  /* Hero etwas kompakter */
  .hero {
    height: 240px;
    margin-top: 60px;
  }

  /* Welcome enger nach oben */
  .welcome {
    padding: 25px 15px 20px;
  }

  .welcome-content h1 {
    font-size: 28px;
    margin-bottom: 10px;
  }

  .subtitle {
    font-size: 15px;
    margin-bottom: 10px;
  }

  .text {
    font-size: 14px;
  }

  /* Buttons näher ran */
  .home-buttons {
    margin-top: 15px;
  }

}