/*
 Theme Name:     PowerOut Theme
 Description:    Divi child theme for PowerOut
 Author:         lgatesmith
 Author URI:     https://github.com/lgatesmith
 Template:       Divi
 Version:        1.0.0
*/

/*@import url("../Divi/style.css");*/

/* =Theme customization starts here
------------------------------------------------------- */
:root {
  /* == Color Hexes == */
  --black: #000;
  --bodyBg: #0a0a0a; /* matches the app's dark-mode background.default (src/lib/theme.js) */
  --white: #fff;
  --mainBlack: #121212;
  --black50: #272727;
  --black100: #3f3f3f;
  --inchWorm: #9ef01a;
  --inchWormRgb: 158, 240, 26;
  --blackRgb: 0, 0, 0;
  --limeAccent: #bff67e;
  --limeAccentRgb: 191, 246, 126;
  --paleGreenRgb: 215, 248, 167;
  --slateGray: #484f57;
  --charcoalRgb: 15, 15, 15;
  --white08: rgba(255, 255, 255, 0.08);
  --white30: rgba(255, 255, 255, 0.3);
  --white50: rgba(255, 255, 255, 0.5);
  --white80: rgba(255, 255, 255, 0.8);
  --error: #ea4335;
  /* Matches the app's dark-mode divider/text.secondary tokens (src/lib/theme.js) */
  --divider: #262626;
  --textSecondary: #bdbdbd;

  --primary-color: #09f; /* Change this to the Primary color */
  --default-color: #121212; /* Change this to the Default color */

  /* == Fonts == */
  --bodyFont: "DM Sans", Helvetica, Arial, Lucida, sans-serif;

  /* == Font Sizes ==
     rem values recomputed against a normal 16px root (2026-08-06) — these
     used to assume the 10px root from html{font-size:62.5%}, removed
     because it also silently shrank an embedded React widget's typography
     (see git history). Target px values in the comments are unchanged;
     only the rem multiplier needed for those same pixel sizes changed. */
  --tinyText: 0.875rem; /* 14px */

  --copyFontLarge: 1.25rem; /* 20px */
  --copyFontRegular: 1.125rem; /* 18px */
  --copyFontSmall: 0.9375rem; /* 15px */

  --biggestFontMax: 3.75rem; /* 60px - h1 desktop */
  --biggestFontMin: 2.5rem; /* 40px - h1 mobile */

  --bigFontMax: 2.5rem; /* 40px - h2 desktop */
  --bigFontMin: 2.0625rem; /* 33px - h2 mobile */

  --mediumFontMax: 1.25rem; /* 20px - h3 desktop */
  --mediumFontMin: 1.25rem; /* 20px - h3 mobile */

  --smallFontMax: 1.6875rem; /* 27px */
  --smallFontMin: 1.25rem; /* 20px */

  --smallestFontMax: 1.25rem; /* 20px */
  --smallestFontMin: 1.125rem; /* 18px */

  --standardFontMax: 0.875rem; /* 14px */
  --standardFontMin: 0.75rem; /* 12px */

  /* == Content Sizes == */
  --rowWidth: 90%;
  --rowMaxWidth: 1200px;

  /* == Border Radius == */
  --radiusSm: 16px;
  --radiusMd: 24px;
  --radiusLg: 32px;
  --radiusPill: 25px;
}
html.pum-open.pum-open-overlay.pum-open-scrollable #page-container {
  padding-right: 0;
}
html.pum-open-fixed {
  position: fixed;
}
body {
  font-family: var(--bodyFont);
  font-feature-settings: "liga", "kern";
  font-size: var(--copyFontRegular);
  font-weight: 400;
}
.large-copy,
.large-copy p,
.large-copy li {
  font-size: var(--copyFontLarge);
}
.small-copy,
.small-copy p,
.small-copy li {
  font-size: var(--copyFontSmall);
}
.radius-sm {
  border-radius: var(--radiusSm);
}
.radius-md {
  border-radius: var(--radiusMd);
}
.radius-lg {
  border-radius: var(--radiusLg);
}
.pill-label {
  color: var(--white);
  border-width: 1px;
  border-style: solid;
  border-color: var(--limeAccent);
  border-radius: var(--radiusPill);
  font-size: var(--tinyText);
  font-weight: 300;
  background-color: var(--black);
  padding: 0 25px;
  width: fit-content;
}
body,
#page-container {
  background-color: var(--bodyBg);
}
.flex {
  display: flex;
}
.flex-columns .et_pb_column {
  width: auto;
  margin-right: 0;
}
.v-flex-row > .et_pb_column {
  display: flex;
  flex-direction: column;
}
.v-flex-row.center > .et_pb_column {
  align-items: center;
}
.v-flex-row.left > .et_pb_column {
  align-items: flex-start;
}
a.no-underline,
a.no-underline:hover,
a.no-underline:focus,
.no-underline a,
.no-underline a:hover,
.no-underline a:focus {
  text-decoration: none;
}
.et-social-email a:before {
  content: "\e010";
}
.et-social-copy a:before {
  font-family: "ETmodules";
  content: "\e02c";
}

