/* 
Theme Name: Soccer Champions
Theme URI: https://soccerchampions.nl
Description: A child theme of Hello Elementor, customized for Soccer Champions website.
Author: Pineapple
Author URI: https://wearepineapple.nl
Template: hello-elementor
Version: 1.0.0
Text Domain: soccer-champions
License: GNU General Public License v3 or later.
License URI: https://www.gnu.org/licenses/gpl-3.0.html
Tags: flexible-header, custom-colors, custom-menu, custom-logo, editor-style, featured-images, rtl-language-support, threaded-comments, translation-ready
*/

/* ------------------------- Variables -------------------------------------------------- */

:root {
  /* CSS Animations */
  --animation-fade: 0.1s linear;
  --animation-fast: 0.35s cubic-bezier(0.62, 0.05, 0.01, 0.99);
  --animation-primary: 0.735s cubic-bezier(0.62, 0.05, 0.01, 0.99);
}

/* Tablet */
@media screen and (max-width: 991px) {
  :root {
    --container-padding: 1.5em;
    --side-padding: var(--container-padding);
  }
}

/* Mobile Landscape */
@media screen and (max-width: 767px) {
  :root {
    --banner-height: 2.5em;
    --section-padding: 8em;
    --container-left-padding: 0em;
    --container-right-padding: 0em;
  }
}

/* Mobile Portrait */
@media screen and (max-width: 479px) {
  :root {
  }
}

/* ------------------------- Copy/Paste Media Queries -------------------------------------------------- */

@media screen and (max-width: 991px) {
}
@media screen and (max-width: 767px) {
}
@media screen and (max-width: 479px) {
}
@media (hover: hover) and (pointer: fine) {
}
@media (hover: none) and (pointer: coarse) {
}

/* ------------------------- Scaling System -------------------------------------------------- */

/* Desktop */
:root {
  --size-unit: 16; /* body font-size in design - no px */
  --size-container-ideal: 1920; /* screen-size in design - no px */
  --size-container-min: 992px;
  --size-container-max: 2160px;
  --size-container: clamp(
    var(--size-container-min),
    100vw,
    var(--size-container-max)
  );
  --size-font: calc(
    var(--size-container) / (var(--size-container-ideal) / var(--size-unit))
  );
}

/* Tablet */
@media screen and (max-width: 991px) {
  :root {
    --size-container-ideal: 1384; /* screen-size in design - no px */
    --size-container-min: 768px;
    --size-container-max: 991px;
  }
}

/* Mobile Landscape */
@media screen and (max-width: 767px) {
  :root {
    --size-container-ideal: 377; /* screen-size in design - no px */
    --size-container-min: 480px;
    --size-container-max: 767px;
  }
}

/* Mobile Portrait */
@media screen and (max-width: 479px) {
  :root {
    --size-container-ideal: 377; /* screen-size in design - no px */
    --size-container-min: 320px;
    --size-container-max: 479px;
  }
}

/* ------------------------- Viewportheight -------------------------------------------------- */

:root {
  --vh-in-px: 8px; /* Default fallback */
  --vh: var(--vh-in-px);
  --dvh: var(--vh); /* Same as original VH */
  --svh: var(--vh);
  --lvh: var(--vh);
}

/* Only on non-touch devices */
@media (hover: hover) and (pointer: fine) {
  :root {
    --vh: 1vh;
  }

  /* If the device supports svh and lvh */
  @supports (height: 1svh) {
    :root {
      --vh: 1vh; /* Viewport height */
      --dvh: 1dvh; /* Dynamic viewport height */
      --svh: 1svh; /* Small viewport height */
      --lvh: 1lvh; /* Large viewport height */
    }
  }
}

/* Only on touch devices */
@media (hover: none) and (pointer: coarse) {
  /* Set vh to dvh initially */
  :root {
    --vh: var(--vh-in-px);
  }

  /* If the device supports lvh */
  @supports (height: 1lvh) {
    :root {
      --dvh: 1dvh; /* Dynamic viewport height */
      --svh: 1svh; /* Small viewport height */
      --lvh: 1lvh; /* Large viewport height */
    }
  }
}

body {
  font-size: var(--size-font);
	font-family: "Montserrat";
	font-weight: 500;
}

body.no-scroll {
  overflow: hidden;
}

