/* ═══════════════════════════════════════════════════════
   COMPONENTS — The Saracen's Head Inn
   Reusable component patterns
   ═══════════════════════════════════════════════════════ */

/* ── Tudor Rose Accent ── */
.tudor-rose-accent {
  display: flex;
  justify-content: center;
  margin-bottom: var(--space-sm);
}

.tudor-rose-accent svg {
  width: 28px;
  height: 28px;
  color: var(--ale);
  opacity: 0.5;
}

/* ── Decorative Divider ── */
.divider {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin: var(--space-md) 0;
}

.divider__line {
  flex: 1;
  height: 1px;
  background: var(--border);
}

.divider__icon {
  width: 16px;
  height: 16px;
  color: var(--ale);
  flex-shrink: 0;
  opacity: 0.5;
}

/* ── Section with grain ── */
.section.grain-overlay {
  position: relative;
}

.section.grain-overlay > * {
  position: relative;
  z-index: 2;
}

/* ── Ghost Section Special Styling ── */
.ghost-section {
  position: relative;
}

.ghost-wisp-container {
  position: absolute;
  right: -40px;
  top: 50%;
  transform: translateY(-50%);
  width: 120px;
  height: 120px;
  opacity: 0.04;
  pointer-events: none;
}

/* ── Candle Flame ── */
.candle-container {
  position: relative;
  display: inline-block;
}

.candle-flame {
  transform-origin: bottom center;
}

/* ── Coaching Carriage ── */
.carriage-container {
  position: relative;
  overflow: hidden;
}

.carriage-svg {
  opacity: 0;
  transform: translateX(-60px);
}

/* ── Cobblestone Path ── */
.cobblestone-path {
  position: relative;
}

.cobblestone-path svg path {
  stroke-dasharray: 1000;
  stroke-dashoffset: 1000;
}

/* ── Card Hover Shimmer — removed, too busy ── */
.card-shimmer {
  position: relative;
  overflow: hidden;
}

/* ── Icon Circle ── */
.icon-circle {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: transparent;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-sm);
}

.icon-circle svg {
  width: 24px;
  height: 24px;
  color: var(--ale);
}

/* ── Section Dark Icon Circle ── */
.section--timber .icon-circle,
.section--dark .icon-circle {
  border-color: rgba(255, 255, 255, 0.1);
}

.section--timber .icon-circle svg,
.section--dark .icon-circle svg {
  color: var(--ale-light);
}
