/* Cookie consent theme: match beez-fm brand tokens (see each page's :root) */
:root {
  --cc-font-family: 'DM Sans', sans-serif;
  --cc-bg: #ffffff;
  --cc-primary-color: #1a2e1c;
  --cc-secondary-color: #1a2e1c;
  --cc-btn-primary-bg: var(--green-dark);
  --cc-btn-primary-color: #ffffff;
  --cc-btn-primary-border-color: var(--green-dark);
  --cc-btn-primary-hover-bg: #0d7536;
  --cc-btn-primary-hover-color: #ffffff;
  --cc-btn-primary-hover-border-color: #0d7536;
  --cc-btn-secondary-bg: #ffffff;
  --cc-btn-secondary-color: #1a2e1c;
  --cc-btn-secondary-border-color: var(--green-dark);
  --cc-btn-secondary-hover-bg: var(--green-light);
  --cc-btn-secondary-hover-color: #1a2e1c;
  --cc-btn-secondary-hover-border-color: var(--green-dark);
  --cc-toggle-on-bg: var(--green-dark);
  --cc-toggle-off-bg: #c6d2c8;
  --cc-link-color: #1585a8;
  --cc-overlay-bg: rgba(26, 46, 28, 0.55);
}

/* Click-to-play facade for embeds gated behind the analytics category
   (e.g. the YouTube video on index.html) - shown until consent is given. */
.video-consent-facade {
  position: relative;
  width: 100%;
  height: 100%;
  cursor: pointer;
  background: #000000;
}

.video-consent-facade img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-consent-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 72px;
  height: 72px;
  border-radius: 50%;
  border: none;
  background: var(--green-dark, #119043);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}

.video-consent-play:hover,
.video-consent-play:focus-visible {
  background: #0d7536;
  transform: translate(-50%, -50%) scale(1.08);
}

/* Persistent access point so withdrawing consent doesn't require scrolling
   to the footer; shown once a consent decision has been made. */
.beez-cookie-settings-tab {
  position: fixed;
  bottom: 1rem;
  left: 1rem;
  z-index: 2147483000;
  background: var(--green-dark, #119043);
  color: #ffffff;
  border: none;
  border-radius: 999px;
  padding: 0.55rem 1rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.18);
}

.beez-cookie-settings-tab:hover,
.beez-cookie-settings-tab:focus-visible {
  background: #0d7536;
}

.video-consent-play svg {
  width: 28px;
  height: 28px;
  margin-left: 3px;
}