/* ============================================
   DAISIES — Loves Me, Loves Me Not…
   Editorial Overrides & Unique Components
   Base: article-shared.css
   Prefix: dai-
   ============================================ */

:root {
  --art-accent: #D4A843;
  --art-accent-dark: #B8923A;
  --art-accent-glow: rgba(212, 168, 67, 0.4);
  --art-accent-subtle: rgba(212, 168, 67, 0.06);
  --art-link: var(--color-pine, #2d6a3f);
  --art-link-hover: #D4A843;
  --art-link-underline: #D4A843;
  --art-ornament: #D4A843;
  --art-subtitle-color: #e0c680;
  --art-hero-accent-line: #D4A843;
}


/* ── Hero overrides ── */
.art-hero__media img {
  object-position: center 40%;
  animation: daiHeroKB 30s ease-out forwards;
}

@keyframes daiHeroKB {
  0%   { transform: scale(1.08); }
  100% { transform: scale(1); }
}

.art-hero__overlay {
  background:
    linear-gradient(180deg,
      rgba(15, 25, 10, 0.05) 0%,
      rgba(15, 25, 10, 0) 25%,
      rgba(15, 25, 10, 0.20) 55%,
      rgba(10, 18, 8, 0.82) 80%,
      rgba(10, 18, 8, 1) 100%
    );
}

.art-hero__overlay::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 60%, rgba(212, 168, 67, 0.06) 0%, transparent 50%);
  pointer-events: none;
}

.art-hero__category {
  background: rgba(45, 106, 63, 0.85);
  color: #fff;
}


/* ============================================
   DAI-FOLKLORE — Folklore / superstition callout
   Whimsical box for myths and magic
   ============================================ */
.dai-folklore {
  position: relative;
  max-width: 680px;
  margin: var(--space-2xl) auto;
  padding: var(--space-xl) calc(var(--space-xl) + 3rem) var(--space-xl) calc(var(--space-xl) + 4px);
  background: linear-gradient(135deg, rgba(212, 168, 67, 0.06) 0%, rgba(212, 168, 67, 0.02) 100%);
  border-left: 4px solid var(--art-accent);
  border-radius: 0 var(--radius-lg, 8px) var(--radius-lg, 8px) 0;
  font-family: var(--font-display, 'Cormorant Garamond', serif);
  font-size: clamp(1.05rem, 1.5vw, 1.2rem);
  font-style: italic;
  line-height: 1.6;
  color: var(--color-text-primary, #1a1a1a);
}

.dai-folklore::before {
  content: "";
  position: absolute;
  top: 50%;
  right: var(--space-md);
  transform: translateY(-50%);
  font-size: 2.2rem;
  font-family: "Apple Color Emoji", "Segoe UI Emoji", "Noto Color Emoji", sans-serif;
  font-style: normal;
  opacity: 0.58;
  filter: saturate(1.25) contrast(1.08) drop-shadow(0 1px 2px rgba(0, 0, 0, 0.18));
  pointer-events: none;
}

.dai-folklore--thor::before {
  content: "\26A1";
}

.dai-folklore--marriage::before {
  content: "\1F48D";
}

.dai-folklore p {
  margin: 0 0 var(--space-md) 0;
}

.dai-folklore p:last-child {
  margin-bottom: 0;
}


/* ── Dark section atmosphere — warm meadow glow ── */
.art-section--dark {
  background: linear-gradient(180deg, #0a0f08 0%, var(--color-midnight, #0a1628) 100%);
  position: relative;
  overflow: hidden;
}

.art-section--dark::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 70%, rgba(212, 168, 67, 0.04) 0%, transparent 50%),
    radial-gradient(ellipse at 70% 30%, rgba(45, 106, 63, 0.03) 0%, transparent 40%);
  pointer-events: none;
}

.art-section--dark .art-section__inner {
  position: relative;
  z-index: 1;
}


/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 768px) {
  .art-hero__media img {
    object-position: center 35%;
  }

  .dai-folklore {
    margin-left: var(--space-md);
    margin-right: var(--space-md);
    padding: var(--space-lg) calc(var(--space-lg) + 2.25rem) var(--space-lg) calc(var(--space-lg) + 4px);
  }

  .dai-folklore::before {
    font-size: 1.7rem;
    right: var(--space-sm);
  }
}


/* ============================================
   REDUCED MOTION
   ============================================ */
@media (prefers-reduced-motion: reduce) {
  .art-hero__media img {
    animation: none;
    transform: none;
  }
}
