:root{
  --bg:#f5f5f5;
  --panel:#ffffff;
  --accent-orange:#ff8c42;
  --accent-brown:#8b5e3c;
  --accent-darkblue:#1a3a52;
  --accent-black:#1a1a1a;
  --text:#333333;
  --muted:#777777;
  --light-gray:#e8e8e8;
  --glass: rgba(0,0,0,0.02);
  --radius:10px;
  font-family: "Georgia", "Palatino Linotype", serif;
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  background: linear-gradient(180deg, #f5f5f5 0%, #f0f0f0 100%);
  color:var(--text);
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
  line-height:1.5;
}

.container{max-width:1100px;margin:0 auto;padding:24px}

.site-header{
  background: linear-gradient(90deg, rgba(255,140,66,0.08), rgba(26,58,82,0.08));
  border-bottom:1px solid rgba(0,0,0,0.1);
  padding:28px 0;
}
.site-header.small{padding:16px 0}
.site-header .logo {
  max-width: 100px;
  height: auto;
  margin-bottom: 12px;
}
.site-title{
  font-family:"Cinzel", serif;
  font-size:2.2rem;
  margin:0;
  color:var(--accent-black);
  display: flex;
  align-items: center;
  gap: 12px;
}
.site-header.small .site-title {
  font-size: 1.5rem;
}
.tagline{color:var(--muted);margin-top:6px}

.main-nav{margin-top:12px}
.main-nav a{
  color:var(--accent-darkblue);
  text-decoration:none;
  margin-right:14px;
  padding:6px 10px;
  border-radius:6px;
  transition: all 0.2s ease;
}
.main-nav a:hover{
  background:var(--light-gray);
  color:var(--accent-orange);
  font-weight:500;
}

.about p, .works-intro p{max-width:70ch}

.about-section {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: start;
}

.about {
  flex: 1;
}

.social-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 20px;
  background: linear-gradient(135deg, rgba(255,140,66,0.08) 0%, rgba(26,58,82,0.05) 100%);
  border-radius: 8px;
  border-left: 3px solid var(--accent-orange);
  min-width: 120px;
}

.social-links h3 {
  margin: 0;
  color: var(--accent-orange);
  font-size: 1rem;
  text-align: center;
}

.social-links a {
  display: inline-block;
}

.social-icon {
  width: 40px;
  height: 40px;
}

@media (max-width: 768px) {
  .about-section {
    grid-template-columns: 1fr;
  }
  .social-links {
    flex-direction: row;
    justify-content: center;
    min-width: auto;
  }
}

.btn{
  display:inline-block;
  padding:10px 16px;
  background:var(--accent-orange);
  color:#ffffff;
  border-radius:8px;
  text-decoration:none;
  transition: all 0.2s ease;
}
.btn:hover {
  background: var(--accent-brown);
  transform: translateY(-2px);
}
.btn.ghost{
  background:transparent;
  border:2px solid var(--accent-darkblue);
  color: var(--accent-darkblue);
}
.btn.ghost:hover {
  background: rgba(26,58,82,0.1);
  color: var(--accent-orange);
  border-color: var(--accent-orange);
}
.btn.small{padding:6px 10px;font-size:0.9rem}

