/*
Theme Name: Summer Palette Lab
Theme URI: https://summerpalettelab.com
Author: Summer Palette Lab
Author URI: https://summerpalettelab.com
Description: A soft, editorial child theme for Summer Palette Lab — a personal colour and style journal built around the Summer colour season. Child theme of Twenty Twenty-Four.
Template: twentytwentyfour
Version: 1.0.0
Text Domain: summer-palette-lab
*/

/* ==========================================================================
   Everything below is supplementary CSS for design elements that go beyond
   what theme.json + Global Styles can express (the palette wheel, the wave
   divider, pillar cards). Apply these as "Additional CSS class(es)" on the
   relevant block in the editor — e.g. add "spl-pillar-card" to a Group block.
   ========================================================================== */

/* Palette wheel (used in the front page hero) */
.spl-palette-wheel {
  width: 100%;
  max-width: 340px;
  margin: 0 auto;
  border-radius: 50%;
  box-shadow: 0 24px 50px rgba(50, 46, 69, 0.22);
  animation: spl-wheel-spin 140s linear infinite;
}
@keyframes spl-wheel-spin {
  to { transform: rotate(360deg); }
}
@media (prefers-reduced-motion: reduce) {
  .spl-palette-wheel { animation: none; }
}

/* Wave divider (thin decorative SVG rule between sections) */
.spl-wave-divider {
  display: block;
  width: 100%;
  height: 40px;
  margin: 8px 0;
}

/* Pillar cards (Story / Style / Trends) */
.spl-pillar-card {
  background: #fff;
  border: 1px solid rgba(50, 46, 69, 0.14);
  border-radius: 18px;
  padding: 32px 28px !important;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.spl-pillar-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(50, 46, 69, 0.08);
}
.spl-pillar-card--blush { background: linear-gradient(180deg, #fff 0%, var(--wp--preset--color--blush) 220%); }
.spl-pillar-card--lilac { background: linear-gradient(180deg, #fff 0%, var(--wp--preset--color--lilac) 220%); }
.spl-pillar-card--periwinkle { background: linear-gradient(180deg, #fff 0%, #e4e8f5 220%); }

/* Eyebrow label, used above section headings */
.spl-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--wp--preset--color--periwinkle-deep);
  font-weight: 600;
}
.spl-eyebrow::before {
  content: "";
  width: 26px;
  height: 1px;
  background: var(--wp--preset--color--periwinkle-deep);
}

/* Quote / personal-note section */
.spl-quote-note {
  font-family: var(--wp--preset--font-family--fraunces);
  font-style: italic;
  color: var(--wp--preset--color--periwinkle-deep);
}