html, body {
max-width: 100%;
    overflow-x: hidden;
}

/*

SIDENAV STYLES

*/

.sidenav-wrapper {
  background: #1c1f3e;
  display: none;
}
/* The pseudo-element acting as the torn border */
.sidenav-wrapper::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  /* Position it exactly on the right edge of the main sidebar */
  left: 100%;
  /* The width at which you cropped your strip image */
  width: 40px;
  /* Your cropped image strip */
  background-image: url("https://soccerchampions.nl/wp-content/themes/soccer-champions/assets/images/sidebar-border.png");
  /* Repeat it vertically down the screen */
  background-repeat: repeat-y;
  /* Ensure it doesn't scale awkwardly */
  background-size: 100% auto;
}

.nav-menu .menu {
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-menu .menu-item a {
  color: #ffffff;
  font-family: "Futura Std Extra Bold Condensed Oblique", Sans-serif;
  font-size: 1.8em;
  line-height: 1.3em;
  text-transform: uppercase;
  display: inline-block;
  padding: 8px 0;
  border-bottom: 2px dashed #ffffff;
  transition: all 0.3s ease-in-out;
}

.nav-menu .menu-item a:hover {
  color: #51b0e3;
  padding-left: 8px;
}

.nav-menu .menu-item:last-of-type a {
  border-bottom: none;
}

/* ------------------------- Sidebar Submenu Styles ----- */

.nav-menu .menu-item-has-children {
  position: relative;
}

.nav-menu .menu-item-has-children > a::after {
  content: "›";
  display: inline-block;
  margin-left: 8px;
  transition: transform 0.3s ease-in-out;
  font-size: 1.2em;
}

.nav-menu .menu-item-has-children:hover > a::after {
  transform: rotate(90deg);
}

.nav-menu .sub-menu {
  list-style: none;
  margin: 0;
  padding: 0;
  overflow: hidden;
  /* Add these two lines to match GSAP's starting state */
  height: 0;
  opacity: 0;
}

.nav-menu .sub-menu .menu-item {
  margin-left: 20px;
}

.nav-menu .sub-menu .menu-item a {
  font-size: 1.6em;
  padding: 6px 0;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.3);
  transition: all 0.3s ease-in-out;
}

.nav-menu .sub-menu .menu-item a:hover {
  color: #51b0e3;
  padding-left: 8px;
}

.nav-menu .sub-menu .menu-item:last-of-type a {
  border-bottom: none;
}
/* ------------------------- Sidebar Submenu Styles ----- */

.nav-menu .menu-item-has-children {
  position: relative;
}

.nav-menu .menu-item-has-children > a::after {
  content: "›";
  display: inline-block;
  margin-left: 8px;
  transition: transform 0.3s ease;
  font-size: 1.2em;
}

.nav-menu .menu-item-has-children.submenu-open > a::after {
  transform: rotate(90deg);
}

.nav-menu .sub-menu {
  list-style: none;
  margin: 0;
  padding: 0;
  overflow: hidden;
}

.nav-menu .sub-menu .menu-item {
  margin-left: 20px;
}

.nav-menu .sub-menu .menu-item a {
  font-size: 1.6em;
  padding: 6px 0;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.3);
  transition: all 0.3s ease;
}

@media (hover: hover) and (pointer: fine) {
  .nav-menu .sub-menu .menu-item a:hover {
    color: #51b0e3;
    padding-left: 8px;
  }
}

.nav-menu .sub-menu .menu-item:last-of-type a {
  border-bottom: none;
}

/* Mobile Navigation Submenu Styles */

.mobile-nav .menu-item-has-children {
  position: relative;
}

.mobile-nav .menu-item-has-children > a {
  position: relative;
  padding-right: 40px;
}

.mobile-nav .menu-item-has-children > a::after {
  content: "›";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5em;
  transition: transform 0.3s ease;
}

.mobile-nav .menu-item-has-children ~ .menu-item a {
  border-top: 2px dashed #ffffff;
}

.mobile-nav .menu-item-has-children.submenu-open > a::after {
  transform: translateY(-50%) rotate(90deg);
}

.mobile-nav .sub-menu {
  list-style: none;
  margin: 0;
  padding: 0;
  overflow: hidden;
  /* Add these two lines to match GSAP's starting state */
  height: 0;
  opacity: 0;
}

