/* 1. Grund-Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Wrapper für die zentrale Ausrichtung */
body {
    font-family: 'Lora', serif; /* Fließtext in Serifenschrift */
    font-size: 1.2rem;
    color: #333;
    background-color: #fafafa;
    line-height: 1.6;
    display: flex;
  justify-content: center; /* Horizontal zentrieren */
  align-items: flex-start; /* Vertikale Ausrichtung */
  padding-top: 20px; /* Abstand von oben */
  background-color: #f7f7f7; /* Optional: Hintergrundfarbe */
}

.container {
  width: 100%;
  max-width: 1200px; /* Maximale Breite */
  margin: 0 auto; /* Horizontale Zentrierung */
  padding: 0 15px; /* Innerer Abstand */
  background-color: #fff; /* Optional: Hintergrund für die Inhalte */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Optional: Schatten */
  border-radius: 8px; /* Optionale abgerundete Ecken */
  position: relative; /* Wichtiger Kontext für fixierte Elemente */
}

/* Für kleinere Bildschirme: Dynamisch anpassen */
@media (max-width: 768px) {
  .container {
    padding: 0 10px; /* Weniger Innenabstand für mehr Platz */
    box-shadow: none; /* Schatten entfernen, falls Platz eng wird */
  }
}



/* Fixierte Social Links */
.fixed-social-links {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 1000;
}

.fixed-social-links a {
  display: inline-block;
  width: 40px; /* Größe des Icons */
  height: 40px;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.fixed-social-links a:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15);
}

.fixed-social-links img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Media Query für kleinere Bildschirme */
@media (max-width: 768px) {
  .fixed-social-links {
    bottom: 10px; /* Weniger Abstand vom unteren Rand */
    right: 10px; /* Weniger Abstand vom rechten Rand */
    gap: 5px; /* Geringerer Abstand zwischen den Icons */
  }

  .fixed-social-links a {
    width: 30px; /* Kleinere Icons */
    height: 30px;
  }
}





/* Grundlayout */
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
  background-color: #000;
  color: #fff;
}

.header .logo {
  font-size: 1.5rem;
  font-weight: bold;
}

.header nav ul {
  display: flex; /* Standard für größere Bildschirme */
  list-style: none;
  gap: 20px;
}

.header nav ul li a {
  text-decoration: none;
  color: #fff;
  transition: color 0.3s;
}

.header nav ul li a:hover {
  color: #f04e30;
}

/* Hamburger-Menü-Button */
.hamburger-menu {
  display: none; /* Standardmäßig ausgeblendet */
  font-size: 1.8rem;
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
  z-index: 1001; /* Sicherstellen, dass es über dem Menü liegt */
}

/* Mobilansicht */
@media (max-width: 768px) {
  .hamburger-menu {
    display: block; /* Sichtbar auf kleinen Bildschirmen */
  }


  .header nav ul {
    display: none; /* Überschreibt die Standardregel */
    flex-direction: column;
    gap: 10px;
    position: absolute;
    top: 60px;
    right: 20px;
    background-color: #000;
    padding: 10px;
    border-radius: 5px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    z-index: 1000;
  }

  .header nav ul.show {
    display: flex; /* Zeigt das Menü, wenn die Klasse "show" hinzugefügt wird */
  }


  nav ul li a {
    padding: 10px;
    text-align: center;
  }
}

/* Standardmäßiges Menü Styling */
.menu {
  display: flex; /* Standard-Layout für größere Bildschirme */
  list-style: none;
  gap: 20px;
}

/* Verstecke Menü in der mobilen Ansicht */
@media (max-width: 768px) {
  .menu {
    display: none; /* Menü ausgeblendet */
    flex-direction: column;
    gap: 10px;
    position: absolute;
    top: 60px;
    right: 20px;
    background-color: #000;
    padding: 10px;
    border-radius: 5px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    z-index: 1000;
  }

  /* Menü anzeigen, wenn die Klasse "show" hinzugefügt wird */
  .menu.show {
    display: flex;
  }
}




