/* ============================================================
   MusiKreAktiv – Stylesheet
   Corporate Design: Orange #FC943A | Schrift: Arial
   ============================================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --orange:       #FC943A;
  --orange-dark:  #5C3317;
  --orange-mid:   #F5C48A;
  --orange-light: #FAE8D5;
  --black:        #1A1A1A;
  --gray-dark:    #444;
  --gray:         #777;
  --gray-light:   #F5F5F5;
  --white:        #FFFFFF;
  --font:         Arial, Helvetica, sans-serif;
  --max-w:        1100px;
  --radius:       3px;
  --shadow:       0 2px 16px rgba(0,0,0,0.08);
  --nav-h:        72px;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  color: var(--black);
  background: var(--white);
  line-height: 1.65;
  font-size: 16px;
}

/* ---- TYPOGRAFIE ---- */
h1, h2, h3, h4 { line-height: 1.2; font-weight: bold; }
h1 { font-size: 2.4rem; }
h2 { font-size: 1.8rem; }
h3 { font-size: 1.25rem; }
p { margin-bottom: 1em; }
p:last-child { margin-bottom: 0; }
a { color: var(--orange); text-decoration: none; }
a:hover { text-decoration: underline; }
address { font-style: normal; }

/* ---- LAYOUT ---- */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
section { padding: 72px 0; }

.section-label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--orange);
  font-weight: bold;
  margin-bottom: 8px;
}
.section-title { margin-bottom: 16px; }
.section-intro {
  max-width: 600px;
  color: var(--gray-dark);
  margin-bottom: 48px;
}
.section-intro.centered { margin-left: auto; margin-right: auto; text-align: center; }

/* ---- NAVIGATION ---- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 2px solid var(--gray-light);
  height: var(--nav-h);
  display: flex;
  align-items: center;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.nav-logo { display: flex; align-items: center; text-decoration: none; }
.nav-logo img { height: 36px; width: auto; }
.nav-links { display: flex; align-items: center; gap: 2px; list-style: none; }
.nav-links a {
  color: var(--black);
  font-size: 0.88rem;
  padding: 8px 13px;
  border-radius: 2px;
  transition: color 0.2s, background 0.2s;
}
.nav-links a:hover { color: var(--orange); text-decoration: none; background: var(--orange-light); }
.nav-links a.active { color: var(--orange); font-weight: bold; }
.nav-cta {
  background: var(--orange) !important;
  color: var(--white) !important;
  padding: 10px 18px !important;
  border-radius: 24px !important;
  font-weight: bold !important;
  margin-left: 8px;
}
.nav-cta:hover { background: #e07c28 !important; text-decoration: none !important; }

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--black); transition: all 0.3s; }

/* ---- BUTTONS ---- */
.btn {
  display: inline-block;
  padding: 13px 26px;
  border-radius: 2px;
  font-size: 0.95rem;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
  border: 2px solid transparent;
}
.btn-primary { background: var(--white); color: var(--orange); border-color: var(--white); }
.btn-primary:hover { background: var(--orange-light); text-decoration: none; }
.btn-outline { background: transparent; color: var(--white); border-color: var(--white); }
.btn-outline:hover { background: rgba(255,255,255,0.15); text-decoration: none; }
.btn-orange { background: var(--orange); color: var(--white); border-color: var(--orange); }
.btn-orange:hover { background: #e07c28; border-color: #e07c28; text-decoration: none; }
.btn-dark { background: var(--black); color: var(--white); border-color: var(--black); }
.btn-dark:hover { background: #333; text-decoration: none; }

/* ---- HERO (Startseite) ---- */
.hero {
  background: var(--orange);
  color: var(--white);
  padding: 100px 0 88px;
  text-align: center;
}
.hero-logo { height: 90px; width: auto; margin-bottom: 32px; filter: brightness(0) invert(1); }
.hero-eyebrow {
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  opacity: 0.8;
  margin-bottom: 10px;
}
.hero h1 { font-size: 3rem; color: var(--white); margin-bottom: 12px; }
.hero-subtitle { font-size: 1.15rem; font-style: italic; opacity: 0.9; margin-bottom: 44px; }
.hero-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ---- PAGE HERO (Unterseiten) ---- */
.page-hero {
  background: var(--orange);
  color: var(--white);
  padding: 60px 0 52px;
}
.page-hero .section-label { color: rgba(255,255,255,0.72); }
.page-hero h1 { color: var(--white); font-size: 2.2rem; margin-bottom: 12px; }
.page-hero p { opacity: 0.88; max-width: 620px; font-style: italic; margin-bottom: 0; }

/* ---- DREI SÄULEN ---- */
.pillars { background: var(--gray-light); }
.pillars-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.pillar-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px 30px;
  box-shadow: var(--shadow);
  transition: transform 0.2s;
}
.pillar-card:hover { transform: translateY(-4px); }
.pillar-icon { font-size: 2.4rem; margin-bottom: 20px; display: block; }
.pillar-card h3 { margin-bottom: 12px; }
.pillar-card p { color: var(--gray-dark); font-size: 0.93rem; }
.pillar-link { display: inline-block; margin-top: 20px; color: var(--orange); font-weight: bold; font-size: 0.88rem; }
.pillar-link:hover { text-decoration: underline; }

/* ---- INSTRUMENTE ---- */
.instrumente { background: var(--orange); }
.instrumente .section-label { color: rgba(255,255,255,0.72); }
.instrumente .section-title { color: var(--white); }
.instrument-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
  margin-top: 48px;
}
.instrument-item {
  text-align: center;
  padding: 28px 12px 22px;
  background: rgba(255,255,255,0.16);
  border-radius: var(--radius);
  transition: background 0.2s;
}
.instrument-item:hover { background: rgba(255,255,255,0.28); }
.instrument-emoji { font-size: 2.2rem; margin-bottom: 10px; display: block; }
.instrument-item span.label { font-size: 0.82rem; font-weight: bold; color: var(--white); display: block; }