.mobile-nav .sub-menu .menu-item {
  margin-left: 16px;
}

.mobile-nav .sub-menu .menu-item a {
  font-size: 0.9em;
  padding: 8px 0 6px;
  opacity: 0.9;
}
.nav-extra {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-top: auto;
  margin-bottom: 0;
}

a.sidenav-btn-primary {
  display: inline-block;
  background: #51b0e3;
  color: #ffffff;
  font-family: "Futura Std Extra Bold Condensed Oblique", Sans-serif;
  font-size: 1.6em;
  line-height: 1;
  text-transform: uppercase;
  padding: 12px 24px;
  margin-top: 32px;
  text-decoration: none;
  transform: rotateZ(-4deg);
  transform-origin: left bottom;
}

a.sidenav-btn-secondary {
  display: inline-block;
  background: #ffffff;
  color: #1c1f3e;
  font-family: "Futura Std Extra Bold Condensed Oblique", Sans-serif;
  font-size: 1.6em;
  line-height: 1;
  text-transform: uppercase;
  padding: 12px 24px;
  margin-top: 16px;
  text-decoration: none;
  transform: rotateZ(4deg);
  transform-origin: left bottom;
}

.mobile-logo {
  display: block;
  padding: 16px 24px;
}

.mobile-logo img {
  width: 7.5em;
  height: auto;
}

.mobile-nav-toggle {
  position: fixed;
  top: 0;
  right: 0;
  padding-top: 64px;
  padding-right: 24px;
  transition: padding 0.735s cubic-bezier(0.62, 0.05, 0.01, 0.99);
  z-index: 999;

  opacity: 1;
  visibility: visible;
  transition:
    opacity 0.5s ease,
    visibility 0.5s ease;
}

.toggle-btn {
  pointer-events: auto;
  cursor: pointer;
  flex: 0 auto;
  padding-left: 2em;
  padding-right: 2em;
  font-weight: 400;
  line-height: 1.5em;
  text-decoration: none;
  display: inline-block;
  transform: rotate(-2deg);

  margin-top: -0.1em;
  margin-right: -0.1em;
  padding-left: 1.1em;
  padding-right: 1.25em;

  background: #1c1f3e;
  color: #ffffff;
  font-size: 1.5em;
  text-transform: uppercase;
  font-family: "Futura Std Extra Bold Condensed Oblique", Sans-serif;
}

.mobile-nav-toggle.active {
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
}

.mobile-nav-wrapper {
  z-index: 300;
  pointer-events: none;
  position: fixed;
  inset: 0;
  overflow: hidden;
}

.mobile-nav {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  transform: translateY(-100%);
  transition: transform 0.5s cubic-bezier(0.62, 0.05, 0.01, 0.99);
}

.mobile-nav.active {
  transform: translateY(0%);
}
.mobile-nav .close-wrapper {
  display: flex;
  justify-content: flex-end;
}
.mobile-nav .close-btn {
  font-size: 1em;
  color: #ffffff;
  text-transform: uppercase;
  font-family: "Futura Std Extra Bold Condensed Oblique", Sans-serif;
  pointer-events: auto;
  cursor: pointer;
}

.nav-bg {
  background: #1c1f3e;
  pointer-events: none;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.nav-content {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
  padding: 2em;
  pointer-events: auto;

  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: stretch;
}

.mobile-nav .menu-item a {
  display: block;
  font-size: 1.6em;
  padding: 16px 0;
}

.mobile-nav .nav-extra {
  align-items: center;
}
.mobile-nav .nav-extra a {
  font-size: 1.5em;
}

@media (min-width: 991px) {
  .page-wrapper {
    padding-left: 27.5em;
  }

  .sidenav-wrapper {
    width: 27.5em;
  }

  .mobile-header {
    display: none;
  }

  .sidenav-wrapper {
    position: fixed;
    display: block;
    height: 100vh;
    padding: 0;
    top: 0;
    left: 0;
    z-index: 999;
  }

  .nav-wrapper {
    padding: 24px 40px;
    height: 100%;
  }

  .nav-wrapper nav {
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }

  .admin-bar .nav-wrapper {
    padding: 40px 40px 40px 40px;
  }

  .nav-wrapper .custom-logo {
    width: 120px;
    height: auto;
  }
}

@media screen and (max-width: 991px) {
  .nav-content {
    padding: 1em 1.5em 1.5em 1.5em;
	  justify-content: flex-start;
  }
  .mobile-nav .menu-item a {
    font-size: 1em;
    padding: 8px 0;
  }
  .mobile-nav .nav-menu a,
  .mobile-nav .menu-item-has-children ~ .menu-item a {
    border-width: 1px;
  }
  a.sidenav-btn-primary {
    margin-top: 0px;
  }
  a.sidenav-btn-secondary {
    margin-top: 8px;
  }
	
	.mobile-nav .nav-extra a {
	font-size: 1em;
	padding: 10px 16px;}
}

@media (min-width: 1025px) {
}

/* 

MAIN CONTENT STYLES

*/

#order_review #payment {
background: #1c1f3e !important;
}

