/*
Theme Name: Künstler Website
Theme URI: https://kuenstler-website.de
Author: Ruben Lorenz
Author URI: https://kuenstler-website.de
Description: Professionelles WordPress-Theme für Musiker, Performer und kreative Künstler.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: kuenstler-website
Tags: artist, musician, portfolio, one-page
*/

/* ===== RESET & BASE ===== */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=Source+Sans+3:wght@300;400;500;600;700&display=swap');

:root {
  --gold: #ca8a04;
  --gold-light: #fef3c7;
  --gold-dark: #92600a;
  --bg: #ffffff;
  --fg: #141414;
  --muted: #666666;
  --border: #e5e0d5;
  --card: #faf8f5;
  --surface-warm: #faf9f6;
  --surface-dark: #0f0f0f;
  --surface-dark-fg: #e8e4dd;
  --radius: 0.375rem;
}

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

body {
  font-family: 'Source Sans 3', system-ui, sans-serif;
  background: var(--bg);
  color: var(--fg);
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
}

h1, h2, h3, h4 {
  font-family: 'Playfair Display', Georgia, serif;
  text-wrap: balance;
  line-height: 1.2;
}

p { text-wrap: pretty; overflow-wrap: break-word; }

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

a { color: inherit; text-decoration: none; }

/* ===== CONTAINER ===== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Source Sans 3', system-ui, sans-serif;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-size: 0.75rem;
  border-radius: var(--radius);
  transition: all 0.2s;
  cursor: pointer;
  border: none;
  text-decoration: none;
}

.btn-gold {
  background: var(--gold);
  color: #fff;
  box-shadow: 0 4px 14px rgba(202,138,4,0.2);
  padding: 1rem 2.5rem;
  height: 3.5rem;
}
.btn-gold:hover { background: var(--gold-dark); box-shadow: 0 4px 14px rgba(202,138,4,0.4); }

.btn-outline {
  border: 2px solid rgba(255,255,255,0.6);
  color: #fff;
  background: transparent;
  backdrop-filter: blur(4px);
  padding: 1rem 2.5rem;
  height: 3.5rem;
}
.btn-outline:hover { background: rgba(255,255,255,0.1); }

.btn-sm {
  padding: 0.5rem 1rem;
  height: 2.25rem;
  font-size: 0.7rem;
}

.btn-lg {
  padding: 0.75rem 2rem;
  height: 3rem;
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  transition: all 0.3s;
  background: transparent;
}
.navbar.scrolled {
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}
.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4rem;
}
.navbar-brand {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.125rem;
  color: #fff;
  transition: color 0.3s;
}
.navbar.scrolled .navbar-brand { color: var(--fg); }

.navbar-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.navbar-links a {
  font-family: 'Source Sans 3', system-ui, sans-serif;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.8);
  transition: color 0.3s;
}
.navbar.scrolled .navbar-links a { color: var(--muted); }
.navbar-links a:hover { color: var(--gold); }

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  color: #fff;
  font-size: 1.5rem;
  cursor: pointer;
}
.navbar.scrolled .mobile-toggle { color: var(--fg); }

.mobile-menu {
  display: none;
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 1.5rem;
}
.mobile-menu.active { display: block; }
.mobile-menu a {
  display: block;
  padding: 0.5rem 0;
  font-size: 0.875rem;
  color: var(--fg);
}
.mobile-menu a:hover { color: var(--gold); }

@media (max-width: 768px) {
  .navbar-links { display: none; }
  .mobile-toggle { display: block; }
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5);
}
.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  padding: 8rem 1rem;
}
.hero-tagline {
  font-family: 'Source Sans 3', system-ui, sans-serif;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--gold);
  margin-bottom: 1.5rem;
}
.hero h1 {
  font-size: clamp(2rem, 5vw, 4.5rem);
  color: #fff;
  max-width: 56rem;
  margin: 0 auto 1.5rem;
  line-height: 1.1;
}
.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: rgba(255,255,255,0.8);
  max-width: 42rem;
  margin: 0 auto 2.5rem;
  line-height: 1.6;
}
.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}
.hero-gradient {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 8rem;
  background: linear-gradient(to top, var(--bg), transparent);
}

/* ===== SECTIONS ===== */
.section { padding: 6rem 0; }
.section-lg { padding: 8rem 0; }
.section-warm { background: var(--surface-warm); }
.section-dark { background: var(--surface-dark); color: var(--surface-dark-fg); }

