/* ============================================
   Tiny Soup — Website Stylesheet
   Farbschema: Orange #FF9900, Rot-Töne, Schwarz, Weiß
   ============================================ */

/* --- Reset & Base --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --orange: #FF9900;
  --orange-dark: #E58900;
  --red: #CC4400;
  --red-dark: #992200;
  --black: #1a1a1a;
  --dark: #262626;
  --gray: #888;
  --light: #f5f5f5;
  --white: #ffffff;

  --font-main: 'Segoe UI', -apple-system, BlinkMacSystemFont, Helvetica, Arial, sans-serif;
  --font-heading: 'Georgia', 'Times New Roman', serif;
  --max-width: 960px;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 70px;
}

body {
  font-family: var(--font-main);
  color: var(--light);
  background-color: var(--black);
  line-height: 1.7;
  font-size: 16px;
}

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

a {
  color: var(--orange);
  text-decoration: none;
  transition: color 0.2s;
}

a:hover {
  color: var(--orange-dark);
}

/* --- Navigation --- */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(26, 26, 26, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 153, 0, 0.2);
}

nav .nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

nav .nav-brand {
  font-weight: 700;
  color: var(--orange);
  letter-spacing: 1px;
  display: flex;
  align-items: baseline;
  gap: 6px;
  line-height: 1;
}

nav .nav-brand .word {
  display: inline-flex;
  align-items: baseline;
}

nav .nav-brand .big {
  font-size: 26px;
  color: var(--orange);
  text-transform: uppercase;
}

nav .nav-brand .small {
  font-size: 15px;
  color: var(--orange);
  text-transform: lowercase;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 28px;
}

nav ul a {
  color: var(--light);
  font-size: 14px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 4px 0;
  border-bottom: 2px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}

nav ul a:hover,
nav ul a.active {
  color: var(--orange);
  border-bottom-color: var(--orange);
}

/* Hamburger */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--light);
  margin: 5px 0;
  transition: transform 0.3s, opacity 0.3s;
}

/* --- Hero --- */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 24px 80px;
  background: radial-gradient(ellipse at center bottom, rgba(255, 153, 0, 0.12) 0%, transparent 70%),
              var(--black);
}

.hero-logo {
  max-width: 380px;
  margin-bottom: 24px;
  filter: drop-shadow(0 4px 20px rgba(255, 153, 0, 0.3));
}

.hero-tagline {
  font-size: 18px;
  color: var(--gray);
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 40px;
}

.hero-description {
  max-width: 600px;
  font-size: 17px;
  color: rgba(245, 245, 245, 0.8);
  line-height: 1.8;
}

.hero-arrow {
  margin-top: 60px;
  animation: bounce 2s infinite;
  color: var(--orange);
  font-size: 28px;
  opacity: 0.6;
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(10px); }
}

/* --- Sections --- */
section {
  padding: 80px 24px;
}

section:nth-child(even) {
  background: var(--dark);
}

.section-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.section-title {
  font-family: var(--font-heading);
  font-size: 32px;
  color: var(--orange);
  margin-bottom: 40px;
  padding-bottom: 12px;
  border-bottom: 2px solid rgba(255, 153, 0, 0.3);
}

/* --- Band Members --- */
.members-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
}

.member-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 153, 0, 0.15);
  border-radius: 8px;
  padding: 28px 24px;
  transition: border-color 0.3s, transform 0.2s;
}

.member-card:hover {
  border-color: rgba(255, 153, 0, 0.4);
  transform: translateY(-2px);
}

.member-name {
  font-size: 20px;
  font-weight: 700;
  color: var(--orange);
  margin-bottom: 4px;
}

.member-instruments {
  color: var(--gray);
  font-size: 14px;
  margin-bottom: 12px;
}

.member-status {
  display: inline-block;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 2px 10px;
  border-radius: 12px;
  background: rgba(255, 153, 0, 0.15);
  color: var(--orange);
}

.member-status.pause {
  background: rgba(136, 136, 136, 0.2);
  color: var(--gray);
}

/* --- Song List --- */
.songs-category {
  margin-bottom: 32px;
}

.songs-category h3 {
  font-size: 18px;
  color: var(--white);
  margin-bottom: 12px;
}

