/* DuRoc print.css – Feinstand 2026-09-09 / Bogen unter Logo */
*{box-sizing:border-box}
html,body{
  margin:0;
  padding:0;
  background:#d8d8dc;
  font-family:Arial,"Segoe UI",sans-serif;
  color:#111;
}
.print-actions{
  position:sticky;
  top:0;
  z-index:50;
  display:flex;
  justify-content:center;
  gap:10px;
  padding:12px;
  background:#111;
}
.print-actions a,.print-actions button{
  border:1px solid #333;
  background:#fff;
  color:#111;
  border-radius:999px;
  padding:10px 16px;
  text-decoration:none;
  font-weight:700;
  cursor:pointer;
}

/* =========================================================
   WOCHENPLAN – Seite 1
   Ziel: exakt die Formsprache der Webkarten:
   Foto oben, deutlich sichtbarer weißer Bogen,
   Kreislogo sitzt auf Foto + Bogen.
   ========================================================= */
.week-print-sheet{
  position:relative;
  width:297mm;
  height:210mm;
  margin:8mm auto;
  padding:6mm 7.5mm 10mm;
  background:#fff;
  overflow:hidden;
  box-shadow:0 15px 50px rgba(0,0,0,.16);
  break-after:page;
  page-break-after:always;
}

.week-print-head{
  height:19mm;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:6mm;
  padding-bottom:2mm;
  margin-bottom:3mm;
  border-bottom:1px solid #ececee;
}
.week-print-head img{
  width:30mm;
  height:19mm;
  object-fit:contain;
}
.week-print-head p{
  margin:0 0 .4mm;
  color:#999;
  font:italic 8.7pt "Palatino Linotype","Book Antiqua",Palatino,Georgia,serif;
}
.week-print-head h1{
  margin:0 0 .5mm;
  font:500 20pt/1 "Palatino Linotype","Book Antiqua",Palatino,Georgia,serif;
}
.week-print-head span{
  font-size:7.8pt;
  color:#555;
}

.week-print-grid{
  display:grid;
  grid-template-columns:repeat(8,minmax(0,1fr));
  grid-template-rows:80mm 80mm;
  column-gap:3mm;
  row-gap:3mm;
}
.week-print-card{
  position:relative;
  grid-column:span 2;
  height:80mm;
  overflow:hidden;
  background:#fff;
  border:1px solid #dedee2;
  border-radius:5mm;
  box-shadow:0 1.3mm 4mm rgba(0,0,0,.06);
}
.week-print-card:nth-child(5){grid-column:2 / span 2}
.week-print-card:nth-child(6){grid-column:4 / span 2}
.week-print-card:nth-child(7){grid-column:6 / span 2}

/* FOTO – wie in der Webkarte klar dominant */
.week-print-photo{
  position:absolute;
  z-index:1;
  top:0;
  left:0;
  right:0;
  height:36mm;
  overflow:hidden;
  background:#eee;
}
.week-print-photo img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

/* DER BOGEN – eigenes Element über dem Foto.
   Nicht mehr als negativer pseudo-layer im Textblock. */
.week-print-card::after{
  content:"";
  position:absolute;
  z-index:2;
  left:-18%;
  width:136%;
  height:31mm;
  top:24mm;
  background:#fff;
  border-radius:50% 50% 0 0 / 100% 100% 0 0;
  pointer-events:none;
}

/* TEXTBEREICH – transparent, damit der Bogen sichtbar bleibt */
.week-print-copy{
  position:absolute;
  z-index:4;
  left:0;
  right:0;
  top:31mm;
  bottom:0;
  margin:0;
  padding:8mm 3.2mm 2.2mm;
  background:transparent;
  text-align:left;
}
.week-print-copy::before{
  display:none!important;
}

/* LOGO – sitzt sichtbar auf Foto und Bogen */
.week-print-logo{
  position:absolute;
  z-index:8;
  top:27mm;
  right:3.8mm;
  width:18mm;
  height:18mm;
  display:grid;
  place-items:center;
  border:1px solid #ececef;
  border-radius:50%;
  background:#fff;
  box-shadow:0 1.6mm 4.5mm rgba(0,0,0,.14);
}
.week-print-logo img{
  width:13.5mm;
  height:13.5mm;
  object-fit:contain;
}

.week-print-copy>span{
  display:block;
  margin:0 14mm .35mm 0;
  color:#999;
  text-align:left;
  font:italic 7pt "Palatino Linotype","Book Antiqua",Palatino,Georgia,serif;
}
.week-print-copy h2{
  min-height:7.6mm;
  margin:0 14mm .8mm 0;
  text-align:left;
  font:500 10.6pt/1.03 "Palatino Linotype","Book Antiqua",Palatino,Georgia,serif;
}
.week-print-copy ul{
  list-style:none;
  padding:0;
  margin:0;
  text-align:left;
}
.week-print-copy li{
  position:relative;
  padding:0 0 .28mm 2.9mm;
  font-size:6.35pt;
  line-height:1.10;
}
.week-print-copy li:before{
  content:"";
  position:absolute;
  left:0;
  top:.95mm;
  width:1.05mm;
  height:1.05mm;
  border:.5pt solid #f3a52b;
  border-radius:50%;
}