.section-label {
  font-family: 'Source Sans 3', system-ui, sans-serif;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--gold);
  margin-bottom: 1rem;
  text-align: center;
}
.section-title {
  font-size: clamp(1.875rem, 3vw, 2.5rem);
  text-align: center;
  margin-bottom: 1rem;
}
.section-subtitle {
  text-align: center;
  color: var(--muted);
  max-width: 36rem;
  margin: 0 auto 4rem;
  font-size: 1.125rem;
}

/* ===== PAINPOINTS GRID ===== */
.painpoints-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  max-width: 64rem;
  margin: 0 auto;
}
@media (max-width: 1024px) { .painpoints-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .painpoints-grid { grid-template-columns: 1fr; } }

.painpoint-card {
  background: var(--bg);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: 0 1px 3px rgba(0,0,0,0.05);
  transition: box-shadow 0.3s;
}
.painpoint-card:hover { box-shadow: 0 4px 12px rgba(0,0,0,0.1); }
.painpoint-card .icon {
  width: 1.5rem; height: 1.5rem;
  color: var(--gold);
  margin-bottom: 1rem;
}
.painpoint-card p {
  font-weight: 500;
  line-height: 1.4;
}

/* ===== SOLUTION ===== */
.solution-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  max-width: 64rem;
  margin: 0 auto 4rem;
}
@media (max-width: 1024px) { .solution-grid { grid-template-columns: 1fr; } }

