:root {
  --bg-black: #080808;
  --text-silver: #c0c0c0;
  --text-silver-bright: #e8e8e8;
  --gold-gradient: linear-gradient(135deg, #bf953f 0%, #fcf6ba 25%, #b38728 50%, #fbf5b7 75%, #aa771c 100%);
  --gold-card-bg: linear-gradient(145deg, rgba(191, 149, 63, 0.12) 0%, rgba(170, 119, 28, 0.05) 100%);
  --gold-border: 1px solid rgba(212, 175, 55, 0.4);
}

body {
  background-color: var(--bg-black);
  color: var(--text-silver);
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  margin: 0;
  padding: 0;
  line-height: 1.6;
}

header {
  background: #000;
  border-bottom: 1px solid #222;
  padding: 1.2rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.5rem;
  font-weight: 800;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-transform: uppercase;
  letter-spacing: 2px;
}

nav a {
  color: var(--text-silver);
  text-decoration: none;
  margin-left: 1.5rem;
  font-weight: 500;
  transition: color 0.3s ease;
}

nav a:hover, nav a.active {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.container {
  max-width: 1100px;
  margin: 3rem auto;
  padding: 0 1.5rem;
}

/* Gold-Verlauf Textblöcke / Cards */
.gold-card {
  background: var(--gold-card-bg);
  border: var(--gold-border);
  border-radius: 12px;
  padding: 2.5rem;
  margin-bottom: 2rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.6);
  position: relative;
  overflow: hidden;
}

h1, h2, h3 {
  color: var(--text-silver-bright);
  font-weight: 700;
  margin-top: 0;
}

.gold-title {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.btn-gold {
  display: inline-block;
  background: var(--gold-gradient);
  color: #000;
  font-weight: 700;
  padding: 0.8rem 1.8rem;
  border-radius: 6px;
  text-decoration: none;
  margin-top: 1rem;
  transition: transform 0.2s;
}

.btn-gold:hover {
  transform: translateY(-2px);
}

.img-responsive {
  width: 100%;
  max-height: 400px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 1.5rem;
  border: var(--gold-border);
}

footer {
  text-align: center;
  padding: 2rem;
  border-top: 1px solid #1a1a1a;
  color: #666;
  font-size: 0.9rem;
}