.book-list{display:grid;grid-template-columns:repeat(auto-fit,minmax(320px,1fr));gap:18px;margin-top:18px}
.book{
  display:grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  background: linear-gradient(135deg, rgba(255,140,66,0.08) 0%, rgba(26,58,82,0.05) 100%);
  padding:16px;
  border-radius:10px;
  align-items:start;
  border-left: 3px solid var(--accent-orange);
  transition: all 0.3s ease;
}
.book:hover {
  background: linear-gradient(135deg, rgba(255,140,66,0.15) 0%, rgba(26,58,82,0.08) 100%);
  transform: translateY(-4px);
}
.cover{
  width:110px;
  height:160px;
  object-fit:cover;
  border-radius:6px;
  margin-right:12px;
  box-shadow: 0 4px 12px rgba(255,140,66,0.2);
  transition: transform 0.3s ease;
}
.book:hover .cover {
  transform: scale(1.02);
}
.book-left {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.book-left .meta .links {
  margin-top: 0;
}
.meta .title{margin:0;color:var(--accent-orange);font-size:1.05rem}
.meta .date{color:var(--muted);font-size:0.9rem;margin:6px 0}
.meta .desc{margin:8px 0;color:var(--text);line-height:1.5}
.meta .links {margin-top: 12px; display: flex; gap: 8px;}
.meta .links a {transition: transform 0.2s ease;}
.meta .links a:hover {transform: scale(1.1);}

.icon{width:32px;height:32px;transition:transform 0.2s ease}
.icon-amazonbook{width:32px;height:32px;transition:transform 0.2s ease}
a:hover .icon,
a:hover .icon-amazonbook {transform:scale(1.1)}

.audiocover{max-width:220px}
.audiocover img{width:100%;height:auto;border-radius:6px}

/* Buch-Sektion */
.book-section {margin-top: 28px; margin-bottom: 28px;}
.book-grid {display: grid; grid-template-columns: 180px 1fr; gap: 20px; align-items: start;}
.book-cover {width: 180px;}
.book-cover img {width: 100%; height: auto; border-radius: 6px; box-shadow: 0 8px 24px rgba(255,140,66,0.2); transition: transform 0.3s ease;}
.book-cover:hover img {transform: translateY(-4px);}
.book-content {background: linear-gradient(135deg, rgba(255,140,66,0.08) 0%, rgba(26,58,82,0.05) 100%); padding: 16px; border-radius: 8px; border-left: 3px solid var(--accent-orange);}
.book-content h3 {margin-top: 0; color: var(--accent-orange); font-size: 1.3rem;}
.klappentext {color: var(--text); margin: 12px 0; line-height: 1.6;}
.book-link {margin-top: 16px;}

/* Audio-Sektion */
.audio-section {margin-bottom: 28px;}
.audio-grid {display: grid; grid-template-columns: 220px 1fr; gap: 20px; align-items: start; margin-bottom: 20px;}
.audiocover img {box-shadow: 0 8px 24px rgba(255,140,66,0.2); transition: transform 0.3s ease;}
.audiocover:hover img {transform: scale(1.02);}
.stream-content {padding: 12px;}
.stream-content h4 {color: var(--accent-orange); margin-top: 0; margin-bottom: 12px;}
.stream-content .stream-links {margin: 0; display: flex; gap: 12px; flex-wrap: wrap;}
.stream-content a {transition: transform 0.2s ease;}
.stream-content a:hover {transform: scale(1.1);}

/* Playlist */
.playlist {
  list-style: none;
  padding: 0;
  margin: 16px 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 12px;
}

.playlist li {
  display: flex;
  align-items: center;
}

.playlist li a {
  color: var(--text);
  text-decoration: none;
  padding: 12px 14px;
  border-left: 3px solid var(--accent-orange);
  background: linear-gradient(135deg, rgba(255,140,66,0.08) 0%, rgba(26,58,82,0.05) 100%);
  border-radius: 4px;
  transition: all 0.3s ease;
  flex: 1;
  font-size: 0.95rem;
}

.playlist li a:hover {
  background: linear-gradient(135deg, rgba(255,140,66,0.15) 0%, rgba(26,58,82,0.08) 100%);
  padding-left: 18px;
  color: var(--accent-orange);
}

.playlist .track-num {
  color: var(--accent-orange);
  font-weight: bold;
  margin-right: 6px;
  opacity: 0.8;
}

/* Songs-Sektion */
.songs-section {margin-top: 28px;}
.songs-section h2 {color: var(--accent-orange); margin-bottom: 20px; font-size: 1.8rem; letter-spacing: 1px;}
.song {
  background: linear-gradient(135deg, rgba(255,140,66,0.08) 0%, rgba(26,58,82,0.05) 100%);
  padding: 20px;
  border-radius: 8px;
  margin-bottom: 16px;
  border-left: 3px solid var(--accent-orange);
  transition: all 0.3s ease;
}
.song:hover {
  background: linear-gradient(135deg, rgba(255,140,66,0.15) 0%, rgba(26,58,82,0.08) 100%);
  transform: translateX(4px);
}
.song-grid {display: grid; grid-template-columns: 1fr 280px; gap: 20px;}
.song-left {display: flex; flex-direction: column;}
.song-left h3 {margin-top: 0; color: var(--accent-orange); font-size: 1.1rem;}
.song-right {display: flex; flex-direction: column;}
.song-right audio {width: 100%; margin-bottom: 12px; border-radius: 4px;}
.stream-links {display: flex; gap: 12px; margin: 0;}

@media (max-width:800px) {
  .book-grid {grid-template-columns: 1fr;}
  .book-cover {width: 100%; max-width: 200px;}
  .audio-grid {grid-template-columns: 1fr;}
  .song-grid {grid-template-columns: 1fr;}
  .playlist {grid-template-columns: 1fr;}
}

.site-footer{border-top:1px solid rgba(0,0,0,0.1);padding:18px 0;margin-top:28px;color:var(--muted)}
.site-footer.small{padding:12px 0}

.project-media{display:grid;grid-template-columns:1fr 1fr;gap:20px;margin-top:18px}
@media (max-width:800px){.project-media{grid-template-columns:1fr}}

.playlist{padding:12px;border-radius:8px}
.lyrics{margin-top:10px;color:var(--text)}
.lyric-note{font-style:italic;color:#555555;
  /* split long song lyrics into two columns for easier reading */
  column-count: 2;
  column-gap: 2rem;
  /* preserve the line breaks as entered in the HTML */
  white-space: pre-wrap;
}

/* single column on narrow screens to avoid overly narrow text blocks */
@media (max-width:800px) {
  .lyric-note { column-count: 1; }
}
