/* ============================================================
   Das Druckerteam — Landing canvas styles
   (ported from the static index.html <style> block + booking/form)
   ============================================================ */

* { box-sizing: border-box; }
body { margin: 0; background: #fff; -webkit-font-smoothing: antialiased; }

button { cursor: pointer; }
button:not([data-hover]) { transition: filter .15s ease, transform .1s ease, box-shadow .15s ease; }
button:not([data-hover]):hover { filter: brightness(1.05); }
button:active { transform: translateY(1px); }
a[href^="tel:"] { transition: filter .15s ease; }
a[href^="tel:"]:hover { filter: brightness(1.06); }

/* Hover engine: elements with data-hover="prop:val;…" get those styles on hover.
   !important so they beat inline base styles. */
@keyframes dtPulse {
  0%   { box-shadow: 0 0 0 0 rgba(34,197,94,.55); }
  70%  { box-shadow: 0 0 0 9px rgba(34,197,94,0); }
  100% { box-shadow: 0 0 0 0 rgba(34,197,94,0); }
}

@media (min-width: 821px) { #dtMobileBar { display: none !important; } }
@media (max-width: 820px) { #dtNavPhone .dt-navsub { display: none !important; } }
@media (max-width: 820px) { #dtFooter { padding-bottom: 80px; } }
@media (max-width: 640px) {
  #dtNavPhone { display: none !important; }
  [data-bignum] { font-size: 27px !important; letter-spacing: -.02em !important; }
  [data-phonecard] { padding: 20px 18px !important; }
  [data-formrow] { grid-template-columns: 1fr !important; }
  [data-pad] { padding-top: 46px !important; padding-bottom: 46px !important; }
  [data-heroimg] { aspect-ratio: 16/10 !important; }
  #dtHero { display: flex !important; flex-direction: column; align-items: stretch !important; gap: 0 !important; }
  #dtHeroLeft { display: contents; }
  #dtHeroChecks { order: 1; }
  #dtHeroImg { order: 2; margin-bottom: 34px; }
  #dtHeroImg > img { height: 100% !important; aspect-ratio: auto !important; }
  #dtHeroPhone { order: 3; }
  #dtHeroBtn { order: 4; }
}
@media (max-width: 380px) {
  [data-bignum] { font-size: 23px !important; }
}
@media (max-width: 720px) {
  [data-cmprow] { flex-direction: column !important; }
}

/* ============================ Booking widget ============================ */
.ddt-booking {
  background: #fff; border-radius: 18px; border: 1px solid #E4E9F0; padding: 26px;
  box-shadow: 0 24px 50px -30px rgba(15,33,55,.4); font-family: Manrope, sans-serif;
}
.ddt-step-head { display: flex; align-items: center; gap: 10px; margin-bottom: 18px; }
.ddt-step-num {
  width: 26px; height: 26px; border-radius: 50%; background: #2BBDBD; color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-family: Sora, sans-serif; font-weight: 700; font-size: 13px; flex-shrink: 0;
}
.ddt-step-title { font-family: Sora, sans-serif; font-weight: 600; font-size: 15px; color: #0F2137; }
.ddt-chips { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 24px; }
.ddt-times { display: grid; grid-template-columns: repeat(auto-fill, minmax(78px,1fr)); gap: 8px; margin-bottom: 24px; }
.ddt-chip {
  padding: 12px 13px; border-radius: 10px; min-height: 44px; border: 1px solid #E4E9F0;
  background: #fff; color: #0F2137; font-weight: 500; font-family: Manrope, sans-serif;
  font-size: 14px; cursor: pointer; transition: all .15s; text-align: center; white-space: nowrap;
}
/* Date chips grow to fill the row evenly (nicer on narrow screens). */
.ddt-chips .ddt-chip { flex: 1 1 auto; }
.ddt-chip:hover { border-color: #B9ECEC; background: #F4FBFB; }
.ddt-chip[aria-pressed="true"] { border: 1.5px solid #2BBDBD; background: #E8FAFA; font-weight: 700; }
.ddt-more {
  flex: 0 0 100%; margin-top: 4px; padding: 10px 12px; border: 1px dashed #B9ECEC;
  background: #F4FBFB; color: #1A9C9C; border-radius: 10px; font-family: Manrope, sans-serif;
  font-size: 13.5px; font-weight: 600; cursor: pointer; transition: background .15s;
}
.ddt-more:hover { background: #E8FAFA; }
.ddt-fields { display: flex; flex-direction: column; gap: 10px; margin-bottom: 18px; }
.ddt-input {
  width: 100%; box-sizing: border-box; padding: 13px 14px; border-radius: 11px;
  border: 1px solid #E4E9F0; font-family: Manrope, sans-serif; font-size: 16px;
  color: #0F2137; outline: none; background: #FAFBFC;
}
.ddt-input.ddt-error { border: 1.5px solid #E0556B; background: #FDF2F4; }
.ddt-btn {
  width: 100%; padding: 15px; border-radius: 12px; border: none; background: #2BBDBD;
  color: #fff; font-weight: 700; font-family: Sora, sans-serif; font-size: 16px;
  cursor: pointer; box-shadow: 0 10px 24px -10px rgba(43,189,189,.7); transition: background .2s;
}
.ddt-btn:hover { background: #1FA3A3; }
.ddt-btn[disabled] { background: #CBD5DF; cursor: not-allowed; box-shadow: none; }
.ddt-note { text-align: center; margin-top: 12px; font-size: 12.5px; color: #7A8896; }
.ddt-hint { font-size: 12.5px; color: #E0556B; margin-top: -4px; min-height: 0; }
.ddt-success { text-align: center; padding: 14px 4px; }
.ddt-success-check {
  width: 62px; height: 62px; border-radius: 50%; background: #E8FAEE; color: #16A34A;
  display: flex; align-items: center; justify-content: center; font-size: 30px; margin: 0 auto 18px;
}
.ddt-hidden { display: none !important; }

/* Datenschutz consent + Turnstile captcha */
.ddt-consent {
  display: flex; align-items: flex-start; gap: 8px; margin: 2px 0 12px;
  font-size: 13px; line-height: 1.45; color: #5C6B7A; cursor: pointer;
}
.ddt-consent input { margin-top: 2px; flex-shrink: 0; width: 16px; height: 16px; }
.ddt-consent a { color: #1A9C9C; }
.ddt-turnstile { margin: 6px 0 12px; }
.ddt-turnstile:empty { display: none; margin: 0; }

/* Booking widget on small screens */
@media (max-width: 600px) {
  .ddt-booking { padding: 18px 16px; }
  .ddt-chips { gap: 7px; }
  .ddt-chip { padding: 11px 10px; }
  .ddt-times { grid-template-columns: repeat(auto-fill, minmax(68px, 1fr)); }
  .ddt-step-title { font-size: 14.5px; }
}

/* Blocked-dates note under the day picker */
.ddt-blocked-note {
  margin: -10px 0 22px; padding: 12px 14px; background: #FBF4F4; border: 1px solid #F2D9DC;
  border-radius: 11px; font-size: 12.5px; color: #8a5a60; line-height: 1.7;
}
.ddt-blocked-title { display: block; font-weight: 700; color: #b3434f; margin-bottom: 4px; }
.ddt-blocked-day { display: inline-block; margin-right: 12px; white-space: nowrap; }
.ddt-blocked-day em { font-style: normal; color: #a06a70; }

/* Honeypot — visually hidden, kept in the a11y/render tree for bots. */
.ddt-hp { position: absolute !important; left: -9999px !important; width: 1px; height: 1px; overflow: hidden; }