/*
* ----------[SOCIAL NETWORKS]--------*
* [social-networks-shortcode] is embedded in arbitrary page content
* (not just the header), so its styling lives here rather than in
* header.css, which is now scoped to the .po-header shortcode markup.
*/
.social-networks-shortcode ul {
  list-style: none;
  padding: 0;
  display: flex;
}
.social-networks-shortcode ul li:not(:last-child) {
  margin-right: 35px;
}
.et-social-icon.fa-icon a.icon:before {
  content: "";
}
.social-networks-shortcode ul li a.icon i,
.social-networks-shortcode ul li a.icon svg {
  font-size: 16px;
  color: var(--default-color); /* Default color */
  fill: var(--default-color); /* Default color for SVG */
  transition: color 0.4s ease, fill 0.4s ease;
}
.social-networks-shortcode ul li a.icon:hover i,
.social-networks-shortcode ul li a.icon:hover svg {
  color: var(--primary-color); /* Hover color */
  fill: var(--primary-color); /* Hover color for SVG */
}

/*
* ----------[TYPOGRAPHY SCALE]--------*
*/
.biggest-header h1,
.biggest-header h2,
.biggest-header h3,
.biggest-header h4,
.biggest-header h5,
.biggest-header-inline,
.override_column h1,
h1 {
  font-size: clamp(var(--biggestFontMin), 6vw, var(--biggestFontMax));
  font-weight: 700;
  line-height: 1.25em;
  transition: 0.4s ease;
}
.big-header h1,
.big-header h2,
.big-header h3,
.big-header h4,
.big-header h5,
.big-header-inline,
.override_column h2,
h2 {
  font-size: clamp(var(--bigFontMin), 4vw, var(--bigFontMax));
  line-height: 1.25em;
  transition: 0.4s ease;
}
.medium-header h1,
.medium-header h2,
.medium-header h3,
.medium-header h4,
.medium-header h5,
.medium-header-inline,
.override_column h3,
h3 {
  font-size: clamp(var(--mediumFontMin), 3.5vw, var(--mediumFontMax));
  line-height: 1.25em;
  transition: 0.4s ease;
}
.small-header h1,
.small-header h2,
.small-header h3,
.small-header h4,
.small-header h5,
.small-header-inline,
.override_column h4,
h4 {
  font-size: clamp(var(--smallFontMin), 2.5vw, var(--smallFontMax));
  line-height: 1.25em;
  transition: 0.4s ease;
}
.smallest-header h1,
.smallest-header h2,
.smallest-header h3,
.smallest-header h4,
.smallest-header h5,
.smallest-header-inline,
.override_column h5,
h5 {
  font-size: clamp(var(--smallestFontMin), 2vw, var(--smallestFontMax));
  line-height: 1.25em;
  transition: 0.4s ease;
}
.standard-header h1,
.standard-header h2,
.standard-header h3,
.standard-header h4,
.standard-header h5,
.standard {
  font-size: clamp(var(--standardFontMin), 1.5vw, var(--standardFontMax));
  transition: 0.4s ease;
}
.tiny-header h1,
.tiny-header h2,
.tiny-header h3,
.tiny-header h4,
.tiny-header h5,
.tiny {
  font-size: var(--tinyText);
  transition: 0.4s ease;
}

