/*
Theme Name: iTeam
Theme URI: https://example.com/iteam
Author: CPM Digital
Author URI: https://cpm-digital.co.uk/
Description: iTeam theme
Version: 0.6.9
Requires at least: 6.0
Tested up to: 6.6
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: iteam
Tags: custom-logo, custom-menu, featured-images, one-column, two-columns, accessibility-ready, blog
*/
@import url("https://use.typekit.net/zzd2ibh.css");
@import url("https://fonts.googleapis.com/css2?family=Orbitron:wght@400..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap");
/*Variables*/
:root {
  --color-text: #ffffff;
  --background-color: #041b28;
  --logo-color: #E36937;
  --highlight-color: #04A4C8;
  --font-size: 16px;
  --heading-size: 36px;
  --border-width: 2px;
  --animation-time: 0.3s;
  --adminbar-height: 0px;
  --padding: 40px;
  --diagonal-corners: polygon(
                  40px 0,
                  100% 0,
                  100% calc(100% - 40px),
                  calc(100% - 40px) 100%,
                  0 100%,
                  0 40px
  );
  --diagonal-corners-mobile: polygon(
                  40px 0,
                  100% 0,
                  100% calc(100% - 30px),
                  calc(100% - 30px) 100%,
                  0 100%,
                  0 40px
  );
}

body.admin-bar {
  --adminbar-height: 32px;
}

@media screen and (max-width: 782px) {
  body.admin-bar {
    --adminbar-height: 46px;
  }
}
@media screen and (max-width: 900px) {
  :root {
    --padding: 30px;
  }
}
html {
  box-sizing: border-box;
  overflow-y: scroll;
  scroll-behavior: smooth;
  scroll-padding-top: 119.5px;
}

*, *::before, *::after {
  box-sizing: inherit;
}

body {
  margin: 0;
  font-family: "Open Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 300;
  font-style: normal;
  line-height: 1.6;
  color: var(--color-text);
  background: url("imgs/banner-back.webp") no-repeat fixed center center, var(--background-color);
  background-size: cover;
  font-size: var(--font-size);
}

@media only screen and (max-width: 900px) {
  body {
    background: url("imgs/banner-back-mobile.webp") no-repeat scroll top center, var(--background-color);
    background-size: auto 100vh;
  }
}
@media only screen and (max-width: 500px) {
  body {
    background: url("imgs/banner-back-mobile.webp") no-repeat scroll top center, var(--background-color);
    background-size: auto 100vh;
  }
}
img {
  max-width: 100%;
  height: auto;
}

a {
  color: var(--highlight-color);
  text-decoration: none;
}

#content a {
  font-weight: bold;
}

a:hover, a:focus {
  text-decoration: underline;
}

.container {
  max-width: 1350px;
  margin-inline: auto;
  padding: 0 var(--padding);
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Orbitron", sans-serif;
}

.site-header {
  position: sticky;
  top: var(--adminbar-height);
  border-bottom: var(--border-width) solid transparent;
  transition: all var(--animation-time) ease-in-out;
  z-index: 100;
}

@media only screen and (max-width: 900px) {
  .site-header {
    background: var(--background-color);
    border-bottom: var(--border-width) solid var(--highlight-color);
  }
}
.scrolled .site-header {
  background: var(--background-color);
  border-bottom: var(--border-width) solid var(--highlight-color);
}

.site-header .container {
  display: flex;
  justify-content: space-between;
}

.site-footer {
  padding: var(--padding) 0;
  background: var(--background-color);
  font-size: 18px;
  position: relative;
}

.site-footer .container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
@media only screen and (max-width: 900px) {
  .site-footer .container {
    flex-direction: column;
  }
}

@media only screen and (max-width: 900px) {
  .footer-col {
    margin-bottom: 20px;
  }
  .footer-col:last-of-type {
    margin-bottom: 0;
  }
}
.site-footer .container p, .site-footer .container ul {
  margin: 0;
  padding: 0;
}

.site-footer .container ul.footer-menu {
  list-style: none;
}

.site-footer .container ul.footer-menu a {
  color: var(--color-text);
}

.site-footer .container.copy {
  font-size: 12px;
  display: flex;
  justify-content: flex-start;
  margin-top: var(--padding);
}

.site-footer .container h3 {
  font-size: 24px;
  font-weight: normal;
  font-family: "Orbitron", sans-serif;
  margin: 0 0 10px 0;
}