.solution-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem;
  border-radius: var(--radius);
  transition: background 0.2s;
}
.solution-item:hover { background: rgba(0,0,0,0.02); }
.solution-check {
  width: 2rem; height: 2rem;
  border-radius: 50%;
  background: rgba(202,138,4,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 0.125rem;
}
.solution-check svg { width: 1rem; height: 1rem; color: var(--gold); }
.solution-item p { font-size: 1.125rem; }

.solution-image {
  border-radius: var(--radius);
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

/* ===== SERVICES ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
  max-width: 72rem;
  margin: 0 auto 3rem;
}
@media (max-width: 1024px) { .services-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 640px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }

.service-card {
  padding: 1.25rem;
  border-radius: var(--radius);
  background: rgba(255,255,255,0.05);
  transition: background 0.3s;
}
.service-card:hover { background: rgba(255,255,255,0.1); }
.service-card .icon { width: 1.25rem; height: 1.25rem; color: var(--gold); margin-bottom: 0.75rem; }
.service-card h3 { font-size: 1rem; color: #fff; margin-bottom: 0.25rem; }
.service-card p { font-size: 0.875rem; color: rgba(255,255,255,0.5); }

/* ===== FEATURES ===== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  max-width: 64rem;
  margin: 0 auto;
}
@media (max-width: 1024px) { .features-grid { grid-template-columns: 1fr; } }

.feature-group h3 {
  font-size: 1.25rem;
  color: var(--gold);
  margin-bottom: 1.5rem;
}
.feature-list { list-style: none; }
.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
  font-size: 0.875rem;
}
.feature-list li svg { width: 1rem; height: 1rem; margin-top: 0.25rem; color: var(--gold); flex-shrink: 0; }

/* ===== PROCESS ===== */
.process-steps { max-width: 48rem; margin: 0 auto; }
.process-step {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2rem;
}
.process-num {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.process-num span {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.5rem;
  color: var(--gold);
}
.process-line {
  width: 1px;
  flex: 1;
  background: var(--border);
  margin-top: 0.5rem;
}
.process-step h3 { font-size: 1.25rem; margin-bottom: 0.25rem; }
.process-step p { color: var(--muted); }

/* ===== WHY US ===== */
.whyus-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 64rem;
  margin: 0 auto;
}
@media (max-width: 1024px) { .whyus-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .whyus-grid { grid-template-columns: 1fr; } }

.whyus-item {
  display: flex;
  gap: 1rem;
}
.whyus-icon {
  width: 2.5rem; height: 2.5rem;
  border-radius: 50%;
  background: rgba(202,138,4,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.whyus-icon svg { width: 1.25rem; height: 1.25rem; color: var(--gold); }
.whyus-item h3 { font-size: 1.125rem; margin-bottom: 0.25rem; }
.whyus-item p { font-size: 0.875rem; color: var(--muted); line-height: 1.6; }

.whyus-extra {
  text-align: center;
  margin-top: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  font-weight: 500;
}
.whyus-extra svg { width: 1.25rem; height: 1.25rem; color: var(--gold); }

/* ===== CTA ===== */
.cta-section {
  text-align: center;
}
.cta-section h2 {
  color: #fff;
  font-size: clamp(1.875rem, 3.5vw, 3rem);
  max-width: 48rem;
  margin: 0 auto 1.5rem;
  line-height: 1.15;
}
.cta-section .section-subtitle { color: rgba(255,255,255,0.6); margin-bottom: 2.5rem; }
.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

/* ===== FAQ ===== */
.faq-list { max-width: 42rem; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 1.25rem 0;
  font-family: 'Source Sans 3', system-ui, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  color: var(--fg);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: color 0.3s;
}
.faq-question:hover { color: var(--gold); }
.faq-question::after {
  content: '+';
  font-size: 1.25rem;
  transition: transform 0.3s;
}
.faq-item.active .faq-question::after {
  content: '−';
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  color: var(--muted);
  line-height: 1.7;
}
.faq-item.active .faq-answer {
  max-height: 200px;
  padding-bottom: 1.25rem;
}

/* ===== TESTIMONIALS ===== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 64rem;
  margin: 0 auto;
}
@media (max-width: 768px) { .testimonials-grid { grid-template-columns: 1fr; } }

.testimonial-card {
  background: var(--card);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: 0 1px 3px rgba(0,0,0,0.05);
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: box-shadow 0.3s;
}
.testimonial-card:hover { box-shadow: 0 4px 12px rgba(0,0,0,0.1); }
.testimonial-quote {
  color: rgba(202,138,4,0.4);
  font-size: 1.5rem;
  margin-bottom: 1rem;
}
.testimonial-card .text {
  font-style: italic;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  flex: 1;
}
.testimonial-card .name { font-weight: 600; font-size: 0.875rem; }
.testimonial-card .role { font-size: 0.75rem; color: var(--muted); }

/* ===== FOOTER ===== */
.site-footer {
  background: var(--surface-dark);
  color: var(--surface-dark-fg);
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 4rem 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
@media (max-width: 768px) { .footer-grid { grid-template-columns: 1fr; } }
.site-footer h3 { color: #fff; font-size: 1.125rem; margin-bottom: 1rem; }
.site-footer h4 {
  font-family: 'Source Sans 3', system-ui, sans-serif;
  font-weight: 600;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.7);
  margin-bottom: 1rem;
}
.footer-desc { font-size: 0.875rem; color: rgba(255,255,255,0.5); line-height: 1.6; }
.footer-links a {
  display: block;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 0.5rem;
  transition: color 0.3s;
}
.footer-links a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 2rem;
  text-align: center;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.3);
}

/* ===== COOKIE BANNER ===== */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 50;
  padding: 1rem 1.5rem;
}
.cookie-inner {
  max-width: 56rem;
  margin: 0 auto;
  background: var(--surface-dark);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 0.75rem;
  padding: 1.25rem 1.5rem;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.cookie-inner p {
  flex: 1;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.8);
}
.cookie-inner a { color: var(--gold); text-decoration: underline; }
.cookie-inner a:hover { color: rgba(202,138,4,0.8); }
.cookie-buttons { display: flex; gap: 0.75rem; flex-shrink: 0; }
.btn-cookie-decline {
  padding: 0.5rem 1rem;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius);
  background: none;
  color: rgba(255,255,255,0.7);
  font-size: 0.875rem;
  cursor: pointer;
  transition: all 0.2s;
}
.btn-cookie-decline:hover { color: #fff; background: rgba(255,255,255,0.1); }

/* ===== LEGAL PAGES ===== */
.legal-page {
  min-height: 100vh;
  padding: 6rem 0;
}
.legal-page .container { max-width: 48rem; }
.legal-page .back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--muted);
  margin-bottom: 2.5rem;
  transition: color 0.3s;
}
.legal-page .back-link:hover { color: var(--gold); }
.legal-page h1 { font-size: clamp(1.875rem, 3vw, 2.5rem); margin-bottom: 2.5rem; }
.legal-content h2 {
  font-size: 1.25rem;
  color: var(--fg);
  margin-top: 2rem;
  margin-bottom: 0.75rem;
}
.legal-content h3 {
  font-size: 1.125rem;
  color: var(--fg);
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
}
.legal-content p {
  color: var(--muted);
  margin-bottom: 1rem;
  line-height: 1.7;
}
.legal-content ul {
  color: var(--muted);
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}
.legal-content li {
  margin-bottom: 0.25rem;
  line-height: 1.7;
}

/* ===== UTILITIES ===== */
.text-center { text-align: center; }
.text-white { color: #fff; }
.mb-16 { margin-bottom: 4rem; }
.hidden { display: none; }
