/* ============================
   VISITENKARTE DRUCKSETUP
   Endformat: 85x55mm
   Beschnitt: 3mm -> Datei 91x61mm
   Safe Zone: 5mm
============================ */

:root{
  --paper: #FAFAF8;
  --ink: #0b0f14;
  --muted: #3d4a5c;

  /* Print-safe Blau (nicht zu neon) */
  --accent: #1b2a8f;

  /* Vorschau */
  --bg: #0b0f14;
  --bleedLine: rgba(255,255,255,0.18);
  --trimLine: rgba(0,0,0,0.35);
  --safeLine: rgba(0,140,255,0.45);
}

*{ box-sizing: border-box; }

body{
  margin: 0;
  font-family: "EB Garamond", serif;
  background: radial-gradient(800px 500px at 30% 20%, rgba(125,211,252,.10), transparent 55%), var(--bg);
}

/* Vorschau mittig */
.stage{
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 40px 16px;
}

/* Druckformat inkl. Beschnitt */
.bleed{
  width: 85mm;
  height: 55mm;
  background: var(--paper);
  display: grid;
  place-items: center;
}

/* Endformat */
.trim{
  width: 85mm;
  height: 55mm;
  border: 2px solid var(--trimLine);
  position: relative;
}

/* Safe */
.safe{
  position: absolute;
  top: 5mm;
  left: 5mm;
  right: 5mm;
  bottom: 5mm;

  border: 2px dashed var(--safeLine);

  display: grid;
  align-content: center;
    justify-items: start;  /* alles links ausrichten */

    

}

/* Kopfbereich */
.top{
  display: grid;
  grid-template-columns: 18mm 1fr;
  gap: 8mm;
  align-items: center;
  margin-left: ;
  
}

.logo{
  width: 18mm;
  height: 18mm;
  object-fit: contain;
  border-radius: 3mm; /* edel */
  margin-top: 10px;
  margin-left: 14px;
}

/* Typo */
.name{
  font-weight: 600;
  font-size: 12.5pt;
  letter-spacing: 0.02em;
  color: var(--ink);
   font-family: "Oswald", sans-serif;
  letter-spacing: 0.02em;
}

.role{
  margin-top: 1mm;
  font-size: 8pt;
  color: var(--accent);
  font-family: "Oswald", sans-serif;
  font-weight: 500;
}



/* Kontaktdaten */
.info{
  display: grid;
  gap: 1mm;
  margin-left: 98px;
  justify-items: start;
  text-align: left;
  margin-top: -5.5px;
  margin-bottom: 6px;
  
}

.line{
  font-size: 8.2pt;
  line-height: 1.45;
  color: #445569;
  font-family: "EB Garamond", serif;
  font-weight: 400;
}
  
  
@page{
  size: 85mm 55mm;
  margin: 0;
}

@media print{
  body{ background: #fff; }
  .stage{ padding: 0; min-height: auto; }
  .trim, .safe{ border: none; }
}
