/* === MM&T BRAND COLORS === */
:root {
  --mmt-orange: #FF6B00;      /* Primary MM&T Orange */
  --mmt-orange-light: #FF8533;
  --mmt-orange-glow: #FF6B0055;
  --mmt-dark: #0A0A0A;
  --mmt-gray: #1A1A1A;
  --mmt-text: #E0E0E0;
  --mmt-text-dim: #C8D2E8;
}

/* === RESET / BASE === */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Montserrat', Arial, sans-serif;
  background: var(--mmt-dark);
  color: var(--mmt-text);
  line-height: 1.6;
  text-align: center;
  scroll-behavior: smooth;
}

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

/* === HERO SECTION === */
.hero {
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: radial-gradient(circle at center, var(--mmt-orange-glow), var(--mmt-dark) 70%);
  padding: 20px;
}

.hero .logo {
  width: 380px;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 20px var(--mmt-orange-glow));
}

.hero h1 {
  font-size: 3.5rem;
  color: var(--mmt-orange);
  margin-bottom: 10px;
  letter-spacing: 4px;
  font-weight: 900;
  text-shadow: 0 0 30px var(--mmt-orange-glow);
}

.hero p {
  font-size: 1.2rem;
  color: var(--mmt-text-dim);
  margin-bottom: 10px;
}

.hero p.tagline {
  font-size: 1rem;
  color: var(--mmt-text);
  margin-bottom: 30px;
  opacity: 0.8;
}

/* CTA Container im Hero */
.hero .cta-buttons {
  display: flex;
  gap: 14px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

/* Buttons: perfekt zentriert */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 48px;
  padding: 0 22px;
  border-radius: 8px;
  background: var(--mmt-orange);
  color: var(--mmt-dark);
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  border: 2px solid transparent;
  transition: transform .15s ease, box-shadow .25s ease, background .25s ease, color .25s ease;
  will-change: transform;
}

/* SVG-Icon im Button */
.btn svg {
  width: 22px;
  height: 22px;
  display: block;
  flex: 0 0 22px;
}

/* Hover/Focus */
.btn:hover,
.btn:focus-visible {
  background: var(--mmt-orange-light);
  color: var(--mmt-dark);
  box-shadow: 0 0 0 3px var(--mmt-orange-glow), 0 0 20px var(--mmt-orange-glow);
  transform: translateY(-2px);
}

/* Dark-Ghost-Variante */
.btn--ghost {
  background: transparent;
  color: var(--mmt-text);
  border-color: var(--mmt-orange);
}

.btn--ghost:hover {
  border-color: var(--mmt-orange-light);
  color: #fff;
  background: rgba(255, 107, 0, 0.1);
}

/* Sprachumschalter */
.lang-switch {
  margin-top: 20px;
}

.lang-switch a {
  color: var(--mmt-text-dim);
  text-decoration: none;
  margin: 0 5px;
  transition: color 0.3s ease;
}

.lang-switch a:hover {
  color: var(--mmt-orange);
}

/* === SECTIONS === */
section {
  padding: 60px 20px;
}

h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: var(--mmt-orange);
  text-shadow: 0 0 20px var(--mmt-orange-glow);
}

h3 {
  font-size: 1.8rem;
  color: var(--mmt-orange-light);
  margin-bottom: 15px;
}

p {
  max-width: 800px;
  margin: 0 auto 20px auto;
  font-size: 1rem;
  color: var(--mmt-text);
}

.section-intro {
  font-size: 1.1rem;
  color: var(--mmt-text-dim);
  margin-bottom: 40px;
}

/* === ABOUT SECTION === */
.about-section {
  position: relative;
  background: url('/img/synth-hero.png') center center / cover no-repeat;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--mmt-text);
}

.about-section .about-overlay {
  background: rgba(0, 0, 0, 0.7);
  padding: 60px 20px;
  width: 100%;
  text-align: center;
}

.about-section .about-inner {
  max-width: 900px;
  margin: 0 auto;
  font-size: 1.25rem;
  line-height: 1.8;
}

.about-section .about-inner h2 {
  font-size: 3rem;
  color: var(--mmt-orange);
  margin-bottom: 30px;
  text-shadow: 0 0 30px var(--mmt-orange-glow);
}

.about-section p {
  font-size: 1.25rem !important;
  line-height: 1.8 !important;
  margin-bottom: 25px;
}

.about-section a {
  color: var(--mmt-orange-light);
  text-decoration: underline;
}

