/*
 * Custom design tokens and theme overrides for Other Worldly Projects.
 * This file defines CSS variables that can be referenced throughout
 * Elementor widgets or custom templates. Adjust these variables to
 * quickly reskin the site.
 */

:root {
  --owp-bg: #070812;
  --owp-surface: #0F1224;
  --owp-surface-2: #141836;
  --owp-text: #E9ECFF;
  --owp-muted: #B6BCE6;

  --owp-primary: #7C5CFF;
  --owp-primary-2: #4FD1C5;
  --owp-accent: #F7C948;

  --owp-border: rgba(255, 255, 255, 0.10);

  --owp-radius-lg: 18px;
  --owp-radius-md: 14px;
  --owp-radius-sm: 10px;

  --owp-shadow-1: 0 10px 30px rgba(0, 0, 0, 0.35);
  --owp-shadow-2: 0 18px 60px rgba(0, 0, 0, 0.45);

  --owp-max: 1200px;
}

/* Example usage of tokens on buttons and cards.  You can extend these
 * styles or override parent theme selectors to align with the new
 * brand colours.  This file intentionally remains lightweight
 * because heavy customisation is best performed in Elementor. */
button,
.button,
.btn {
  border-radius: var(--owp-radius-md);
  font-family: inherit;
}

.btn-primary {
  background-color: var(--owp-primary);
  border-color: var(--owp-primary);
  color: var(--owp-text);
}

.btn-primary:hover {
  background-color: var(--owp-primary-2);
  border-color: var(--owp-primary-2);
}

/* Card style example */
.owp-card {
  background-color: var(--owp-surface);
  border: 1px solid var(--owp-border);
  border-radius: var(--owp-radius-lg);
  box-shadow: var(--owp-shadow-1);
  padding: 1.5rem;
  color: var(--owp-text);
}