/* ---- TEAM KARTEN ---- */
.team-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; margin-top: 48px; }
.team-card {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow);
}
.team-avatar {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: var(--orange);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: bold;
  color: var(--white);
  overflow: hidden;
}
.team-avatar img { width: 100%; height: 100%; object-fit: cover; }
.team-info h3 { margin-bottom: 4px; }
.team-role { font-size: 0.82rem; color: var(--orange); font-weight: bold; text-transform: uppercase; letter-spacing: 0.08em; display: block; margin-bottom: 10px; }
.team-info p { font-size: 0.9rem; color: var(--gray-dark); font-style: italic; }

/* Team Vollseite */
.team-full-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 40px; margin-top: 48px; }
.team-full-card { background: var(--white); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.team-full-photo {
  height: 340px;
  background: linear-gradient(135deg, var(--orange-light), var(--orange-mid));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  font-weight: bold;
  color: var(--white);
  overflow: hidden;
}
.team-full-body { padding: 28px; }
.team-full-body h3 { margin-bottom: 4px; }
.team-instruments { color: var(--orange); font-size: 0.85rem; font-weight: bold; margin-bottom: 16px; display: block; }
.team-full-body p { color: var(--gray-dark); font-size: 0.92rem; }

/* ---- CTA SECTION ---- */
.cta-section { background: var(--black); text-align: center; }
.cta-section h2 { color: var(--white); margin-bottom: 12px; }
.cta-section .lead { opacity: 0.72; margin-bottom: 36px; max-width: 520px; margin-left: auto; margin-right: auto; }
.cta-section p { color: rgba(255,255,255,0.72); }

/* ---- PREISE ---- */
.preise-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 48px; }
.preise-card {
  border: 2px solid #e8e8e8;
  border-radius: var(--radius);
  padding: 36px 28px;
  text-align: center;
  transition: border-color 0.2s, box-shadow 0.2s;
  position: relative;
}
.preise-card:hover { border-color: var(--orange); box-shadow: var(--shadow); }
.preise-card.featured { border-color: var(--orange); }
.preise-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--orange);
  color: white;
  font-size: 0.72rem;
  font-weight: bold;
  padding: 3px 14px;
  border-radius: 12px;
  white-space: nowrap;
}
.preise-icon { font-size: 2rem; margin-bottom: 16px; display: block; }
.preise-card h3 { margin-bottom: 4px; }
.preise-type { font-size: 0.78rem; color: var(--gray); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 24px; display: block; }
.preise-row { display: flex; justify-content: space-between; align-items: center; padding: 12px 0; border-top: 1px solid var(--gray-light); }
.preise-row:first-child { border-top: none; padding-top: 0; }
.preise-duration { font-size: 0.88rem; color: var(--gray-dark); }
.preise-amount { font-size: 1.25rem; font-weight: bold; color: var(--orange); }
.preise-sub { font-size: 0.72rem; color: var(--gray); display: block; text-align: right; }
.preise-note { font-size: 0.82rem; color: var(--gray); margin-top: 20px; font-style: italic; }