.about-section a:hover {
  color: var(--mmt-orange);
  text-shadow: 0 0 10px var(--mmt-orange-glow);
}

/* === TIMELINE SECTION === */
.timeline-section {
  background: linear-gradient(180deg, var(--mmt-dark) 0%, var(--mmt-gray) 50%, var(--mmt-dark) 100%);
  padding: 80px 20px;
}

.timeline {
  max-width: 1000px;
  margin: 40px auto 0;
  position: relative;
}

.timeline-item {
  background: rgba(255, 107, 0, 0.05);
  border-left: 4px solid var(--mmt-orange);
  padding: 25px 30px;
  margin-bottom: 30px;
  border-radius: 8px;
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.timeline-item:hover {
  transform: translateX(10px);
  box-shadow: 0 0 20px var(--mmt-orange-glow);
}

.timeline-item .year {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--mmt-orange);
  margin-bottom: 10px;
  letter-spacing: 2px;
}

.timeline-item h3 {
  font-size: 1.4rem;
  color: var(--mmt-text);
  margin-bottom: 10px;
}

.timeline-item p {
  font-size: 1rem;
  color: var(--mmt-text-dim);
  line-height: 1.6;
  max-width: 100%;
  margin: 0;
}

/* === MUSIC SECTION === */
#music {
  background: radial-gradient(circle at top, rgba(255, 107, 0, 0.1), var(--mmt-dark) 60%);
}

.grid {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.card {
  background: var(--mmt-gray);
  border-radius: 10px;
  flex: 1 1 250px;
  max-width: 800px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 2px solid transparent;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 20px var(--mmt-orange-glow);
  border-color: var(--mmt-orange);
}

/* === DISCOGRAPHY SECTION === */
.discography-section {
  background: var(--mmt-dark);
  padding: 80px 20px;
}

/* Filter Buttons */
.filter-buttons {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin: 30px 0 50px;
}

.filter-btn {
  background: transparent;
  color: var(--mmt-text-dim);
  border: 2px solid var(--mmt-orange);
  border-radius: 25px;
  padding: 10px 20px;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--mmt-orange);
  color: var(--mmt-dark);
  box-shadow: 0 0 15px var(--mmt-orange-glow);
}

/* Release Groups */
.release-group {
  margin-bottom: 60px;
}

.group-title {
  font-size: 2rem;
  color: var(--mmt-orange-light);
  margin-bottom: 30px;
  text-align: center;
  border-bottom: 2px solid var(--mmt-orange);
  padding-bottom: 15px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.releases-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 25px;
  max-width: 1200px;
  margin: 0 auto;
}

/* Release Card */
.release-card {
  background: var(--mmt-gray);
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 2px solid transparent;
}

.release-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 0 25px var(--mmt-orange-glow);
  border-color: var(--mmt-orange);
}

.release-cover {
  width: 100%;
  aspect-ratio: 1;
  overflow: hidden;
  background: #000;
}

.release-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.release-card:hover .release-cover img {
  transform: scale(1.1);
}

.release-info {
  padding: 20px;
  text-align: left;
}

.release-info h4 {
  font-size: 1.2rem;
  color: var(--mmt-text);
  margin-bottom: 8px;
  font-weight: 700;
}

.release-meta {
  font-size: 0.9rem;
  color: var(--mmt-text-dim);
  margin-bottom: 15px;
}