.site-branding {
  display: flex;
  align-items: center;
}

.site-title {
  margin: 0;
  padding: calc(var(--padding) / 2 + 2px) 0;
}

.site-title a {
  padding: var(--padding) 0;
  font-family: congenial, sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 50px;
  color: var(--logo-color);
  transition: all var(--animation-time) ease-in-out;
  line-height: 1.6;
}

.scrolled .site-title a {
  font-size: 30px;
}

.site-title a:hover {
  text-decoration: none;
}

.site-navigation {
  display: flex;
  align-items: center;
  font-family: "Orbitron", sans-serif;
}

.primary-menu {
  display: flex;
  gap: calc(var(--padding) / 4);
  padding: 10px;
  list-style: none;
  background: rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(15px);
  transform: translate3d(0, 0, 0);
  border-radius: 5px;
}

.primary-menu li {
  position: relative;
}

.primary-menu a {
  color: var(--color-text);
  border-radius: 3px;
  padding: 5px 10px;
  border: 1px solid transparent;
}

.primary-menu a:hover {
  background: var(--highlight-color);
  color: var(--color-text);
  border: 1px solid var(--highlight-color);
  text-decoration: none;
}

li.menu-item-23 a {
  border: 1px solid var(--logo-color);
}

.primary-menu .sub-menu {
  position: absolute;
  left: 0;
  top: 100%;
  display: none;
  background: var(--background-color);
  list-style: none;
  margin: 0;
  padding: 0;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  z-index: 1000;
}
@media only screen and (max-width: 900px) {
  .primary-menu .sub-menu {
    position: relative;
    display: block;
    margin-left: 30px;
    margin-bottom: -10px;
  }
}

.primary-menu li:hover > .sub-menu,
.primary-menu li:focus-within > .sub-menu {
  display: block;
  border-radius: 5px;
}

.primary-menu .sub-menu li a {
  display: block;
  white-space: nowrap;
  margin: 10px;
  padding: 2px 10px;
  text-decoration: none;
}
@media only screen and (max-width: 900px) {
  .primary-menu .sub-menu li a {
    width: fit-content;
  }
}

.primary-menu a[aria-current=page], .primary-menu li:has(a[aria-current=page]) > a {
  background: var(--highlight-color);
  color: var(--color-text);
  border: none;
}
@media only screen and (max-width: 900px) {
  .primary-menu a[aria-current=page], .primary-menu li:has(a[aria-current=page]) > a {
    width: fit-content;
  }
}

.single-faqs .menu-item-66 a {
  background: var(--highlight-color);
  color: var(--color-text);
  border: none;
}

.nav-toggle {
  display: none;
  background: transparent;
  border: 0;
  padding: 10px;
  cursor: pointer;
}

.nav-toggle .bar {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-text);
  margin: 5px 0;
  transition: transform var(--animation-time) ease, opacity var(--animation-time) ease;
}

@media only screen and (max-width: 900px) {
  .nav-toggle {
    display: inline-block;
  }
  .site-header .container {
    gap: 10px;
  }
  .site-navigation {
    width: 100%;
  }
  .primary-menu {
    display: none;
    position: absolute;
    top: calc(100% + var(--border-width));
    right: 0;
    left: 0;
    margin: 0;
    padding: var(--padding);
    flex-direction: column;
    gap: 10px;
    background: var(--background-color);
    border-top: var(--border-width) solid var(--highlight-color);
    border-bottom: var(--border-width) solid var(--highlight-color);
    z-index: 10;
  }
  body.nav-open .primary-menu {
    display: flex;
  }
  /* Animate icon into X when open */
  body.nav-open .nav-toggle .bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  body.nav-open .nav-toggle .bar:nth-child(2) {
    opacity: 0;
  }
  body.nav-open .nav-toggle .bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }
}
/*Banner*/
#banner {
  height: calc(100vh + var(--border-width) - var(--adminbar-height));
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-top: -125px;
  border-bottom: var(--border-width) solid var(--highlight-color);
  opacity: 0;
  transition: opacity var(--animation-time) var(--animation-time) ease-in-out;
  position: relative;
  font-family: "Orbitron", sans-serif;
}

#banner.video-intro {
  background: none;
}

@media only screen and (max-width: 900px) {
  #banner {
    margin-top: 0;
    height: auto;
  }
}
@media only screen and (max-width: 660px) {
  #banner {
    justify-content: flex-start;
  }
}
#banner img {
  width: 50%;
  display: block;
  position: relative;
  overflow: hidden;
}