.songs-category h3 span {
  color: var(--gray);
  font-weight: 400;
  font-size: 14px;
}

.song-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.song-tag {
  display: inline-block;
  background: rgba(255, 153, 0, 0.1);
  border: 1px solid rgba(255, 153, 0, 0.2);
  color: var(--light);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 14px;
  transition: background 0.2s;
}

.song-tag:hover {
  background: rgba(255, 153, 0, 0.2);
}

.song-tag .artist {
  color: var(--gray);
  font-size: 12px;
}

/* --- Termine --- */
.termine-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.termin-card {
  display: flex;
  align-items: center;
  gap: 20px;
  background: rgba(255, 255, 255, 0.04);
  border-left: 3px solid var(--orange);
  padding: 20px 24px;
  border-radius: 0 8px 8px 0;
}

.termin-date {
  font-size: 14px;
  font-weight: 700;
  color: var(--orange);
  text-transform: uppercase;
  white-space: nowrap;
  min-width: 140px;
}

.termin-info {
  color: var(--light);
}

.termin-none {
  color: var(--gray);
  font-style: italic;
}

/* --- Kontakt --- */
.kontakt-content {
  max-width: 600px;
}

.kontakt-content p {
  margin-bottom: 16px;
  color: rgba(245, 245, 245, 0.8);
}

.email-link {
  display: inline-block;
  font-size: 20px;
  font-weight: 600;
  color: var(--orange);
  padding: 12px 0;
  border-bottom: 2px solid transparent;
}

.email-link:hover {
  border-bottom-color: var(--orange);
}

/* --- Footer --- */
footer {
  padding: 32px 24px;
  border-top: 1px solid rgba(255, 153, 0, 0.15);
  text-align: center;
  background: var(--black);
}

footer .footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

footer .footer-links {
  display: flex;
  gap: 24px;
}

footer .footer-links a {
  color: var(--gray);
  font-size: 13px;
}

footer .footer-links a:hover {
  color: var(--orange);
}

footer .footer-copy {
  color: var(--gray);
  font-size: 13px;
}

/* --- Divider --- */
.section-divider {
  width: 60px;
  height: 3px;
  background: var(--orange);
  border: none;
  margin: 0 0 32px;
  border-radius: 2px;
}

/* --- Story / Unsere Geschichte --- */
.story-section {
  position: relative;
}

.story-text {
  max-width: 720px;
  font-size: 17px;
  color: rgba(245, 245, 245, 0.85);
  line-height: 1.9;
}

.story-text p {
  margin-bottom: 20px;
  padding-left: 24px;
  border-left: 2px solid rgba(255, 153, 0, 0.2);
}

.story-text p:hover {
  border-left-color: var(--orange);
}

.story-text .story-highlight {
  color: var(--orange);
  font-weight: 600;
}

/* --- Gallery Placeholder --- */
.gallery-placeholder {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  margin-top: 24px;
}

.gallery-placeholder .gallery-item {
  aspect-ratio: 4 / 3;
  background: rgba(255, 255, 255, 0.03);
  border: 1px dashed rgba(255, 153, 0, 0.2);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray);
  font-size: 14px;
  transition: border-color 0.3s;
}

.gallery-placeholder .gallery-item:hover {
  border-color: rgba(255, 153, 0, 0.4);
}

/* --- FAQ Akkordeon (CSS-only) --- */
.faq-list {
  max-width: 720px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 153, 0, 0.15);
  border-radius: 8px;
  overflow: hidden;
  transition: border-color 0.3s;
}

.faq-item:hover {
  border-color: rgba(255, 153, 0, 0.35);
}

.faq-item summary {
  cursor: pointer;
  padding: 18px 24px;
  font-size: 16px;
  font-weight: 600;
  color: var(--light);
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  font-size: 22px;
  color: var(--orange);
  transition: transform 0.3s;
  flex-shrink: 0;
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
}

.faq-item .faq-answer {
  padding: 0 24px 20px;
  color: rgba(245, 245, 245, 0.75);
  line-height: 1.8;
}

/* --- News / Aktuelles --- */
.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.news-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 153, 0, 0.15);
  border-radius: 8px;
  padding: 24px;
  transition: border-color 0.3s, transform 0.2s;
}