.release-links {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.release-links a {
  font-size: 0.85rem;
  color: var(--mmt-orange);
  text-decoration: none;
  padding: 6px 12px;
  border: 1px solid var(--mmt-orange);
  border-radius: 5px;
  transition: all 0.3s ease;
}

.release-links a:hover {
  background: var(--mmt-orange);
  color: var(--mmt-dark);
  box-shadow: 0 0 10px var(--mmt-orange-glow);
}

/* === AUDNOVA PROMO SECTION === */
.audnova-section {
  background: linear-gradient(135deg, rgba(26, 140, 255, 0.1) 0%, var(--mmt-dark) 50%, rgba(255, 107, 0, 0.1) 100%);
  padding: 80px 20px;
  border-top: 2px solid var(--mmt-orange);
  border-bottom: 2px solid #1A8CFF;
}

.promo-content {
  max-width: 800px;
  margin: 0 auto;
}

.promo-content h2 {
  background: linear-gradient(90deg, var(--mmt-orange) 0%, #1A8CFF 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 2.5rem;
  margin-bottom: 25px;
}

.promo-content p {
  font-size: 1.15rem;
  line-height: 1.8;
  margin-bottom: 20px;
}

.promo-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 30px;
}

/* === SOCIAL LINKS === */
.social-links {
  display: flex;
  justify-content: center;
  gap: 18px;
  margin-top: 25px;
  padding: 40px 20px;
}

.social-links a {
  font-size: 1.8rem;
  color: var(--mmt-orange);
  background: var(--mmt-gray);
  border: 1px solid var(--mmt-orange);
  border-radius: 50%;
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  text-decoration: none;
  box-shadow: 0 0 10px rgba(255, 107, 0, 0.2);
}

.social-links a:hover {
  color: var(--mmt-dark);
  background: var(--mmt-orange);
  box-shadow: 0 0 20px var(--mmt-orange-glow);
  transform: scale(1.15);
}

/* === STREAMING SECTION === */
.mmt-streaming {
  background-color: var(--mmt-gray);
  text-align: center;
  padding: 3rem 1rem;
  border-top: 1px solid var(--mmt-orange);
}

.mmt-streaming h2 {
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-size: 1.6rem;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.mmt-streaming .subtitle {
  color: var(--mmt-text-dim);
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}

.platform-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

.platform-links a {
  color: var(--mmt-orange);
  background: var(--mmt-dark);
  border-radius: 2rem;
  padding: 0.6rem 1.2rem;
  font-size: 0.95rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.25s ease;
  border: 1px solid var(--mmt-orange);
}

.platform-links a:hover {
  color: var(--mmt-dark);
  background: var(--mmt-orange);
  box-shadow: 0 0 15px var(--mmt-orange-glow);
}

.platform-links i {
  margin-right: 0.5rem;
  font-size: 1.1rem;
}

/* === FOOTER === */
footer {
  background: #000;
  padding: 30px 20px;
  font-size: 0.9rem;
  color: #7F8AAD;
  border-top: 2px solid var(--mmt-orange);
}

footer a {
  color: var(--mmt-orange);
  text-decoration: none;
  transition: color 0.3s ease;
}

footer a:hover {
  color: var(--mmt-orange-light);
  text-shadow: 0 0 10px var(--mmt-orange-glow);
}

/* === GO TO TOP BUTTON === */
#toTop {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 999;
  background: var(--mmt-orange);
  color: var(--mmt-dark);
  border: none;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  font-size: 1.5rem;
  font-weight: bold;
  cursor: pointer;
  box-shadow: 0 0 15px var(--mmt-orange-glow);
  transition: all 0.3s ease;
  display: none;
}

#toTop:hover {
  background: var(--mmt-orange-light);
  box-shadow: 0 0 25px var(--mmt-orange-glow);
  transform: translateY(-3px);
}

/* === LINKS === */
a {
  color: var(--mmt-orange);
  text-decoration: none;
  transition: color 0.3s ease, text-shadow 0.3s ease;
}

a:hover,
a:focus {
  color: var(--mmt-orange-light);
  text-shadow: 0 0 10px var(--mmt-orange-glow);
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.5rem;
  }

  .hero p {
    font-size: 1rem;
  }

  .hero .logo {
    width: 280px;
  }

  h2 {
    font-size: 2rem;
  }

  .about-section .about-inner {
    font-size: 1.1rem !important;
  }

  .about-section .about-inner h2 {
    font-size: 2.2rem !important;
  }

  .timeline-item {
    padding: 20px;
  }

  .timeline-item .year {
    font-size: 1.2rem;
  }

  .releases-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
  }

  .filter-buttons {
    flex-direction: column;
    align-items: center;
  }

  .filter-btn {
    width: 100%;
    max-width: 300px;
  }
}

/* === COOKIE BANNER === */
#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--mmt-gray);
  color: #fff;
  padding: 1rem;
  text-align: center;
  z-index: 9999;
  border-top: 2px solid var(--mmt-orange);
}

#cookie-banner button {
  background: var(--mmt-orange);
  color: #fff;
  border: none;
  border-radius: 4px;
  padding: 0.5rem 1rem;
  margin-left: 1rem;
  cursor: pointer;
  font-weight: 700;
  transition: all 0.3s ease;
}

#cookie-banner button:hover {
  background: var(--mmt-orange-light);
  box-shadow: 0 0 10px var(--mmt-orange-glow);
}