@media only screen and (max-width: 900px) {
  #banner img {
    width: 75%;
    margin-top: 150px;
  }
}
#banner div {
  text-align: center;
  font-size: 28px;
  font-weight: bold;
}

@media only screen and (max-width: 900px) {
  #banner div {
    font-size: 20px;
  }
}
#banner video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

@media only screen and (max-width: 900px) {
  #banner video {
    position: relative;
    width: 100%;
    height: auto;
    object-fit: contain;
  }
}
#banner .video-controls {
  position: absolute;
  right: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: center;
  gap: 20px;
}
@media only screen and (max-width: 900px) {
  #banner .video-controls {
    gap: 10px;
  }
}

#banner .video-controls button {
  margin-right: var(--padding);
  background: rgba(0, 0, 0, 0.5);
  color: var(--color-text);
  border: none;
  cursor: pointer;
  font-size: 26px;
  padding: 10px;
  border-radius: 5px;
  line-height: 1;
  width: 50px;
  height: 50px;
  overflow: hidden;
}
@media only screen and (max-width: 900px) {
  #banner .video-controls button {
    font-size: 14px;
    width: 40px;
    height: 40px;
  }
}

#banner .banner-text-wrapper {
  padding: 5px;
  background: var(--highlight-color);
  background: rgba(127, 127, 127, 0.1);
  max-width: calc(1295px - var(--padding) * 2);
  margin: 0 var(--padding);
  clip-path: var(--diagonal-corners);
  filter: drop-shadow(0px 0px 10px rgb(10, 148, 178));
}

@media only screen and (max-width: 900px) {
  #banner .banner-text-wrapper {
    width: calc(100% - var(--padding) * 2);
    margin: calc(var(--padding) * 2) 0;
  }
}
#banner .banner-text {
  background: rgba(0, 0, 0, 0.5);
  clip-path: var(--diagonal-corners);
  margin: 0;
  padding: var(--padding);
}

.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 40px;
  transform: translateX(-50%);
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  text-decoration: none;
  opacity: 0.85;
  transition: opacity 0.2s ease;
}

.scrolled .scroll-cue {
  opacity: 0;
}

.scroll-cue:hover {
  opacity: 1;
}

/* Chevron icon (pure CSS) */
.scroll-cue .chevron {
  width: 30px;
  height: 30px;
  border-right: 3px solid #fff;
  border-bottom: 3px solid #fff;
  transform: rotate(45deg);
  animation: cue-bounce 1.6s ease-in-out infinite;
  box-shadow: 0 0 0 rgba(0, 0, 0, 0.2);
}

/* Soft glow for visibility on video/images */
#banner .scroll-cue .chevron {
  filter: drop-shadow(0 2px 2px rgba(0, 0, 0, 0.5));
}

/* Keyframes for gentle bounce */
@keyframes cue-bounce {
  0%, 100% {
    transform: translateY(0) rotate(45deg);
  }
  50% {
    transform: translateY(6px) rotate(45deg);
  }
}
/* Optional: bigger touch target on mobile */
@media (pointer: coarse) {
  .scroll-cue {
    width: 44px;
    height: 44px;
    bottom: 16px;
  }
}
@media only screen and (max-width: 900px) {
  .scroll-cue {
    display: none;
  }
}
/*Content*/
#content {
  background: rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(30px);
  transform: translate3d(0, 0, 0);
  border-bottom: var(--border-width) solid var(--highlight-color);
  padding-top: calc(var(--padding) * 2);
  padding-bottom: calc(var(--padding) * 2);
}
@media only screen and (max-width: 900px) {
  #content {
    padding-top: var(--padding);
    padding-bottom: var(--padding);
  }
}

#content.no-banner {
  margin-top: -125px;
}
@media only screen and (max-width: 900px) {
  #content.no-banner {
    margin-top: 0;
  }
}

#content.no-banner main {
  margin-top: calc(var(--padding) * 3);
}
@media only screen and (max-width: 900px) {
  #content.no-banner main {
    margin-top: 0;
  }
}

#content .site-main {
  padding: var(--border-width);
  background: var(--highlight-color);
  clip-path: var(--diagonal-corners);
}
@media only screen and (max-width: 900px) {
  #content .site-main {
    clip-path: var(--diagonal-corners-mobile);
  }
}

