/* Respect user's motion preferences */
@media (prefers-reduced-motion: reduce) {
  .wp-block-hero-landing-poem-hero-landing-poem .hero-landing-poem-content {
    animation: none;
    opacity: 1;
  }

  .wp-block-hero-landing-poem-hero-landing-poem .hero-landing-poem-bg .cursor {
    animation: none;
  }

  .wp-block-hero-landing-poem-hero-landing-poem .hero-typewriter-target,
  .wp-block-hero-landing-poem-hero-landing-poem .hero-poem-blur-container {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
  .wp-block-hero-landing-poem-hero-landing-poem .hero-poem-blur-container {
    color: #000;
    opacity: 0.8;
  }

  .wp-block-hero-landing-poem-hero-landing-poem .hero-landing-poem-content h1 {
    color: #000;
  }
}

/* Block-specific styles to ensure proper integration with WordPress */
.wp-block-hero-landing-poem-hero-landing-poem {
  width: 100%;
  min-height: 100vh;
  height: 100vh;
  margin: 0;
  padding: 0;
  display: block;
  position: relative;
  overflow: hidden;
}

.wp-block-hero-landing-poem-hero-landing-poem .hero-landing-poem-container {
  width: 100%;
  min-height: 100vh;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: transparent;
  position: relative;
  overflow: hidden;
  margin: 0;
  padding: 0;
}

.wp-block-hero-landing-poem-hero-landing-poem .hero-landing-poem-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  box-sizing: border-box;
  padding: 2rem;
}

.wp-block-hero-landing-poem-hero-landing-poem .hero-poem-blur-container {
  font-family: "Courier New", "Monaco", monospace;
  font-size: clamp(1rem, 2vw, 3rem);
  line-height: 1.6;
  color: #000;
  text-align: left;
  white-space: pre;
  width: 100%;
  max-width: 100%;
  height: auto;
  max-height: 100%;
  box-sizing: border-box;
  font-weight: 400;
  letter-spacing: 0.5px;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  overflow: hidden;
}

.wp-block-hero-landing-poem-hero-landing-poem .hero-landing-poem-bg .hero-typewriter-target {
  width: 100%;
  height: auto;
  display: block;
  text-align: left;
}

.wp-block-hero-landing-poem-hero-landing-poem .hero-landing-poem-bg .cursor {
  display: inline-block;
  width: 1px;
  height: 1.2em;
  background-color: #666;
  animation: blink 1s step-end infinite;
  vertical-align: bottom;
  margin-left: 2px;
}

@keyframes blink {
  from,
  to {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
}

.wp-block-hero-landing-poem-hero-landing-poem .hero-landing-poem-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  opacity: 0;
  animation: fadeInContent 2s ease-out 3s forwards;
}

@keyframes fadeInContent {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.wp-block-hero-landing-poem-hero-landing-poem .hero-landing-poem-content h1 {
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 300;
  color: #111;
  margin: 0;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.wp-block-hero-landing-poem-hero-landing-poem .hero-landing-poem-content p {
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(1rem, 2vw, 1.2rem);
  font-weight: 400;
  color: #666;
  margin: 1rem 0 0 0;
  line-height: 1.4;
}

/* Focus states for accessibility */
.wp-block-hero-landing-poem-hero-landing-poem .hero-landing-poem-content *:focus {
  outline: 2px solid #005fcc;
  outline-offset: 2px;
}

/* Mobile responsive adjustments */
@media (max-width: 768px) {
  .wp-block-hero-landing-poem-hero-landing-poem .hero-landing-poem-bg {
    padding: 1rem;
  }

  .wp-block-hero-landing-poem-hero-landing-poem .hero-poem-blur-container {
    font-size: clamp(0.8rem, 1.5vw, 2rem);
  }

  .wp-block-hero-landing-poem-hero-landing-poem .hero-landing-poem-bg .hero-typewriter-target {
    font-size: clamp(0.8rem, 1.5vw, 2rem);
  }

  .wp-block-hero-landing-poem-hero-landing-poem .hero-landing-poem-content {
    padding: 0 1rem;
  }
}

@media (max-width: 480px) {
  .wp-block-hero-landing-poem-hero-landing-poem .hero-landing-poem-bg {
    padding: 0.5rem;
  }

  .wp-block-hero-landing-poem-hero-landing-poem .hero-poem-blur-container {
    font-size: clamp(0.7rem, 1.2vw, 1.5rem);
    line-height: 1.4;
  }

  .wp-block-hero-landing-poem-hero-landing-poem .hero-landing-poem-bg .hero-typewriter-target {
    font-size: clamp(0.7rem, 1.2vw, 1.5rem);
  }
}

/* Tablet adjustments */
@media (max-width: 1200px) and (min-width: 769px) {
  .wp-block-hero-landing-poem-hero-landing-poem .hero-poem-blur-container {
    font-size: clamp(1.2rem, 2.5vw, 2.5rem);
  }
}

/* Desktop adjustments */
@media (min-width: 1201px) {
  .wp-block-hero-landing-poem-hero-landing-poem .hero-poem-blur-container {
    font-size: clamp(1.5rem, 3vw, 3rem);
  }
}

/* Typewriter animation styles */
.wp-block-hero-landing-poem-hero-landing-poem .hero-typewriter-target {
  opacity: 0;
  animation: fadeInTypewriter 0.5s ease-out forwards;
}

@keyframes fadeInTypewriter {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* WordPress alignment support */
.wp-block-hero-landing-poem-hero-landing-poem.alignwide {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.wp-block-hero-landing-poem-hero-landing-poem.alignfull {
  max-width: none;
  margin-left: 0;
  margin-right: 0;
}

/* Ensure proper block behavior */
.wp-block-hero-landing-poem-hero-landing-poem {
  box-sizing: border-box;
}

.wp-block-hero-landing-poem-hero-landing-poem * {
  box-sizing: border-box;
}
