/*
Theme Name: Salient Child
Description: Styles for the custom "How To Play" Fancy Box variation.
This is the single source of truth for the how_to_play style — do not add
these rules back into the parent theme (salient) or salient-core, as those
get overwritten on update.
*/

/* How To Play style */
.nectar-fancy-box[data-style="how_to_play"] {
  --htp-bg: #000;
  --htp-accent: #C325B4;
  --htp-text: #fff;
  padding: 2rem;
  border: 2px solid var(--htp-accent);
  border-radius: 10px;
  background-color: var(--htp-bg);
  cursor: pointer;
  transition: background-color .3s ease-in-out, border-color .3s ease-in-out;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
}

/* Preset color themes. Custom color pickers override these via inline --htp-* vars. */
.nectar-fancy-box[data-style="how_to_play"][data-htp-theme="gold"] {
  --htp-bg: #000;
  --htp-accent: #f2c14e;
  --htp-text: #fff;
}
.nectar-fancy-box[data-style="how_to_play"][data-htp-theme="dark"] {
  --htp-bg: #1a1a1a;
  --htp-accent: #fff;
  --htp-text: #ccc;
}
.nectar-fancy-box[data-style="how_to_play"][data-htp-theme="light"] {
  --htp-bg: #fff;
  --htp-accent: #C325B4;
  --htp-text: #111;
}

/* Disable Salient/Nectar overlay */
.nectar-fancy-box[data-style="how_to_play"]:after,
.nectar-fancy-box[data-style="how_to_play"] .box-bg:after {
  display: none !important;
}
.nectar-fancy-box[data-style="how_to_play"] .image-section {
  position: relative;
  height: 140px;
  margin-bottom: 1rem;
  transition: transform .3s ease-in-out;
  transform-origin: center center;
}
.nectar-fancy-box[data-style="how_to_play"] .image-section .box-bg {
  position: absolute;
  inset: 0;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  transition: transform .3s ease-in-out;
}
/* Prevent default Nectar image zoom from fighting yours */
.nectar-fancy-box[data-style="how_to_play"]:hover .box-bg {
  transform: none !important;
  -webkit-transform: none !important;
}
.nectar-fancy-box[data-style="how_to_play"]:hover .image-section {
  transform: scale(1.2);
}
.nectar-fancy-box[data-style="how_to_play"] .htp-logo img.logo {
  width: 4rem !important;
  height: auto;
}
.nectar-fancy-box[data-style="how_to_play"] .htp-eyebrow {
  font-size: 1.3rem;
  font-weight: bold;
  color: var(--htp-text);
  margin: 0;
}
.nectar-fancy-box[data-style="how_to_play"] .game-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  font-size: 1.8rem;
  font-weight: bold;
  color: var(--htp-accent);
  line-height: 1.1;
}
.nectar-fancy-box[data-style="how_to_play"] .game-title i.icon-button-arrow {
  transition: transform .3s ease-in-out;
}
.nectar-fancy-box[data-style="how_to_play"]:hover .game-title i.icon-button-arrow {
  transform: translateX(10px);
}