#content article {
  background: url("imgs/content-back.webp") no-repeat top right, url("imgs/content-back-2.webp") no-repeat bottom left, var(--background-color);
  padding: var(--padding);
  clip-path: var(--diagonal-corners);
  overflow: hidden;
}
@media only screen and (max-width: 900px) {
  #content article {
    clip-path: var(--diagonal-corners-mobile);
  }
}

.entry-content {
  padding-top: 1px;
}

.entry-content iframe {
  padding-top: 20px;
}

#content h1, #content h2.entry-title {
  background: var(--highlight-color);
  display: block;
  margin: -40px 0 20px -40px;
  width: fit-content;
  padding: 0 40px 0 40px;
  font-size: 24px;
  clip-path: var(--diagonal-corners);
  font-family: "Orbitron", sans-serif;
}
@media only screen and (max-width: 900px) {
  #content h1, #content h2.entry-title {
    font-size: 24px;
    margin: -30px 0 10px -30px;
  }
}
@media only screen and (max-width: 450px) {
  #content h1, #content h2.entry-title {
    font-size: 18px;
    padding: 5px 40px;
  }
}

#content p {
  margin: calc(var(--padding) / 2) 0;
}

.home :where(.wp-block-columns) {
  margin-bottom: 0;
}

.home figure {
  margin-bottom: 0;
}

.wp-block-list {
  list-style: square;
}

/*Videos*/
.site-content {
  opacity: 0;
  min-height: calc(100vh - var(--adminbar-height) - 209px);
  transition: opacity var(--animation-time) var(--animation-time) ease-in-out;
}
.site-content.no-banner {
  min-height: calc(100vh - var(--adminbar-height) - 274px);
}
@media only screen and (max-width: 900px) {
  .site-content.no-banner .site-content.no-banner {
    margin-top: 0;
    min-height: auto;
  }
}

.scrolled .site-content {
  min-height: calc(100vh - var(--adminbar-height) - 370px);
}

.fade-in {
  opacity: 1 !important;
}

.wp-social-link {
  background: var(--highlight-color);
}

@media only screen and (max-width: 900px) {
  #wpadminbar {
    position: fixed;
  }
}
.editor-styles-wrapper {
  background: var(--background-color);
}

.block-editor-block-list__block {
  max-width: 1235px;
  margin: auto;
}

.editor-styles-wrapper p,
.editor-styles-wrapper h1, .editor-styles-wrapper h2, .editor-styles-wrapper h3, .editor-styles-wrapper h4, .editor-styles-wrapper h5, .editor-styles-wrapper h6 {
  margin-bottom: 30px;
}

body.wp-admin {
  height: auto;
}

.wp-block-button a, .wp-block-button__link {
  background: transparent;
  border-radius: 5px;
  padding: 10px 20px;
  margin: 20px 0 10px 0;
  border: 1px solid var(--logo-color);
  transition: background var(--animation-time) ease;
}

.wp-block-button a:hover {
  text-decoration: none;
  background: var(--highlight-color);
  border: 1px solid var(--highlight-color);
}

.wp-block-lbb-lightbox {
  margin-top: calc(var(--padding) / 2);
}

button.faq-question {
  color: var(--highlight-color);
}

#content .faq-answer p {
  margin: 0 0 calc(var(--padding) / 2) 0;
  font-weight: 300;
  font-size: 16px;
}

.page-faq .faqs {
  margin: var(--padding) 0 0 0;
}

.faq-item {
  margin-bottom: calc(var(--padding) / 2);
}

.faq-question {
  display: flex;
  align-items: center;
  gap: 25px;
  justify-content: flex-start;
  width: 100%;
  text-align: left;
  background: none;
  border: 0;
  font: inherit;
  cursor: pointer;
  outline: none;
  min-height: 50px;
  font-size: 20px;
  font-family: "Orbitron", sans-serif;
}

.faq-question::before {
  content: "+";
  transition: all var(--animation-time) ease;
  font-size: 50px;
  width: var(--var-padding);
  line-height: 1;
  margin-top: -4px;
}

.faq-question[aria-expanded=true]::before {
  rotate: 45deg;
}

.faq-answer {
  overflow: hidden;
  transition: opacity var(--animation-time) ease;
  display: grid;
  grid-template-rows: 0fr;
  opacity: 0;
  height: 0;
  margin-left: 52px;
}

.faq-answer > * {
  min-height: 0;
}