/* ---- WORKSHOPS ---- */
.workshop-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; margin-top: 48px; }
.workshop-card { background: var(--white); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.workshop-card-header { background: var(--orange); color: var(--white); padding: 32px; }
.workshop-card-header .w-icon { font-size: 2.4rem; margin-bottom: 12px; display: block; }
.workshop-card-header h3 { color: var(--white); margin-bottom: 6px; }
.workshop-card-header p { opacity: 0.85; font-size: 0.9rem; font-style: italic; margin: 0; }
.workshop-card-body { padding: 32px; }
.workshop-card-body p { color: var(--gray-dark); }
.workshop-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 20px; }
.tag {
  background: var(--orange-light);
  color: var(--orange-dark);
  font-size: 0.78rem;
  font-weight: bold;
  padding: 4px 12px;
  border-radius: 12px;
}

/* Kita-Musicals Callout */
.callout {
  background: var(--orange-light);
  border-left: 4px solid var(--orange);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 28px 32px;
  margin-top: 48px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.callout-icon { font-size: 2rem; flex-shrink: 0; }
.callout h3 { margin-bottom: 8px; color: var(--orange-dark); }
.callout p { font-size: 0.92rem; color: var(--gray-dark); }
.callout a { color: var(--orange); font-weight: bold; }

/* ---- KONTAKT ---- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; margin-top: 48px; }
.contact-detail { display: flex; gap: 14px; margin-bottom: 20px; align-items: flex-start; }
.contact-detail-icon { font-size: 1.3rem; flex-shrink: 0; margin-top: 1px; }
.contact-detail-text strong { display: block; font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--gray); margin-bottom: 2px; }
.contact-detail-text a { color: var(--black); }
.contact-detail-text a:hover { color: var(--orange); text-decoration: none; }

.contact-form { background: var(--gray-light); border-radius: var(--radius); padding: 36px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: 0.82rem; font-weight: bold; margin-bottom: 6px; color: var(--black); }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid #ddd;
  border-radius: var(--radius);
  font-family: var(--font);
  font-size: 0.93rem;
  background: var(--white);
  transition: border-color 0.2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { outline: none; border-color: var(--orange); }
.form-group textarea { height: 120px; resize: vertical; }
.form-note { font-size: 0.8rem; color: var(--gray); margin-top: 12px; font-style: italic; }

.osm-map {
  margin-top: 48px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid #e0e0e0;
}
.map-link {
  padding: 8px 12px;
  background: var(--gray-light);
  font-size: 0.85rem;
  text-align: right;
  margin: 0;
}

/* ---- INSTRUMENTE LISTE (Unterricht-Seite) ---- */
.instrument-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 40px; }
.instrument-card {
  border: 1px solid #eee;
  border-radius: var(--radius);
  padding: 28px 22px;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.instrument-card:hover { border-color: var(--orange); box-shadow: var(--shadow); }
.instrument-card .ic-icon { font-size: 2rem; margin-bottom: 12px; display: block; }
.instrument-card h3 { margin-bottom: 8px; }
.instrument-card p { font-size: 0.88rem; color: var(--gray-dark); }

/* Formate */
.formate-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 40px; }
.format-card { background: var(--gray-light); border-radius: var(--radius); padding: 32px 24px; text-align: center; }
.format-num { font-size: 2.5rem; font-weight: bold; color: var(--orange); margin-bottom: 8px; display: block; }
.format-card h3 { margin-bottom: 10px; }
.format-card p { font-size: 0.88rem; color: var(--gray-dark); }

/* ---- INFO BOX ---- */
.info-box { background: var(--orange-light); border-radius: var(--radius); padding: 24px 28px; margin-top: 32px; }
.info-box p { font-size: 0.9rem; color: var(--orange-dark); margin: 0; }
.info-box strong { color: var(--orange-dark); }

/* ---- PROSE (Impressum, Datenschutz) ---- */
.prose h2 { margin-top: 40px; margin-bottom: 16px; font-size: 1.3rem; }
.prose h3 { margin-top: 28px; margin-bottom: 10px; font-size: 1.05rem; }
.prose p { color: var(--gray-dark); margin-bottom: 1em; }
.prose ul { margin: 0 0 1em 1.5em; color: var(--gray-dark); }
.prose ul li { margin-bottom: 6px; }
.prose a { color: var(--orange); }

