/* ── LumoAquarelle ───────────────────────────────────────── */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,600;1,400&display=swap');

/* ── Wrapper ── */
.lumoa-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: #faf6f0;
  border-radius: 2px;
  cursor: none;             /* custom drip cursor */
}

.lumoa-canvas {
  display: block;
  width:  100% !important;
  height: 100% !important;
}

/* ── UI overlay ── */
.lumoa-ui {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding: 28px 24px;
  pointer-events: none;
}

/* ── Paint button ── */
.lumoa-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 32px;
  background: rgba(250, 246, 240, 0.88);
  border: 1.5px solid rgba(120, 80, 40, 0.18);
  border-radius: 2px;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: #3a2010;
  cursor: pointer;
  pointer-events: all;
  opacity: 0;
  transition: opacity 0.6s ease, transform 0.25s ease, box-shadow 0.3s ease;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow:
    0 2px 16px rgba(80,40,10,0.10),
    inset 0 1px 0 rgba(255,255,255,0.6);
  text-transform: uppercase;
}

.lumoa-btn:hover {
  transform: translateY(-2px);
  box-shadow:
    0 6px 28px rgba(80,40,10,0.16),
    inset 0 1px 0 rgba(255,255,255,0.7);
}

.lumoa-btn:active {
  transform: translateY(0) scale(0.97);
}

.lumoa-btn-icon {
  font-size: 20px;
  animation: lumoa-sway 4s ease-in-out infinite;
  display: inline-block;
  transform-origin: top center;
}

@keyframes lumoa-sway {
  0%,100% { transform: rotate(-8deg); }
  50%      { transform: rotate(8deg);  }
}

/* ── Progress bar ── */
.lumoa-progress {
  width: 70%;
  max-width: 260px;
  height: 2px;
  background: rgba(120,80,40,0.12);
  margin-top: 18px;
  overflow: hidden;
}

.lumoa-progress-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg,
    #c8945a 0%,
    #d4682a 40%,
    #8b2020 100%);
  transition: width 0.15s ease;
}

/* ── Custom drip cursor ── */
.lumoa-drip-cursor {
  position: absolute;
  width: 18px;
  height: 24px;
  pointer-events: none;
  transform: translate(-50%, -100%);
  z-index: 20;
}

.lumoa-drip-cursor::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(180,80,40,0.6);
  box-shadow: 0 0 8px rgba(180,80,40,0.4);
}

.lumoa-drip-cursor::after {
  content: '';
  position: absolute;
  top: 8px; left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 12px;
  border-radius: 0 0 50% 50%;
  background: rgba(180,80,40,0.4);
}

/* ── Elementor preview placeholder ── */
.lumoa-preview {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #faf6f0;
}

.lumoa-preview-inner {
  text-align: center;
  font-family: 'Cormorant Garamond', Georgia, serif;
  color: #6b4a2a;
  padding: 24px;
}

.lumoa-preview-splash {
  font-size: 52px;
  animation: lumoa-drip-fall 2s ease-in-out infinite;
}

@keyframes lumoa-drip-fall {
  0%,100% { transform: translateY(0) scale(1);    opacity: 1;   }
  60%      { transform: translateY(10px) scale(0.9); opacity: 0.5; }
  80%      { transform: translateY(0) scale(1.1); opacity: 1;   }
}

/* ── Responsive ── */
@media (max-width: 768px) {
  .lumoa-btn {
    font-size: 13px;
    padding: 10px 22px;
    letter-spacing: 0.08em;
  }
  .lumoa-drip-cursor { display: none; }
  .lumoa-wrapper      { cursor: default; }
}

/* ── Slideshow Navigation ──────────────────────── */
.lumoa-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 20;
  background: rgba(250,246,240,0.82);
  border: 1.5px solid rgba(120,80,40,0.18);
  border-radius: 50%;
  width: 42px; height: 42px;
  font-size: 18px;
  color: #3a2010;
  cursor: pointer;
  pointer-events: all;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s, transform 0.2s, opacity 0.3s;
  opacity: 0.7;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.lumoa-nav-btn:hover { background: rgba(255,255,255,0.96); opacity: 1; transform: translateY(-50%) scale(1.08); }
.lumoa-prev { left: 14px; }
.lumoa-next { right: 14px; }

/* ── Dot indicators ── */
.lumoa-slide-counter {
  display: flex;
  gap: 7px;
  margin-top: 12px;
  pointer-events: all;
}
.lumoa-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(58,32,16,0.25);
  cursor: pointer;
  transition: background 0.25s, transform 0.2s;
  display: inline-block;
}
.lumoa-dot.active {
  background: rgba(58,32,16,0.75);
  transform: scale(1.3);
}

/* ── Caption ── */
.lumoa-caption {
  position: absolute;
  bottom: 62px;
  left: 50%; transform: translateX(-50%);
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 15px;
  font-style: italic;
  color: #3a2010;
  background: rgba(250,246,240,0.78);
  padding: 5px 18px;
  border-radius: 2px;
  letter-spacing: 0.06em;
  opacity: 0;
  transition: opacity 0.6s ease;
  pointer-events: none;
  white-space: nowrap;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.lumoa-caption.visible { opacity: 1; }

@media (max-width: 768px) {
  .lumoa-nav-btn { width: 34px; height: 34px; font-size: 15px; }
  .lumoa-prev { left: 8px; }
  .lumoa-next { right: 8px; }
}