.faq-answer[data-open=true] {
  grid-template-rows: 1fr;
  opacity: 1;
  height: auto;
}

.post-navigation .nav-links {
  display: flex;
  justify-content: space-between;
  margin-top: 30px;
}

.post-navigation .nav-links a {
  background: var(--highlight-color);
  color: var(--color-text);
  padding: 5px 10px;
  border-radius: 5px;
  transition: all var(--animation-time) ease;
}

.post-navigation .nav-links a:hover {
  text-decoration: none;
  background: var(--color-text);
  color: var(--highlight-color);
}

.woocommerce-product-gallery__trigger {
  display: none;
}

.price {
  color: var(--color-text) !important;
}

.stock {
  color: var(--color-text) !important;
}

.woocommerce-product-gallery__wrapper {
  pointer-events: none;
}

.single_add_to_cart_button {
  background-color: red !important;
}

.icon-text-row {
  font-size: 18px !important;
  margin: 20px 0;
  align-items: flex-start;
}

.page-operation-mindfall .icon-text-row {
  font-size: 16px;
}

.icon-text-row p {
  margin: 0 !important;
  font-size: 18px !important;
}

.icon-text-row a {
  color: var(--color-text);
  font-size: 18px !important;
}

.icon-text-row svg path {
  fill: var(--logo-color);
}

p.no-margin {
  margin: 0 !important;
  line-height: 1;
  font-size: 16px;
}

.difficulty-level {
  display: flex !important;
  align-items: center !important;
  gap: 10px;
  margin: 0;
}

.wpcf7-form input {
  width: 100%;
  padding: 10px;
}

.wpcf7-form textarea {
  width: 100%;
  padding: 10px;
}

.wpcf7-form input[type=submit] {
  background-color: var(--logo-color);
  cursor: pointer;
  color: var(--background-color);
  border: none;
  padding: 10px 20px;
  border-radius: 5px;
  transition: all var(--animation-time) ease;
  width: fit-content;
  font-family: "Orbitron", sans-serif;
}

.wpcf7-form input[type=submit]:hover {
  background-color: var(--highlight-color);
  color: var(--color-text);
}

.wpcf7-response-output {
  border-color: var(--logo-color) !important;
}

.grecaptcha-badge {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
}

form p:last-of-type {
  margin-bottom: 0 !important;
}

#sbw_z0hg2i_calendar {
  margin-top: 40px;
}

.page-template-page-christmas .content-area {
  position: relative;
}

.page-template-page-christmas .video-intro:before {
  content: "";
  display: block;
  position: absolute;
  bottom: -30px;
  left: 0;
  width: 100%;
  height: 50px;
  background: url("imgs/settled-snow.png") repeat-x top center;
  background-size: contain;
  z-index: 1;
}

.page-template-page-christmas .site-footer:before {
  content: "";
  display: block;
  position: absolute;
  top: -30px;
  left: 0;
  width: 100%;
  height: 50px;
  background: url("imgs/settled-snow.png") repeat-x top center;
  background-size: contain;
  z-index: 1;
}

.page-template-page-christmas #content {
  padding-top: 70px;
  padding-bottom: 70px;
}
@media only screen and (max-width: 900px) {
  .page-template-page-christmas #content {
    padding-top: 50px;
    padding-bottom: 50px;
  }
}

.page-template-page-christmas #content article {
  background: url("imgs/snow-flakes.png") repeat top right, var(--background-color);
}

.snow-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: -1;
  overflow: hidden;
}

.snowflake {
  position: absolute;
  top: -10px;
  color: white;
  user-select: none;
  animation: snowfall linear infinite;
}

@keyframes snowfall {
  0% {
    transform: translateY(0) translateX(0);
  }
  25% {
    transform: translateY(50vh) translateX(100px);
  }
  50% {
    transform: translateY(150vh) translateX(-50px);
  }
  75% {
    transform: translateY(200vh) translateX(80px);
  }
  100% {
    transform: translateY(250vh) translateX(-30px);
  }
}
.fancybox__content {
  width: auto !important;
  height: auto !important;
  max-width: 100% !important;
  max-height: 100% !important;
}

.fancybox-image {
  object-fit: contain !important;
}

#content .wp-block-columns p {
  margin-top: 0;
}

#content .wp-block-columns p strong {
  font-weight: bold;
}

h2.blackout-add {
  margin-top: 0;
}

/*# sourceMappingURL=style.css.map */