.vert-details article {
  display: flex;
  align-items: center;
}
.vert-details article a {
  width: 30%;
}
.vert-details article .wrap {
  width: 70%;
}
.vert-details .entry-title,
.vert-details .post-meta,
.vert-details .post-content {
  width: 100%;
}

/*
* ----------[BUTTONS]--------*
*/
.et_pb_button.electric-border,
.et_pb_module .et_pb_button.electric-border,
.et_button_no_icon.et_pb_button.electric-border {
  position: relative;
  border-width: 1px !important;
  border-style: solid !important;
  border-radius: 3.5px;
  transition: all 0.3s ease-in-out !important;
}
.et_pb_button.electric-border.electric-green {
  background: var(--inchWorm) !important;
  border-color: transparent !important;
  color: #111 !important;
}
.et_pb_button.electric-border.electric-green:hover,
.et_pb_button.electric-border.electric-green:focus,
.et_pb_button.electric-border.electric-green:active {
  color: var(--white) !important;
  box-shadow:
    0 0 20px rgba(var(--inchWormRgb), 0.8),
    0 0 40px rgba(var(--inchWormRgb), 0.6),
    0 0 60px rgba(var(--inchWormRgb), 0.4),
    inset 0 0 16px rgba(var(--blackRgb), 0.25);
  animation: electric-pulse 2.5s ease-in-out infinite;
}
.et_pb_button.electric-border.electric-dark {
  background: var(--black) !important;
  border-color: var(--white50) !important;
  color: var(--white50) !important;
}
.et_pb_button.electric-border.electric-dark:hover,
.et_pb_button.electric-border.electric-dark:focus,
.et_pb_button.electric-border.electric-dark:active {
  color: var(--white) !important;
  border-color: var(--inchWorm) !important;
  box-shadow:
    0 0 20px rgba(var(--inchWormRgb), 0.8),
    0 0 40px rgba(var(--inchWormRgb), 0.6),
    0 0 60px rgba(var(--inchWormRgb), 0.4),
    inset 0 0 20px rgba(var(--inchWormRgb), 0.15);
  animation: electric-pulse 2.5s ease-in-out infinite;
}
@keyframes electric-pulse {
  0% {
    box-shadow:
      0 0 10px rgba(var(--inchWormRgb), 0.5),
      0 0 20px rgba(var(--inchWormRgb), 0.3),
      0 0 30px rgba(var(--inchWormRgb), 0.2),
      inset 0 0 10px rgba(var(--inchWormRgb), 0.15);
  }
  50% {
    box-shadow:
      0 0 30px rgba(var(--inchWormRgb), 0.9),
      0 0 60px rgba(var(--inchWormRgb), 0.6),
      0 0 90px rgba(var(--inchWormRgb), 0.4),
      inset 0 0 24px rgba(var(--inchWormRgb), 0.25);
  }
  100% {
    box-shadow:
      0 0 10px rgba(var(--inchWormRgb), 0.5),
      0 0 20px rgba(var(--inchWormRgb), 0.3),
      0 0 30px rgba(var(--inchWormRgb), 0.2),
      inset 0 0 10px rgba(var(--inchWormRgb), 0.15);
  }
}
@media (prefers-reduced-motion: reduce) {
  .et_pb_button.electric-border:hover,
  .et_pb_button.electric-border:focus,
  .et_pb_button.electric-border:active {
    animation: none !important;
  }
}
.et_pb_button.electric-border:focus-visible {
  outline: 2px solid var(--inchWorm);
  outline-offset: 3px;
}
.two-button-row .et_pb_column {
  margin-bottom: 0;
}

