/* ═══ ekdruck Custom Block Styles ═══ */

/* Gradient text utility */
.ekdruck-text-gradient {
  background: linear-gradient(135deg, hsl(152, 45%, 42%), hsl(152, 50%, 52%));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Card hover effect */
.ekdruck-card-hover {
  transition: all 0.3s ease;
}
.ekdruck-card-hover:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 12px hsl(220 20% 14% / 0.06), 0 20px 60px hsl(220 20% 14% / 0.1);
}

/* Button hover lift */
.wp-block-button__link {
  transition: all 0.2s ease;
}
.wp-block-button__link:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px -10px hsl(152 45% 42% / 0.3);
}
.wp-block-button__link:active {
  transform: translateY(0);
}

/* Outline button style */
.is-style-outline .wp-block-button__link {
  background: transparent;
  border: 1px solid hsl(220, 10%, 90%);
  color: hsl(220, 20%, 10%);
}
.is-style-outline .wp-block-button__link:hover {
  background: hsl(152, 45%, 42%);
  border-color: hsl(152, 45%, 42%);
  color: #fff;
}

/* Mono tag style */
.ekdruck-mono {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.625rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: hsl(152, 45%, 42%);
}

/* Section muted background */
.ekdruck-section-muted {
  background: hsl(220, 14%, 96%);
}

/* Glass card */
.ekdruck-glass {
  background: hsl(0 0% 100% / 0.7);
  backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid hsl(220 10% 90% / 0.5);
}

/* Trust bar / marquee simulation */
.ekdruck-trust-bar {
  display: flex;
  gap: 2rem;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  padding: 1rem 0;
  border-top: 1px solid hsl(220, 10%, 90%);
  border-bottom: 1px solid hsl(220, 10%, 90%);
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: hsl(220, 10%, 46%);
}

/* Legal disclaimer */
.ekdruck-legal-notice {
  background: hsl(152 45% 42% / 0.05);
  border: 1px solid hsl(152 45% 42% / 0.15);
  border-radius: 0.5rem;
  padding: 1rem 1.5rem;
  font-size: 0.875rem;
  color: hsl(220, 10%, 46%);
}
.ekdruck-legal-notice strong {
  color: hsl(220, 20%, 10%);
}

/* Responsive container override for full-width templates */
.ekdruck-full-width .wp-block-group.alignfull {
  max-width: 100%;
  padding-left: 0;
  padding-right: 0;
}

/* Smooth scroll */
html {
  scroll-behavior: smooth;
}

/* Focus styles */
:focus-visible {
  outline: 2px solid hsl(152, 45%, 42%);
  outline-offset: 2px;
}