.week-print-footer{
  position:absolute;
  left:7.5mm;
  right:7.5mm;
  bottom:4mm;
  display:grid;
  grid-template-columns:1fr auto 1fr;
  gap:4mm;
  padding-top:2mm;
  border-top:1px solid #ececee;
  font-size:7pt;
  color:#555;
}
.week-print-footer span{
  text-align:center;
  font-weight:700;
  color:#111;
}
.week-print-footer em{
  text-align:right;
  color:#999;
  font-family:"Palatino Linotype","Book Antiqua",Palatino,Georgia,serif;
}

/* =========================================================
   TAGESKARTEN
   Gleichmäßiger Halboval-Bogen über die komplette Höhe.
   Die Bogenkante läuft exakt unter dem Kreislogo.
   ========================================================= */
.day-sheet{
  position:relative;
  width:297mm;
  height:210mm;
  margin:8mm auto;
  overflow:hidden;
  background:#fff;
  box-shadow:0 15px 50px rgba(0,0,0,.16);
  break-before:page;
  break-after:page;
  page-break-before:always;
  page-break-after:always;
}
.day-sheet:last-child{
  break-after:auto;
  page-break-after:auto;
}

.print-photo{
  position:absolute;
  z-index:1;
  inset:0 auto 0 0;
  width:45%;
  height:210mm;
  overflow:hidden;
  background:#eee;
}
.print-photo img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

/* Rechte weiße Fläche */
.print-curve{
  position:absolute;
  z-index:3;
  top:0;
  right:0;
  bottom:0;
  left:42%;
  height:210mm;
  padding:22mm 15mm 18mm 29mm;
  background:#fff;
  text-align:center;
  overflow:visible;
}

/* Exakt symmetrische Ellipse:
   oben/unten trifft sie bei 42% auf die weiße Fläche,
   in der Mitte liegt die Bogenkante 35 mm weiter links. */
.print-curve:before{
  content:"";
  position:absolute;
  z-index:-1;
  top:0;
  bottom:0;
  left:-35mm;
  width:70mm;
  height:210mm;
  background:#fff;
  border-radius:50%;
}

/* Das Logo sitzt mit seinem Mittelpunkt exakt auf der Bogenkante. */
.print-logo{
  position:absolute;
  z-index:20;
  left:calc(42% - 35mm);
  top:50%;
  transform:translate(-50%,-50%);
  width:44mm;
  height:44mm;
  display:grid;
  place-items:center;
  border:1px solid #ececef;
  border-radius:50%;
  background:#fff;
  box-shadow:0 3.2mm 12mm rgba(0,0,0,.17);
}
.print-logo img{
  width:33mm;
  height:33mm;
  object-fit:contain;
}

.print-kicker{
  margin:0 0 2.4mm;
  color:#aaa;
  font:italic 12.5pt "Palatino Linotype","Book Antiqua",Palatino,Georgia,serif;
}
.print-title{
  margin:0 0 3.2mm;
  font:500 31pt/1.02 "Palatino Linotype","Book Antiqua",Palatino,Georgia,serif;
}
.print-desc{
  max-width:151mm;
  margin:0 auto 6.2mm;
  color:#666;
  font-size:12pt;
  line-height:1.38;
}
.print-list{
  max-width:151mm;
  margin:0 auto;
  padding:0;
  list-style:none;
  text-align:left;
}
.print-list li{
  position:relative;
  margin:0 0 3mm;
  padding:0 0 0 6.5mm;
  font-size:13.2pt;
  line-height:1.28;
}
.print-list li:before{
  content:"";
  position:absolute;
  left:0;
  top:5pt;
  width:2.6mm;
  height:2.6mm;
  border:1.1pt solid #f3a52b;
  border-radius:50%;
  background:#fff;
}

.print-bottom{
  position:absolute;
  left:29mm;
  right:13mm;
  bottom:12mm;
  display:grid;
  grid-template-columns:1fr auto 1fr;
  gap:4mm;
  align-items:center;
  padding-top:4mm;
  border-top:1px solid #e2e2e4;
  font-size:9.5pt;
}
.print-bottom strong{font-size:10pt}
.print-bottom .center{text-align:center}
.print-bottom .right{text-align:right}

.print-note{
  position:absolute;
  left:29mm;
  right:13mm;
  bottom:5mm;
  text-align:center;
  color:#999;
  font-size:7.5pt;
}

@media print{
  html,body{background:#fff}
  .print-actions{display:none}
  .week-print-sheet,.day-sheet{margin:0;box-shadow:none}
  @page{size:A4 landscape;margin:0}
}

/* Feinabstimmung: Wochenplan Schrift höher/größer; Tagesbogen gleichmäßiger, Logo nach links */
