/**
* Theme Name: Twenty Twenty-Five Child Theme
* Template: twentytwentyfive
*/

html, body {
  margin: 0;
  padding: 0;
  width: 100vw;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

.rotating-word {
    display: inline-block;
    color: #666;
    transition: all 0.6s ease-in-out;
    opacity: 1;
    transform: translateX(0);
}

.rotating-word.fade-out {
    opacity: 0;
    transform: translateX(10px);
}

.rotating-word.fade-in {
    opacity: 1;
    transform: translateX(-10px);
}

#drop-zone {
  display: inline-block;
  width: 0.6em;
  height: 1em;
  vertical-align: baseline;
  margin-right: -0.2em;
  position: relative;
  border: 1.5px dashed #bbb;
  border-radius: 3px;
  background: transparent;
  box-sizing: content-box;
  transition: border-color 0.3s ease, background-color 0.3s ease;
  line-height: 1;
  font-size: 1em;
}

#drop-zone::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: auto;
  z-index: 1;
}

#drop-zone.dragover {
  outline: none;
  border-color: #e67e22;
  background-color: #ffeaa744;
}

.stone {
  position: absolute;
  width: 4px;
  height: 20px;
  background: linear-gradient(to bottom, #e67e22, #a84300); /* orange-braun Verlauf */
  border-radius: 1px;
  z-index: 9999;
  cursor: grab;
  touch-action: none;
  pointer-events: auto;
  transition: none;
  box-shadow: 0 1px 2px rgba(0,0,0,0.2);
}