.elementor-widget-woocommerce-checkout-page .woocommerce .shop_table tbody td,
.elementor-widget-woocommerce-checkout-page .woocommerce .shop_table th{
color: #1c1f3e !important;
}

.elementor-widget-woocommerce-checkout-page .woocommerce .shop_table tfoot td,
.elementor-widget-woocommerce-checkout-page .woocommerce .shop_table tfoot th {
	color: #1c1f3e !important;
}

.elementor-widget-woocommerce-checkout-page .woocommerce .shop_table thead th {
	padding-bottom: 0;
}

.elementor-widget-woocommerce-checkout-page .woocommerce .shop_table td {
padding-top: 8px;
padding-bottom: 8px;
}

#hero-text span {
  padding: 10px 12px;
  background: #51b0e3;
}

#section-heading span {
  padding: 10px 12px;
  background: #51b0e3;
  display: inline-block;
  transform: rotateZ(-3deg) translateX(8px);
  transform-origin: left bottom;
}
.aanbod-blok .aanbod-foto {
	transform-origin: center;
	transition: transform 0.3s ease;
	transform: scale(1) translateY(0);
}
.aanbod-blok .aanbod-titel {
  transform-origin: left bottom;
  transition: transform 0.3s ease;
  background: transparent;
}
.aanbod-blok:hover .aanbod-titel {
  background: #51b0e3;
  transform: rotateZ(2deg) translateY(2px);
}

.aanbod-card:hover .primary-btn {
color: var(--goud);
  background-color: var(--donker-blauw);
	transform: scale3d(1.1, 1.1, 1.1);
}

.aanbod-blok:hover .aanbod-foto {
  transform: scale(0.9) translateY(4px);
}

.aanbod-card .card-foto{
	transform-origin: center;
	transition: transform 0.3s ease;
	transform: scale(1);
}

.aanbod-card .card-title,
.aanbod-card .card-text,
.aanbod-card .card-foto {
	transition: transform 0.3s ease;
}

.aanbod-card:hover {
	background: var(--licht-blauw, #51B0E3);
}

.aanbod-card:hover .card-title {
	background: var(--donker-blauw, #1C1F3E);
}
.aanbod-card:hover .card-text {
	color: var(--donker-blauw, #1C1F3E);
}

.aanbod-card:hover .card-foto{
	transition: transform 0.3s ease;
	transform: scale(0.9);
}

.team-blok .team-naam span { transition: all 0.3s ease-in-out;}
.team-blok:hover .team-naam span{
background: var(--donker-blauw, #1C1F3E);
color: var(--goud);
}

.scroller-track {
  animation: scroll-vertical 6s linear infinite;
}

/* Hover to pause (optional, good for UX) */
.scroller-window:hover .scroller-track {
  animation-play-state: paused;
}

.social-grid .e-gallery-grid .e-gallery-image {
  padding-bottom: 0;
  aspect-ratio: 4 / 5;
}

/* The Animation Logic */
@keyframes scroll-vertical {
  0% {
    transform: translateY(0);
  }
  100% {
    /* Move up by 50% of the track's height.
       Since we doubled the content, this resets 
       perfectly to the start position. */
    transform: translateY(-50%);
  }
}


.page-id-1152 .proeftraining,
.page-id-831 .proeftraining,
.single-product .proeftraining,
.woocommerce-page .proeftraining{
display: none !important;
visibility: hidden !important
}