/* ---- FOOTER ---- */
.site-footer { background: var(--black); color: rgba(255,255,255,0.65); padding: 56px 0 28px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.2fr; gap: 40px; margin-bottom: 48px; }
.footer-logo { height: 42px; margin-bottom: 14px; filter: brightness(0) invert(1); display: block; }
.footer-tagline { font-style: italic; font-size: 0.88rem; margin-bottom: 20px; }
.social-links { display: flex; gap: 10px; }
.social-link {
  width: 34px;
  height: 34px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.65);
  font-size: 0.75rem;
  font-weight: bold;
  text-decoration: none;
  transition: background 0.2s;
}
.social-link:hover { background: var(--orange); color: white; text-decoration: none; }
.footer-col h4 { color: var(--white); font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.12em; margin-bottom: 16px; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul a { color: rgba(255,255,255,0.6); font-size: 0.88rem; transition: color 0.2s; }
.footer-col ul a:hover { color: var(--orange); text-decoration: none; }
.footer-address { line-height: 1.9; font-size: 0.88rem; }
.footer-address a { color: rgba(255,255,255,0.6); }
.footer-address a:hover { color: var(--orange); text-decoration: none; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.78rem;
}
.footer-bottom a { color: rgba(255,255,255,0.45); }
.footer-bottom a:hover { color: var(--orange); text-decoration: none; }
.footer-legal { display: flex; gap: 20px; }

/* ---- FOTO-BANNER ---- */
.photo-banner {
  position: relative;
  height: 420px;
  overflow: hidden;
}
.photo-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.photo-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.15) 60%, transparent 100%);
  display: flex;
  align-items: center;
}
.photo-banner-text {
  color: var(--white);
  padding: 0 48px;
  max-width: 520px;
}
.photo-banner-text h2 { color: var(--white); margin-bottom: 10px; }
.photo-banner-text p  { opacity: 0.85; font-style: italic; margin-bottom: 24px; }

/* Instrument-Karte mit Foto */
.instrument-card-img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  display: block;
  border-radius: var(--radius) var(--radius) 0 0;
  margin: -28px -22px 16px;
  width: calc(100% + 44px);
}

/* ---- UTILITY ---- */
.text-center { text-align: center; }
.text-orange { color: var(--orange); }
.mt-8  { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }
.mb-0  { margin-bottom: 0; }

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
  .instrument-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  h1 { font-size: 1.85rem; }
  h2 { font-size: 1.4rem; }
  section { padding: 48px 0; }

  .nav-links {
    display: none;
    position: absolute;
    top: var(--nav-h);
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 12px 16px 20px;
    border-bottom: 2px solid var(--gray-light);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    gap: 0;
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 12px 16px; width: 100%; }
  .nav-cta { margin-left: 0; margin-top: 8px; text-align: center; }
  .nav-toggle { display: flex; }

  .hero { padding: 64px 0 56px; }
  .hero h1 { font-size: 2rem; }
  .hero-actions { flex-direction: column; align-items: center; }

  .pillars-grid { grid-template-columns: 1fr; }
  .instrument-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: 1fr; }
  .team-full-grid { grid-template-columns: 1fr; }
  .preise-grid { grid-template-columns: 1fr; }
  .workshop-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .instrument-list { grid-template-columns: 1fr 1fr; }
  .formate-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
}

@media (max-width: 480px) {
  .instrument-grid { grid-template-columns: repeat(2, 1fr); }
  .instrument-list { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
}

/* ---- DATENSCHUTZ-HINWEIS-BANNER ---- */
.privacy-notice {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: rgba(28, 28, 28, 0.96);
  color: rgba(255, 255, 255, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 12px 24px;
  font-size: 0.82rem;
  box-shadow: 0 -2px 12px rgba(0, 0, 0, 0.18);
  flex-wrap: wrap;
}
/* [hidden] überschreiben, damit display:flex gilt */
.privacy-notice[hidden] { display: none !important; }

.privacy-notice__text {
  margin: 0;
  color: rgba(255, 255, 255, 0.85);
}
.privacy-notice__text strong {
  color: var(--white);
}
.privacy-notice__text a {
  color: var(--orange);
  text-decoration: underline;
}
.privacy-notice__text a:hover {
  color: var(--orange-mid);
}
.privacy-notice__btn {
  background: var(--orange);
  color: var(--white);
  border: none;
  border-radius: 20px;
  padding: 6px 20px;
  font-size: 0.82rem;
  font-weight: bold;
  cursor: pointer;
  font-family: var(--font);
  white-space: nowrap;
  transition: background 0.2s;
  flex-shrink: 0;
}
.privacy-notice__btn:hover {
  background: #e07c28;
}
@media (max-width: 480px) {
  .privacy-notice {
    flex-direction: column;
    gap: 10px;
    text-align: center;
    padding: 14px 20px;
  }
}
