:root {

   /* ===== THEME 1 (TaKeTiNa Light) ===== */
  /*
  --bg: #f4f1eb;
  --container: #ffffff;
  --text: #404040;
  --text-muted: #7a7a7a;
  --button: #d6871d;
  --button-text: #ffffff;
  */

  /* ===== THEME 2 (Warm Sand) ===== */
  
  --bg: #ece4d8;
  --container: #f8f6f2;
  --text: #4a4743;
  --text-muted: #80796f;
  --button: rgb(155, 124, 83);
  --button-text: #ffffff;
  */

  /* ===== THEME 3 (Earthy Dark) ===== */
  /*
  --bg: #ddd6cb;
  --container: #3b3732;
  --text: #ffffff;
  --text-muted: #cfc7bb;
  --button: #d6871d;
  --button-text: #ffffff;
  */
}


/* Grundlayout */
body {
  margin: 0;
  font-family: sans-serif;
  background: var(--bg);
}

/* Container */
.container {
  max-width: 500px;
  margin: 40px auto;
  padding: 20px;
  background: var(--container);
  border-radius: 16px;
  text-align: center;
}

/* Avatar */
.avatar {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
  margin: 0 auto 16px;
  /* border: 3px solid rgba(255,255,255,0.9); */
  box-shadow: 0 4px 10px rgba(0,0,0,0.4);
  transition: 0.5s;
}


/* Text */
h2 {
  margin: 0;
  color: var(--text);
}

p {
  color: var(--text-muted);
  margin-bottom: 16px;
}

/* Icon-Leiste */
.icons {
  display: flex;
  justify-content: center;
  gap: 18px;
  margin: 20px 0 34px;
}

/* Icons (mit inline SVG) */
.icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background-color: var(--container);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text);
  text-decoration: none;
  transition: 0.2s;
  position: relative;
    opacity: 0.8;
}

/* SVG Größe */
.icon svg {
  width: 25px;
  height: 25px;
  fill: currentColor;
}

/* Hover Icons */
.icon:hover {
  transform: translateY(-2px) scale(1.05);
  opacity: 1;
}

/* Tooltip für Icons */
.icon::after {
  content: attr(data-label);
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(4px);
  background: rgba(0,0,0,0.85);
  color: #fff;
  font-size: 12px;
  line-height: 1;
  padding: 6px 8px;
  border-radius: 6px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: 0.2s;
  z-index: 10;
}

.icon:hover::after {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* Buttons */
.link {
  position: relative;
  display: block;
  margin-bottom: 12px;
  padding: 14px;
  padding-right: 50px;
  text-align: center;
  background: var(--button);
  color: var(--button-text);
  text-decoration: none;
  border-radius: 999px;
  font-weight: bold;
  transition: 0.2s;
}

.link:hover {
  filter: brightness(0.8);
  transform: translateY(-2px);
}

/* 3 Punkte */
.dots {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 20px;
  color: #888;
  cursor: pointer;
  opacity: 0.6;
  transition: 0.2s;
}

.dots:hover {
  opacity: 1;
  transform: translateY(-50%) scale(1.1);
}