/* 3. Hero Section */
.hero {
  position: relative;
  height: 80vh;
  background: url('https://whatsmusic.de/wp-content/uploads/2025/01/Layer-2loslassen-png.webp') no-repeat center center/cover;
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-overlay {
  text-align: center;
  color: #fff;
  padding: 1rem;
  background: rgba(0, 0, 0, 0.5); /* Optional: Halbtransparenter Hintergrund */
  border-radius: 5px;
}

.hero-overlay h1 {
  font-size: 2.5rem;
  font-family: 'Montserrat', sans-serif;
  margin-bottom: 1rem;
}

.hero-overlay p {
  margin-bottom: 2rem;
  font-size: 1.2rem;
}

.cta-btn {
  background-color: #e74c3c;
  color: #fff;
  border: none;
  padding: 1rem 2rem;
  cursor: pointer;
  font-family: 'Montserrat', sans-serif;
  transition: background 0.3s;
}

.cta-btn:hover {
  background-color: #c0392b;
}

/* 4. Musik-Sektion */
.musik-section {
  padding: 3rem 2rem;
  background-color: #fff;
  text-align: center;
}

.musik-section h2 {
  font-family: 'Montserrat', sans-serif;
  margin-bottom: 2rem;
  font-size: 2rem;
}

.musik-content {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
}

.musik-description {
  max-width: 400px;
  text-align: left;
}

.musik-description p {
  margin-bottom: 1.5rem;
}

.stream-btn {
  background-color: #e74c3c;
  color: #fff;
  text-decoration: none;
  padding: 0.8rem 1.6rem;
  font-family: 'Montserrat', sans-serif;
  transition: background 0.3s;
}

.stream-btn:hover {
  background-color: #c0392b;
}

.musik-video iframe {
  max-width: 560px;
  width: 100%;
  height: 315px;
  border: none;
}

/* 5. Visuelles Konzept */
.kunst-section {
  padding: 3rem 2rem;
  background-color: #f7f7f7;
  text-align: center;
}

.kunst-section h2 {
  font-family: 'Montserrat', sans-serif;
  margin-bottom: 2rem;
  font-size: 2rem;
}

.kunst-section p {
  max-width: 600px;
  margin: 0 auto 2rem;
}

.kunst-gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.kunst-gallery img {
  width: 300px;
  border-radius: 5px;
  object-fit: cover;
}

/* 6. Über RobArteSoul */
.ueber-section, section {
  padding: 3rem 2rem;
  background-color: #fff;
  text-align: center;
}

.ueber-section h2, section h2 {
  font-family: 'Montserrat', sans-serif;
  margin-bottom: 2rem;
  font-size: 2rem;
}

.ueber-section p, section p {
  max-width: 700px;
  margin: 0 auto 1.5rem;
}

/* 7. Termine */
.termine-section {
  padding: 3rem 2rem;
  background-color: #f7f7f7;
  text-align: center;
}

.termine-section h2 {
  font-family: 'Montserrat', sans-serif;
  margin-bottom: 2rem;
  font-size: 2rem;
}

.termine-list {
  list-style: none;
  margin-bottom: 1.5rem;
}

.termine-list li {
  margin-bottom: 0.5rem;
}

/* 8. Kontakt */
.kontakt-section {
  padding: 3rem 2rem;
  background-color: #fff;
  text-align: center;
}

.kontakt-section h2 {
  font-family: 'Montserrat', sans-serif;
  margin-bottom: 2rem;
  font-size: 2rem;
}

form {
  max-width: 500px;
  margin: 0 auto 2rem;
  display: flex;
  flex-direction: column;
  text-align: left;
}

label {
  margin-bottom: 0.3rem;
  font-weight: bold;
  font-family: 'Montserrat', sans-serif;
}

input, textarea {
  margin-bottom: 1rem;
  padding: 0.8rem;
  border: 1px solid #ccc;
  border-radius: 3px;
  font-family: inherit;
}

button[type="submit"] {
  background-color: #e74c3c;
  color: #fff;
  border: none;
  padding: 1rem;
  cursor: pointer;
  font-family: 'Montserrat', sans-serif;
}

button[type="submit"]:hover {
  background-color: #c0392b;
}

.social-links p {
  margin-bottom: 0.5rem;
}

.social-links a {
  color: #e74c3c;
  text-decoration: none;
  margin: 0 0.3rem;
}

.social-links a:hover {
  text-decoration: underline;
}

/* 9. Footer */
.footer {
  background-color: #000;
  color: #fff;
  text-align: center;
  padding: 2rem;
  font-size: 0.9rem;
}

.footer a {
  color: #e74c3c;
  text-decoration: none;
}

.footer a:hover {
  text-decoration: underline;
}

/* Responsives Design */
@media (max-width: 768px) {
  .hero-overlay h1 {
    font-size: 2rem;
  }
  .musik-content {
    flex-direction: column;
    align-items: center;
  }
  .musik-description, .musik-video {
    max-width: 100%;
  }
  .kunst-gallery img {
    width: 100%;
    max-width: 300px;
  }
}