.news-card:hover {
  border-color: rgba(255, 153, 0, 0.4);
  transform: translateY(-2px);
}

.news-card .news-date {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--orange);
  margin-bottom: 8px;
}

.news-card .news-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--light);
  margin-bottom: 8px;
}

.news-card .news-text {
  color: rgba(245, 245, 245, 0.7);
  font-size: 14px;
  line-height: 1.7;
}

/* --- CTA Box --- */
.cta-box {
  background: rgba(255, 153, 0, 0.08);
  border: 1px solid rgba(255, 153, 0, 0.25);
  border-radius: 8px;
  padding: 28px 32px;
  margin-top: 32px;
  max-width: 600px;
}

.cta-box p {
  color: rgba(245, 245, 245, 0.85);
  margin-bottom: 12px;
}

.cta-box .cta-link {
  display: inline-block;
  font-weight: 600;
  color: var(--orange);
  border-bottom: 2px solid transparent;
  transition: border-color 0.2s;
}

.cta-box .cta-link:hover {
  border-bottom-color: var(--orange);
}

/* --- Studio Page --- */
.studio-hero {
  min-height: 50vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 140px 24px 80px;
  background: radial-gradient(ellipse at center bottom, rgba(255, 153, 0, 0.10) 0%, transparent 70%),
              var(--black);
}

.studio-hero h1 {
  font-family: var(--font-heading);
  font-size: 38px;
  color: var(--orange);
  margin-bottom: 16px;
}

.studio-hero p {
  max-width: 600px;
  font-size: 17px;
  color: rgba(245, 245, 245, 0.8);
  line-height: 1.8;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

.service-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 153, 0, 0.15);
  border-radius: 8px;
  padding: 28px 24px;
  transition: border-color 0.3s, transform 0.2s;
}

.service-card:hover {
  border-color: rgba(255, 153, 0, 0.4);
  transform: translateY(-2px);
}

.service-card .service-icon {
  font-size: 28px;
  margin-bottom: 12px;
}

.service-card h3 {
  font-size: 18px;
  color: var(--orange);
  margin-bottom: 8px;
}

.service-card p {
  color: rgba(245, 245, 245, 0.7);
  font-size: 14px;
  line-height: 1.7;
}

.audience-list {
  max-width: 600px;
  list-style: none;
}

.audience-list li {
  padding: 12px 0 12px 24px;
  border-left: 2px solid rgba(255, 153, 0, 0.3);
  color: rgba(245, 245, 245, 0.85);
  margin-bottom: 8px;
  transition: border-color 0.2s;
}

.audience-list li:hover {
  border-left-color: var(--orange);
}

/* --- Nav Studio Link highlight --- */
nav ul a.nav-studio {
  color: var(--orange);
  font-weight: 600;
}

/* --- Responsive --- */
@media (max-width: 640px) {
  .nav-toggle {
    display: block;
  }

  nav ul {
    display: none;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: rgba(26, 26, 26, 0.98);
    flex-direction: column;
    padding: 16px 24px;
    gap: 0;
    border-bottom: 1px solid rgba(255, 153, 0, 0.2);
  }

  nav ul.open {
    display: flex;
  }

  nav ul li {
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  }

  nav ul li:last-child {
    border-bottom: none;
  }

  .hero {
    min-height: 85vh;
    padding: 100px 20px 60px;
  }

  .hero-logo {
    max-width: 260px;
  }

  section {
    padding: 60px 20px;
  }

  .section-title {
    font-size: 26px;
  }

  .members-grid {
    grid-template-columns: 1fr;
  }

  .termin-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .gallery-placeholder {
    grid-template-columns: repeat(2, 1fr);
  }

  .story-text p {
    padding-left: 16px;
  }

  .studio-hero {
    min-height: 40vh;
    padding: 120px 20px 60px;
  }

  .studio-hero h1 {
    font-size: 28px;
  }

  .service-grid {
    grid-template-columns: 1fr;
  }

  .news-grid {
    grid-template-columns: 1fr;
  }

  .cta-box {
    padding: 20px 24px;
  }

  footer .footer-inner {
    flex-direction: column;
    text-align: center;
  }
}
