/* ================================
   GLOBAL DESIGN – Dr. Gray & Mrs. Dr. Gray
   ================================ */

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

body {
  margin: 0;
  padding: 0;
  font-family: 'Poppins', sans-serif;
  background-color: #000;
  color: #ddd;
  scroll-behavior: smooth;
}

/* -------------------------------
   HEADER / NAVIGATION
--------------------------------*/

.main-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  border-bottom: 1px solid gold;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(255, 215, 0, 0.1);
}

.main-nav ul {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  list-style: none;
  padding: 1rem;
  margin: 0;
  flex-wrap: wrap;
}

.main-nav a {
  color: gold;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.main-nav a:hover {
  color: #fff;
  border-bottom: 2px solid gold;
  padding-bottom: 2px;
}

/* -------------------------------
   HERO SECTION
--------------------------------*/

.hero {
  background-image: url("assets/images/flx10-gold.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 85vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 10rem 2rem 4rem;
}

.hero-text {
  background-color: rgba(0, 0, 0, 0.5);
  padding: 2rem;
  border-radius: 15px;
  border: 1px solid gold;
}

.hero-text h1 {
  font-family: 'Great Vibes', cursive;
  font-size: 3rem;
  color: gold;
  margin-bottom: 0.5rem;
  text-shadow: 0 0 10px gold;
}

.hero-text p {
  font-size: 1.2rem;
  color: #eee;
}

/* -------------------------------
   BIO SECTION
--------------------------------*/

.bio-section {
  padding: 7rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.bio-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  margin-bottom: 4rem;
  flex-wrap: wrap;
}

.bio-container.reverse {
  flex-direction: row-reverse;
}

.bio-image {
  width: 280px;
  border-radius: 15px;
  border: 2px solid gold;
  box-shadow: 0 0 15px rgba(255, 215, 0, 0.2);
  transition: all 0.4s ease;
}

.bio-image:hover {
  box-shadow: 0 0 25px rgba(255, 215, 0, 0.6);
  transform: scale(1.03);
}

.bio-text {
  flex: 1;
  color: #ddd;
}

.bio-title {
  font-family: 'Great Vibes', cursive;
  color: gold;
  font-size: 2.5rem;
  margin-bottom: 1rem;
  text-shadow: 0 0 8px gold;
}

.bio-together {
  text-align: center;
  margin-top: 5rem;
}

.bio-together img {
  width: 300px;
  border-radius: 20px;
  border: 2px solid gold;
  box-shadow: 0 0 15px rgba(255, 215, 0, 0.3);
}

.gold-line {
  border: none;
  height: 2px;
  background: linear-gradient(to right, transparent, gold, transparent);
  margin: 3rem auto;
  width: 60%;
}

/* -------------------------------
   FOOTER
--------------------------------*/

.social-footer {
  background-color: #111;
  text-align: center;
  padding: 2rem 0;
  font-size: 0.9rem;
  border-top: 1px solid gold;
}

.social-footer a {
  color: gold;
  margin: 0 1rem;
  transition: color 0.3s ease;
}

.social-footer a:hover {
  color: #fff;
}

/* -------------------------------
   RESPONSIVE DESIGN
--------------------------------*/

@media (max-width: 900px) {
  .bio-container {
    flex-direction: column;
    text-align: center;
  }

  .bio-image {
    width: 80%;
    margin-bottom: 1.5rem;
  }

  .hero-text h1 {
    font-size: 2rem;
  }

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

  .main-nav ul {
    gap: 1rem;
  }
}
/* Live-Banner oberhalb des Hero */
.live-banner{
  position: relative;
  top: 68px; /* Platz unter fixiertem Header; bei Bedarf 60–90px feinjustieren */
  width: 100%;
  background: #111;
  color: gold;
  text-align: center;
  padding: 0.75rem 1rem;
  border-bottom: 1px solid gold;
  z-index: 900;
}
.live-banner a{ color: gold; text-decoration: underline; }

/* Logos & Title im Hero */
.brand-row{
  display:flex; align-items:center; justify-content:center; gap:1rem; flex-wrap:wrap;
}
.logo-small{ width:56px; height:auto; }
.hero h1{ margin:0; font-family:'Great Vibes', cursive; font-size:3rem; color:gold; text-shadow:0 0 10px gold; }
.cta-buttons{ margin-top:1rem; display:flex; gap:1rem; justify-content:center; flex-wrap:wrap; }
.btn{ background:gold; color:#000; padding:0.7rem 1.1rem; border-radius:24px; font-weight:600; border:2px solid gold; }
.btn:hover{ background:#000; color:gold; }
.btn-outline{ background:transparent; color:gold; }

/* Intro / Preview */
.intro, .music-preview{ max-width:1100px; margin:2rem auto; padding:0 1rem; text-align:center; }
.music-preview h3{ color:gold; margin-bottom:1rem; }
.center{ text-align:center; }

@media (max-width: 768px){
  .logo-small{ width:40px; }
  .hero h1{ font-size:2.2rem; }
  .live-banner{ top:64px; font-size:0.95rem; }
}