/* Hintergrund – weicher, professioneller, harmonischer */
body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    background:
      linear-gradient(rgba(243, 239, 231, 0.89 ), rgba(243, 239, 231, 0.89)),
      url("berg.jpg") center/cover no-repeat;
    padding: 40px;
    color: #2a2a2a;
    line-height: 1.6;
  }
  
  /* Karte – moderner, ruhiger, hochwertiger */
  .card {
    max-width: 520px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(4px);
    padding: 48px 40px 40px 40px;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.12);
    border: 1px solid rgba(255,255,255,0.4);
    position: relative;
  }
  
  /* Logo rechts oben – perfekter Abstand, leicht edler */
  .logo-right {
    position: absolute;
    top: 24px;
    right: 24px;
    width: 130px;
    opacity: 0.95;
  }
  
  /* Name */
  .name {
    font-size: 30px;
    font-weight: 700;
    color: #3a3a3a;
    margin-bottom: 6px;
    margin-top: 10px;
  }
  
  /* Tätigkeit */
  .role {
    font-size: 18px;
    font-weight: 500;
    color: #6a6a6a;
    margin-bottom: 20px;
  }
  
  /* Labels */
  .label {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    margin-top: 28px;
    color: #8c7f6b;
  }
  
  /* Hinweistext */
  .note {
    font-size: 14px;
    color: #7a6f5e;
    margin-top: 8px;
    margin-bottom: 12px;
    font-style: italic;
    line-height: 1.5;
  }
  
  /* Impressum */
  .impressum {
    font-size: 11px;
    color: #7a6f5e;
    margin-top: 4px;
    margin-bottom: 10px;
    font-style: italic;
    opacity: 0.9;
  }
  
  /* Links */
  a {
    color: #8c6f3f;
    text-decoration: none;
    font-weight: 500;
  }
  
  a:hover {
    text-decoration: underline;
    color: #a07f4a;
  }
  
  /* Mobile */
  @media (max-width: 480px) {
    body {
      padding: 20px;
    }
  
    .card {
      padding: 32px 24px;
    }
  
    .logo-right {
      width: 80px;       /* kleiner für Smartphones */
      top: 12px;         /* höher, damit es nicht in den Text rutscht */
      right: 12px;
    }
  
    .name {
      margin-top: 40px;  /* zusätzlicher Abstand nach unten, falls nötig */
    }
  }
  
    