@font-face {
  font-family: 'Roboto';
  src: url('fonts/Roboto-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Roboto';
  src: url('fonts/Roboto-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --primary-color: #cc3366;
  --primary-color-hover: #ff6699;
  --primary-color-soft: #f7e0e9;
  --surface-color: #ffffff;
  --surface-muted: #fafafa;
  --surface-accent: #ffe6f0;
  --text-color: #333333;
  --shadow-soft: 0 2px 4px rgba(0, 0, 0, 0.1);
  --shadow-medium: 0 4px 8px rgba(0, 0, 0, 0.1);
  --font-family: 'Roboto', sans-serif;
}

body {
  margin: 0;
  padding: 0;
  font-family: var(--font-family);
  color: var(--text-color);
  background-color: var(--surface-muted);
  line-height: 1.6;
}

h1,
h2,
h3 {
  margin-top: 0;
  text-align: center;
  color: var(--primary-color);
}

section {
  max-width: 800px;
  margin: 20px auto;
  padding: 20px;
  background-color: var(--surface-color);
  border-radius: 8px;
  box-shadow: var(--shadow-medium);
}

#hero {
  padding: 80px 20px;
  color: var(--surface-color);
  text-align: center;
  background-image: url('images/background.webp');
  background-position: center;
  background-size: cover;
  border-radius: 0;
  text-shadow: 1px 1px 6px rgba(0, 0, 0, 0.7);
}

#hero h1 {
  margin-bottom: 10px;
  font-size: 3em;
  color: var(--surface-color);
}

#hero p {
  margin-bottom: 20px;
  font-size: 1.2em;
}

#about,
#contact,
#impressum,
#datenschutz {
  text-align: center;
}

#contact p {
  margin: 10px 0;
}

.song-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.song-list li {
  margin-bottom: 10px;
  padding: 10px;
  text-align: center;
  background-color: var(--surface-accent);
  border-radius: 8px;
  box-shadow: var(--shadow-soft);
}

.song-list li a {
  display: block;
  width: 100%;
  color: var(--primary-color);
  font-weight: 700;
  text-decoration: none;
}

.song-list li a:hover {
  text-decoration: underline;
}

article {
  margin-top: 20px;
  padding: 20px;
  background-color: var(--surface-muted);
  border-radius: 8px;
  box-shadow: var(--shadow-soft);
}

article h3 {
  font-size: 1.6em;
  color: var(--text-color);
}

.cta-button,
.back-button,
.small-button {
  display: inline-block;
  text-decoration: none;
  transition: background-color 0.3s, transform 0.2s;
}

.cta-button {
  padding: 10px 25px;
  color: var(--primary-color);
  font-weight: 700;
  background-color: var(--surface-color);
  border-radius: 25px;
}

.cta-button:hover {
  background-color: var(--primary-color-soft);
  transform: scale(1.05);
}

.back-button {
  margin-top: 20px;
  padding: 10px 20px;
  color: var(--surface-color);
  font-weight: 700;
  text-align: center;
  background-color: var(--primary-color);
  border-radius: 25px;
}

.back-button:hover {
  background-color: var(--primary-color-hover);
}

.small-button {
  display: table;
  padding: 5px 15px;
  margin: 20px 0 0 auto;
  font-size: 0.9em;
  font-weight: 400;
  color: var(--primary-color);
  background-color: var(--surface-color);
  border-radius: 15px;
}

.small-button:hover {
  background-color: var(--primary-color-soft);
}

.logo {
  display: block;
  max-width: 150px;
  margin: 0 auto 20px;
}

footer {
  padding: 15px;
  color: var(--surface-color);
  text-align: center;
  background-color: var(--text-color);
}

footer a {
  margin: 0 5px;
  color: var(--surface-color);
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
}

@media (max-width: 600px) {
  #hero h1 {
    font-size: 2.5em;
  }

  #hero p {
    font-size: 1em;
  }
}
