/* === ENCHANTED VIOLA: SANFTES BEIGE-DESIGN === */

:root {
  --background: #f9f5ef;             /* helles warmes Beige */
  --text: #222;                      /* dunkler Text für gute Lesbarkeit */
  --accent: #d4af37;                 /* Goldton */
  --accent-hover: #c59e2c;           /* dunkleres Gold für Hover */
  --accent-secondary: #8f6f3f;       /* optionaler Zweitton */
}

/* Grundstruktur */
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background-color: var(--background);
  color: var(--text);
  line-height: 1.6;
}

/* Header + Navigation */
header {
  background-color: white;
  padding: 20px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

nav a {
  color: var(--text);
  text-decoration: none;
  margin: 0 10px;
  font-weight: 600;
}

.logo {
  font-size: 1.5em;
  color: var(--accent);
}

/* Hero-Section */
.hero {
  padding: 60px 20px;
  text-align: center;
  background-color: #fffdf8;
  border-bottom: 1px solid #e6e1d8;
}

.hero h1 {
  font-size: 2.8em;
  margin-bottom: 10px;
}

.hero p {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: #444;
}

.btn {
  background-color: var(--accent);
  color: white;
  padding: 12px 26px;
  border: none;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1em;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
  transition: background-color 0.3s ease, transform 0.2s ease;
  display: inline-block;
}

.btn:hover {
  background-color: var(--accent-hover);
  transform: scale(1.05);
}

/* Grid für Karten */
.grid-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  padding: 50px 20px;
}

/* Karten */
.card {
  background-color: white;
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 18px rgba(0, 0, 0, 0.08);
}

.card h3 {
  margin-top: 0;
  color: var(--accent-hover);
  font-size: 1.3em;
}

.card p {
  color: #444;
  font-size: 1em;
}

.card a {
  display: inline-block;
  margin-top: 12px;
  color: var(--accent);
  font-weight: bold;
  text-decoration: none;
  transition: color 0.2s ease;
}

.card a:hover {
  color: var(--accent-hover);
}

/* Footer */
footer {
  background-color: #f1ede5;
  text-align: center;
  padding: 20px;
  font-size: 0.9em;
  color: #555;
  border-top: 1px solid #e6e1d8;
}

/* ========== ENCHANTED VIOLA COVERBILDER ========== */
.album-image {
  width: 100%;
  max-width: 250px;
  height: auto;
  object-fit: cover;
  display: block;
  margin: 0 auto;
}

.hero-flex {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  align-items: flex-start;
  margin-top: 1rem;
}

.profile-pic {
  width: 220px;
  max-width: 100%;
  border-radius: 10px;
  object-fit: cover;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

.hero-text {
  flex: 1;
  min-width: 250px;
}

.social-buttons a {
  display: inline-flex;
  align-items: center;
  margin-right: 12px;
  margin-bottom: 8px;
  padding: 8px 14px;
  border-radius: 5px;
  background-color: var(--accent);
  color: white;
  text-decoration: none;
  font-weight: bold;
  font-size: 0.9rem;
  transition: background-color 0.3s ease;
}

.social-buttons a:hover {
  background-color: var(--accent-secondary);
}

.social-buttons .icon {
  width: 20px;
  height: 20px;
  margin-right: 8px;
}

.social-buttons .icon {
  width: 20px;
  height: 20px;
  margin-right: 8px;
  vertical-align: middle;
}