/*
* ----------[CARDS]--------*
*/
.po-card {
  display: flex;
  flex-direction: column;
  border-radius: var(--radiusSm);
  border: 1px solid var(--slateGray);
}
.po-card.center {
  align-items: center;
  padding: 30px 50px;
}
.po-card.left {
  align-items: flex-start;
  padding: 25px 15px 25px 25px;
}
.po-card.team {
  align-items: flex-start;
  padding: 25px;

  img {
    border-radius: var(--radiusSm);
  }
}
.po-card.hover {
  transition: all 0.25s ease;
}
.po-card.hover:hover {
  border-color: var(--limeAccent);
  box-shadow:
    0 0 0 1px var(--limeAccent),
    0 10px 30px rgba(var(--limeAccentRgb), 0.25);
  transform: translateY(-3px);
}
.po-card.hover:hover h3 {
  color: var(--limeAccent);
}

/* ---------[CTA BLOCKS]--------- */
.cta-row {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 65px;
  border-radius: var(--radiusSm);
  border-width: 1px;
  border-style: solid;
  text-wrap: balance;

  &.fullwidth {
    max-width: 1080px;
  }
  &.w-800 {
    max-width: 800px;
  }
  &.glow {
    border-color: var(--inchWorm);
    box-shadow: 0px 2px 20px 0px rgba(var(--paleGreenRgb), 0.24);
  }
  &.blur {
    border-color: var(--slateGray);
    backdrop-filter: blur(10px);
    background-color: rgba(var(--blackRgb), 0.5);
  }
}

/*
* ----------[RECAPTCHA]--------*
*/
.grecaptcha-badge,
.has-recaptcha .grecaptcha-badge {
  visibility: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
  width: 0 !important;
  height: 0 !important;
  overflow: hidden !important;
  position: static !important;
  box-shadow: none !important;
}
.recaptcha-disclosure {
  font-size: 12px;
  line-height: 1.35;
  text-align: center;
  color: #6b7280;
  margin-top: 0.75rem;
}
.recaptcha-disclosure a {
  text-decoration: underline;
  color: inherit;
}

/*
* ----------[MEDIA QUERIES]--------*
*/
@media screen and (min-width: 768px) {
  /***********************************
        CUSTOM BLOG MODULE LIST VIEW
    ***********************************/
  .custom-blog-list .entry-featured-image-url {
    width: 30%;
    float: left;
    margin-bottom: 0 !important;
  }
  .custom-blog-list .entry-title,
  .custom-blog-list .post-meta,
  .custom-blog-list .post-content {
    width: 70%;
    float: left;
    padding-left: 30px;
  }
  .custom-blog-list.add-box-shadow {
    box-shadow: 0 2px 80px 0 rgba(160, 190, 212, 0.22);
    border-radius: 6px;
    padding: 60px;
  }
  .custom-blog-list.square .entry-featured-image-url {
    padding-top: 30%;
    display: block;
  }
  .custom-blog-list.square .entry-featured-image-url img {
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    object-fit: cover;
  }
}
@media only screen and (min-width: 981px) {
  .two-button-row .et_pb_column:last-of-type {
    margin-left: 30px;
  }
}
@media only screen and (max-width: 980px) {
  .two-button-row .et_pb_column:last-of-type {
    display: flex;
    justify-content: end;
  }
  .two-button-row .et_pb_column {
    flex: 1;
  }
}
@media only screen and (max-width: 768px) {
  .vert-details article {
    flex-direction: column;
  }
  .vert-details article a {
    width: 100%;
  }
  .vert-details article .wrap {
    width: 100%;
  }
}
