:root {
  --accent: #e60073;
  --bg: #ffffff;
  --text: #1a1a1a;
  --font: 'Segoe UI', sans-serif;
}

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

body {
  font-family: var(--font);
  background-color: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  background: var(--bg);
  border-bottom: 2px solid var(--accent);
  position: sticky;
  top: 0;
  z-index: 10;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo img {
  height: 40px;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}

nav a {
  text-decoration: none;
  color: var(--text);
  font-weight: 600;
  transition: color 0.3s;
}

nav a:hover {
  color: var(--accent);
}

.hero {
  text-align: center;
  padding: 4rem 1rem;
  background: #f8f8f8;
}

.hero h2 {
  font-size: 2.5rem;
  color: var(--accent);
  margin-bottom: 1rem;
}

.hero p {
  font-size: 1.1rem;
}

section {
  padding: 3rem 1rem;
}

.about, .news, .kontakt {
  max-width: 900px;
  margin: auto;
}

h3 {
  font-size: 2rem;
  margin-bottom: 1rem;
  border-left: 5px solid var(--accent);
  padding-left: 0.75rem;
}

.posts {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

article {
  background: #fdfdfd;
  padding: 1.5rem;
  border: 2px solid #eee;
  border-left: 6px solid var(--accent);
  border-radius: 4px;
}

article h4 {
  margin-bottom: 0.75rem;
  font-size: 1.25rem;
}

.kontakt form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.kontakt input, .kontakt textarea {
  padding: 0.75rem;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-family: var(--font);
}

.kontakt button {
  background: var(--accent);
  color: #fff;
  padding: 0.75rem;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-weight: bold;
  transition: background 0.3s;
}

.kontakt button:hover {
  background: #ff008c;
}

footer {
  text-align: center;
  padding: 1.5rem;
  background: #f8f8f8;
  color: #666;
  margin-top: 2rem;
}

/* Responsive Anpassungen */
@media (max-width: 600px) {
  header {
    flex-direction: column;
    gap: 1rem;
  }
  .hero h2 {
    font-size: 1.8rem;
  }
}
.alben-section {
  padding: 3rem 2rem;
  background-color: #f9f9f9;
}

.alben-section h3 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  border-left: 5px solid var(--accent);
  padding-left: 0.75rem;
}

.table-wrapper {
  overflow-x: auto;
  background: white;
  border: 1px solid #ddd;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

table {
  width: 100%;
  border-collapse: collapse;
  min-width: 600px;
}

thead {
  background-color: var(--accent);
  color: #fff;
}

thead th {
  text-align: left;
  padding: 0.75rem;
}

tbody td {
  padding: 0.75rem;
  border-bottom: 1px solid #eee;
}

tbody tr:nth-child(even) {
  background-color: #fdfdfd;
}

tbody tr:hover {
  background-color: #f1f1f1;
}

/* Optional: Für kleinere Screens */
@media (max-width: 600px) {
  table {
    font-size: 0.9rem;
  }

  thead th, tbody td {
    padding: 0.5rem;
  }
}

.singles-section {
  padding: 3rem 2rem;
  background-color: #f9f9f9;
}

.singles-section h3 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  border-left: 5px solid var(--accent);
  padding-left: 0.75rem;
}

.table-wrapper {
  overflow-x: auto;
  background: white;
  border: 1px solid #ddd;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

table {
  width: 100%;
  border-collapse: collapse;
  min-width: 600px;
}

thead {
  background-color: var(--accent);
  color: #fff;
}

thead th {
  text-align: left;
  padding: 0.75rem;
}

tbody td {
  padding: 0.75rem;
  border-bottom: 1px solid #eee;
}

tbody tr:nth-child(even) {
  background-color: #fdfdfd;
}

tbody tr:hover {
  background-color: #f1f1f1;
}

.legal-page {
  max-width: 800px;
  margin: auto;
  padding: 3rem 2rem;
  font-size: 1rem;
  line-height: 1.8;
  background: #fff;
  color: #111;
}

.legal-page h1 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  border-left: 5px solid var(--accent);
  padding-left: 1rem;
}

.legal-page h2 {
  margin-top: 2rem;
  font-size: 1.3rem;
  color: var(--accent);
}

.legal-page a {
  color: var(--accent);
  text-decoration: none;
}

.legal-page a:hover {
  text-decoration: underline;
}
