/*
Theme Name: active8multi-sports
Author: AllDesignOnline
Description: Bespoke Theme for active8multi-sports
Version: 1.0
*/

/*--------------------------------------------------------------
1.0 - Basic theme styles (reset, typography, etc.)
--------------------------------------------------------------*/

/* Reset styles for consistency */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Body styles */
body {
    font-family: "adelle-sans", sans-serif;
font-weight: 400;
font-style: normal;
    line-height: 1.6;
    background-color: #FFFFFF;
    color: #000000;
	font-size: 16px;
    margin: 0;
    padding: 0;
	background-image: url('https://www.active8multi-sports.co.uk/wp-content/uploads/2026/04/site-background-b.webp');
	background-repeat: no-repeat;
	background-attachment: fixed;
  background-position: center;
  background-size: cover;
}

a {
	color: #864598;
	font-weight: 600;
	text-decoration: none;
}

/* Main content container */
main {
  display: flex;
  justify-content: center;
}

main .container {
    width: 100%;
    max-width: 1825px;  /* Max width for main content */
    margin: 0 auto;     /* Center the content */
    padding-left: 15px;
    padding-right: 15px;
	padding-top: 40px;
	padding-bottom: 40px;
    box-sizing: border-box;
}

body.home main .container {
	padding-top: 0 !important;
}

.row-inner-custom-width {
    width: 100%;
    max-width: 1825px !important;  /* Max width for main content */
    margin: 0 auto;     /* Center the content */
    padding-left: 15px;
    padding-right: 15px;
    box-sizing: border-box;
}

/* Centered rows for WPBakery */
.vc_row.wpb_row:not(.vc_row-no-padding):not(.vc_row-stretch) {
    width: 100%;
    max-width: 1825px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 0px;
    padding-right: 0px;
    box-sizing: border-box;
}

/* Full-width rows – allow full width */
.vc_row.vc_row-stretch {
    width: 100%;
    max-width: 100%;   /* Full width */
    padding-left: 0;
    padding-right: 0;
}

.row-spacing-general-top {
	margin-top: 60px;
}

.row-spacing-general-bottom {
	margin-bottom: 60px;
}

.home h1 {
	font-family: "peckham-press", sans-serif;
font-weight: 400;
font-style: normal;
	font-size: clamp(25px, 3vw + 1rem, 65px);
    margin-bottom: 20px;
}

h1 {
	font-family: "peckham-press", sans-serif;
font-weight: 400;
font-style: normal;
	font-size: clamp(20px, 3vw + 1rem, 45px);
    margin-bottom: 35px;
}


.home hh2 {
	font-family: "peckham-press", sans-serif;
	font-weight: 400;
	font-style: normal;
	font-size: clamp(26px, 3vw + 0.8rem, 52px);
    text-align: left;  /* Align the title text to the left */
    margin-bottom: 20px; /* Adds spacing below the title */
}

h2 {
	font-family: "peckham-press", sans-serif;
	font-weight: 400;
	font-style: normal;
	font-size: clamp(18px, 3vw + 0.8rem, 38px);
    text-align: left;  /* Align the title text to the left */
    margin-bottom: 20px; /* Adds spacing below the title */
}



h3 {
	font-family: "adelle-sans", sans-serif;
	color: #864598;
    font-weight: 700;
	font-style: normal;
	font-size: 1.95em;
    text-align: left;  /* Align the title text to the left */
    margin-bottom: 20px; /* Adds spacing below the title */
}

h4 {
	font-family: "adelle-sans", sans-serif;
	color: #864598;
    font-weight: 700;
	font-style: normal;
	font-size: 1.65em;
    text-align: left;  /* Align the title text to the left */
    margin-bottom: 20px; /* Adds spacing below the title */
}

.large-sub-heading {
    font-family: "ink-free", sans-serif;
	color: #864598;
	font-size: clamp(14px, 2vw + 0.8rem, 32px);
    font-weight: 600;
    font-style: normal;
}

p {
	padding-bottom: 25px;
}

html {
  scroll-behavior: smooth;
}

:target {
  scroll-margin-top: 100px; /* Adjust this value to your header height */
}


/* ===============================
   WPBakery CONTENT LIST STYLING
   Bullets + Numbered Lists
================================= */

/* Base list layout fix (both ul + ol) */
.wpb_text_column ul,
.wpb_text_column ol,
.vc_column-inner ul,
.vc_column-inner ol,
.wpb_wrapper ul,
.wpb_wrapper ol {
    padding-left: 1.6em !important;
    margin-left: 0 !important;
    margin-bottom: 12px !important; /* space AFTER list */
    list-style-position: outside !important;
}

/* ===============================
   BULLETS (custom dots)
================================= */

/* Remove default bullets */
.wpb_text_column ul,
.vc_column-inner ul,
.wpb_wrapper ul {
    list-style: none;
}

/* Bullet item spacing */
.wpb_text_column ul li,
.vc_column-inner ul li,
.wpb_wrapper ul li {
    position: relative;
    margin-bottom: 3px;
}

/* Custom purple bullet */
.wpb_text_column ul li::before,
.vc_column-inner ul li::before,
.wpb_wrapper ul li::before {
    content: "";
    width: 7px;
    height: 7px;
    background: #864598;
    border-radius: 50%;
    position: absolute;
    left: -1.2em;
    top: 0.55em;
}

/* ===============================
   NUMBERED LISTS (ol styling)
================================= */

/* Style numbers */
.wpb_text_column ol,
.vc_column-inner ol,
.wpb_wrapper ol {
    list-style: decimal;
}

/* Number colour + spacing */
.wpb_text_column ol li,
.vc_column-inner ol li,
.wpb_wrapper ol li {
    margin-bottom: 3px;
}

/* Style the number itself */
.wpb_text_column ol li::marker,
.vc_column-inner ol li::marker,
.wpb_wrapper ol li::marker {
    color: #864598;
    font-weight: 600;
}

/* Ensure last item has no extra gap */
.wpb_text_column ul li:last-child,
.vc_column-inner ul li:last-child,
.wpb_wrapper ul li:last-child,
.wpb_text_column ol li:last-child,
.vc_column-inner ol li:last-child,
.wpb_wrapper ol li:last-child {
    margin-bottom: 0;
}

.gm-menu-item--lvl-0 {
	font-family: "adelle-sans", sans-serif;
	font-weight: 700 !important;
}

.book-now-menu-bt a {
	color: #FFFFFF !important;
	 -webkit-text-stroke-width: 0.05em;
  -webkit-text-stroke-color: black;
	font-weight: 800 !important;
}

.book-now-menu-bt .gm-menu-item__txt {
  display: inline-block;
  padding: 14px 28px;
  background: #8BC53F;

  clip-path: polygon(
    0% 10%,
    100% 0%,
    95% 100%,
    0% 90%
  );
}

.home-meet-team-bt {
  display: flex;
  align-items: center;       /* vertical text center */
  justify-content: center;   /* horizontal text center */
  
  margin: 0 auto;            /* center block horizontally */
  width: fit-content;        /* shrink to content */
  
  padding: 18px 34px;
  background: #854597;

  /* mirrored but slightly different shape */
  clip-path: polygon(
    5% 0%,
    100% 10%,
    100% 90%,
    0% 100%
  );
}

.home-meet-team-bt a {
	font-size: 1.45em;
  color: #FFFFFF !important;
  -webkit-text-stroke-width: 0.05em;
  -webkit-text-stroke-color: black;
  font-weight: 800 !important;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: center;
}

body:not(.logged-in) .menu-logout-bt {
    display: none;
}

body:not(.logged-in) .my-account-menu {
    display: none;
}

body.logged-in .menu-login-bt {
    display: none;
}

.gm-main-menu-wrapper .gm-minicart-icon-wrapper > i {
    font-size: 23px !important;
}

.gm-menu-item__icon{
   font-size: 23px !important;
}

.gm-navbar .gm-toolbar-socials-list .gm-toolbar-socials-list__item {	
	padding-left: 2px !important;
	padding-right: 2px !important;
}

.gm-toolbar-social-link i {
  display: inline-block;
  width: 38px;
  height: 35px;
  background-size: contain;
  background-repeat: no-repeat;
	margin-top: 10px;
  font-size: 0 !important; /* hides icon font */
}

/* Facebook */
.gm-toolbar-social-link[aria-label="facebook"] i {
  background-image: url("https://www.active8multi-sports.co.uk/wp-content/uploads/2026/04/facebook-header-icon.webp");
}

/* Instagram */
.gm-toolbar-social-link[aria-label="instagram"] i {
  background-image: url("https://www.active8multi-sports.co.uk/wp-content/uploads/2026/04/instagram-header-icon.webp");
	margin-right: 15px;
}

/* Hide toolbar only when sticky */
.gm-navbar .gm-toolbar {
  display: block;
}

/* when sticky kicks in (transform applied) */
.gm-navbar.gm-navbar-sticky .gm-wrapper[style*="translateY"] #gm-toolbar {
  display: none !important;
}

/* Full-width container */
.video-banner-fullwidth {
  position: relative; /* must be relative to shift */
  width: 100vw !important;
  max-width: 100vw !important;
  margin-left: calc(50% - 50vw) !important;
  padding: 0 !important;
  overflow: hidden;
  z-index: 1;
}

/* Hero video */
.video-banner-fullwidth .hero-video {
  width: 100%;
  height: auto;
  min-height: 50vh; /* adjusts for small screens */
  max-height: 100vh;
  object-fit: cover;
  display: block;
	margin-top: 4.55%;
	margin-bottom: 3%;
}

/* Top and bottom images */
.video-banner-fullwidth .banner-top,
.video-banner-fullwidth .banner-bottom {
  position: absolute;
  left: 0;
  width: 100%;
  z-index: 2;
}

/* Make images responsive */
.video-banner-fullwidth .banner-top img,
.video-banner-fullwidth .banner-bottom img {
  width: 100%;
  height: auto;
  display: block;
}

/* Position top/bottom */
.video-banner-fullwidth .banner-top {
  top: 0;
}

.video-banner-fullwidth .banner-bottom {
  bottom: 0;
}

/* Optional mobile adjustments */
@media (max-width: 768px) {
  .video-banner-fullwidth .hero-video {
    min-height: 35vh;
    max-height: 60vh;
  }
}


/* =========================
   FULL WIDTH WRAPPER
========================= */
.image-banner-frame-fullwidth {
  position: relative;
  width: 100%;
  overflow: hidden;
}

/* =========================
   MIDDLE BACKGROUND BANNER
========================= */
.image-banner-frame-middle {
  width: 100%;
}

.image-banner-frame-middle img {
	margin-top: 4.5%;
	margin-bottom: 3.35%;
  width: 100%;
  height: auto;
  display: block;
}

/* =========================
   TOP FRAME OVERLAY
========================= */
.image-banner-frame-top {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 3;
  pointer-events: none; /* ensures clicks go through */
}

.image-banner-frame-top img {
  width: 100%;
  height: auto;
  display: block;
}

/* =========================
   BOTTOM FRAME OVERLAY
========================= */
.image-banner-frame-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 3;
  pointer-events: none;
}

.image-banner-frame-bottom img {
  width: 100%;
  height: auto;
  display: block;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 768px) {
  .image-banner-frame-middle img {
    display: block;
  }
}

.purple-strip-row {
    position: relative;
    z-index: 0;
    background: url('https://www.active8multi-sports.co.uk/wp-content/uploads/2026/04/purple-strip-row-desktop.webp') center 80px / 100% calc(100% - 80px) no-repeat;
}

.purple-strip-bg {
    display: none;
}

/* content sits above background */
.purple-strip-row .vc_row-inner,
.purple-strip-row .wpb_wrapper {
    position: relative;
    z-index: 2;
}

.home-purple-strip-title {
	max-width: 74%;
	margin-left: auto;
	margin-right: auto;
	margin-top: 165px;
}

.home-purple-strip-title p {
	font-family: "peckham-press", sans-serif;
font-weight: 400;
font-style: normal;
	font-size: 2.65em;
	line-height: 1em;
    color: #FFFFFF;
	padding-bottom: 0px;
}

.confidence-slider-wrap {
    position: relative;
}

.confidence-frame {
    position: absolute;
    inset: 0;
    background-image: url('https://www.active8multi-sports.co.uk/wp-content/uploads/2026/04/home-build-confidence-frame.webp');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    pointer-events: none;
    z-index: 10;
}

.confidence-owl {
    position: relative;
    z-index: 1;
}

.confidence-owl .item img {
    width: 100%;
    height: auto;
    display: block;
}

.confidence-owl .owl-stage-outer {
    padding-top:0px;
}

.confidence-slider-wrap {
    position: relative;
}

/* DOT CONTAINER */
.confidence-owl .owl-dots {
    position: absolute;
    left: 50%;
    top: 70%; /* adjust this value */
    transform: translateX(-50%);
    z-index: 20;
    margin: 0;
}

/* DOTS STYLE (optional but usually needed for visibility) */
.confidence-owl .owl-dot {
    display: inline-block;
    margin: 0 5px;
}

.confidence-owl .owl-dot span {
    width: 10px;
    height: 10px;
    display: block;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
}

.confidence-owl .owl-dot.active span {
    background: #ffffff;
}


/* Style the Home Page Upcoming Events */

.home-booking-form-container {
	background-image: url('https://www.active8multi-sports.co.uk/wp-content/uploads/2026/04/booking-form-frame-desktop.webp');
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-position: center;
}

.home .bookacti-booking-system {
    background: #FFFFFF;
    padding-left: 30px;
	padding-right: 30px;
	padding-bottom: 30px;
    margin-left: 45px;
    margin-right: 45px;
    margin-top: 0px;
    margin-bottom: -20px;
	padding-top: 60px;
    clip-path: polygon(0 6%, 100% 0, 100% 100%, 0% 100%);
}

.home-booking-form-title p {
	font-family: "ink-free", sans-serif;
	color: #FFFFFF;
	font-size: 4em;
    font-weight: 600;
    font-style: normal;
	text-shadow:
    -2px -2px 0 #000,
     2px -2px 0 #000,
    -2px  2px 0 #000,
     2px  2px 0 #000;
	padding-bottom: 0px;
	margin-top: 25px;
	margin-bottom: -20px;
	transform: rotate(-3deg);
}

.home .bookacti-calendar-title {
	display: none;
}

.home .bookacti-form-field-name-login {
	display: none;
}

.home .fc-event {
	pointer-events: none !important;
}

.home .bookacti-form-field-name-free_text p {
	padding-bottom: 0px;
	color: #000000;
	text-transform: uppercase;
	font-weight: 900;
	font-size: 1.6em;
	text-decoration: none;
}

.home .bookacti-form-field-name-free_text p a {
	color: #000000;
	text-decoration: none;
	padding: 30px;
}

.home .bookacti-form-field-name-free_text {
	background-color: #fad208 !important;
	border: 2px solid black;
	display: block;
	width: fit-content;
	margin: 0 auto;
	text-align: center;
}

.home .bookacti-form-field-name-free_text p a:before {
    font-family: "Font Awesome 6 Free"; /* or the version your site uses */
    content: "\f073"; /* Unicode for calendar icon */
    font-weight: 900; /* needed for solid icons */
    margin-right: 8px;
	font-size: 1.6em;
}




.home .book-button-arrow {
	height: 65px;
	position: relative;
}

/* 
 
.home .book-button-arrow::before {
    content: url('https://www.active8multi-sports.co.uk/wp-content/uploads/2026/04/button-arrow.webp');
    position: absolute;     
    top: -80px;
    right: 60px;
    pointer-events: none;
    display: block;
    z-index: 10;
}

*/

.bookacti-form-field-label {
	width: 100% !important;
}

.quantity {
order: -1;
}

form.cart {
display: flex;
flex-direction: column;
}

/* All WooCommerce Buttons */
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce .button,
.woocommerce .wc-forward,
.woocommerce .checkout-button,
.woocommerce .single_add_to_cart_button,
.woocommerce .add_to_cart_button,
.woocommerce .added_to_cart,
.woocommerce .woocommerce-Button,
.woocommerce #respond input#submit,
.woocommerce a.checkout-button,
.woocommerce-cart .wc-proceed-to-checkout a.checkout-button,
.woocommerce-page a.button,
.woocommerce-page button.button,
.woocommerce-page input.button {
    font-family: "adelle-sans", sans-serif !important;
    background-color: #94c83d !important;
    font-weight: 700 !important;
    font-size: 1.25em !important;
    color: #FFFFFF !important;
    border-radius: 4px;
    padding: 0.75em 1.5em;
    border: none;
} 

:root {
  --wp--preset--font-size--x-small: 1em !important;
}

:root {
  --wp--preset--font-size--small: 1em !important;
}

.wc-block-components-product-details__event {
	  font-weight: 700;
	border-bottom: 12px solid transparent;
}

.wc-block-components-totals-item__label {
	font-weight: 600 !important;
}

.wc-block-components-button__text {
	font-family: "adelle-sans", sans-serif !important;
    background-color: #94c83d !important;
    font-weight: 700 !important;
    font-size: 1.25em !important;
    color: #FFFFFF !important;
    border-radius: 4px;
    padding: 0.75em 1.5em;
    border: none;
}

body.woocommerce-cart .wp-block-product-new {
  display: none !important;
}

body.woocommerce-cart .wp-block-woocommerce-empty-cart-block h2.wp-block-heading:not(.wc-block-cart__empty-cart__title) {
  display: none !important;
}

.gm-main-menu-wrapper .gm-minicart-dropdown .woocommerce-mini-cart-item .remove {
	background-color: red;
	color: #FFFFFF !important;
	font-weight: 700;
}

.bookacti-form-field-name-quantity label {
	font-size: 1.2em;
}

.bookacti-calendar-title {
	text-align: center;
}

.fc .fc-toolbar-title {
    font-size: 1.25em;
}

.bookacti-calendar {
	max-width: 965px;
	margin-left: auto;
	margin-right: auto;
	border-top: 1px solid #000000;
	padding-top: 20px;
}

.fc .fc-button {
	font-size: 0.9em;
	background-color: #864598;
}

body:not(.home) .fc table {
    font-size: 0.9em;
}

.bookacti-calendar .fc-event .fc-event-main {
	font-size: 1.05em;
	padding: 4px;
}

.bookacti-calendar .fc-event-time {
	font-size: 1.15em;
	font-weight: bold;
	text-decoration: underline;
	margin-bottom: 8px;
}

.bookacti-picked-events-list-title {
	text-decoration: underline;
	margin-bottom: 15px;
}

.bookacti-form-field-type-total_price label {
	text-decoration: underline;
}

.bookacti-total-price-table {
	margin-top: 20px;
}

.bookacti-total-price-table thead {
	background-color: #864598;
	color: #FFFFFF;
}

.bookacti-total-price-table tfoot {
	background-color:rgba(134, 69, 152, 0.25);
}

.bookacti-form-field-label {
	font-weight: 600;
	font-size: 1.15em;
	margin-bottom: 12px !important;
	color: #864598;
}

.bookacti-form-field-name-quantity {
	text-align: center;
	margin-bottom: 45px !important;
}

.baaf-participant-fieldset legend {
	font-size: 1.25em;
}

.baaf-participant-fieldset {
	border: 1px solid #864598 !important;
}

.baaf-participant-fieldset {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 16px !important;
}

.bookacti-form-field-container input[type=date], .bookacti-form-field-container input[type=email], .bookacti-form-field-container input[type=password], .bookacti-form-field-container input[type=search], .bookacti-form-field-container input[type=tel], .bookacti-form-field-container input[type=text]:not(.badp-waterfall-datepicker), .bookacti-form-field-container input[type=url], .bookacti-form-field-container select {
	font-family: "adelle-sans", sans-serif;
    border: 1px solid #000000;
	padding: 8px;
	font-size: 1em;
}

.bookacti-textarea {
	font-family: "adelle-sans", sans-serif;
    border: 1px solid #000000;
	padding: 8px;
	font-size: 1em;
}

.main-booking-form .baaf-participant-fieldset input {
    width: 100% !important;
    inline-size: 100% !important;
	min-width: 280px !important;
}

@media (max-width: 768px) {
    .baaf-participant-fieldset {
        grid-template-columns: 1fr !important;
    }
}

.bookacti-form-field-name-submit input {
	font-size: 1.85em !important;
	font-weight: 700;
	color: #FFFFFF;
	background-color: #864598;
	padding: 12px;
	margin-top: 40px;
}

input[type="text" i] {
	min-height: 32px;
    border: 1px solid #000000;
	padding: 8px;
	font-size: 1em;
	min-width: 280px !important;
}


.team-carousel {
position:relative;
}

.team-carousel .team-item {
text-align:center;
transition: all .5s ease;
}

.team-carousel .team-image img {
width:100%;
height:auto;
display:block;
border-radius:6px;
}

/* Smaller side items */

.team-carousel .owl-item {
transform: scale(.8) !important;
opacity:.5;
transition: all .5s cubic-bezier(.4,0,.2,1);
}

/* Center item */

.team-carousel .owl-item.center {
transform: scale(1) !important;
opacity:1;
}

/* Text */

.team-title {
font-size:1.65em;
margin-top:20px;
	margin-bottom: 0px;
font-weight:600;
	text-align: center;
}

.team-position {
font-size: 1em;
}

/* Arrows */

.team-carousel .owl-nav button {
position:absolute;
top:50%;
transform:translateY(-50%);
background:none !important;
border:none !important;
z-index:5;
}

.team-carousel .owl-prev {
left:5px;
}

.team-carousel .owl-next {
right: 5px;
}

.team-arrow {
display:flex;
align-items:center;
justify-content:center;
width:50px;
height:50px;
background:#000;
color:#fff;
border-radius:50%;
font-size:24px;
transition:.3s ease;
}

.team-arrow:hover {
background:#333;
transform:scale(1.1);
}


.active8-team-row {
    display: flex;
    gap: 30px;
    margin-bottom: 50px;
    align-items: flex-start;
}

.active8-team-image {
    width: 25%;
}

.active8-team-image img {
    width: 100%;
    height: auto;
}

.active8-team-content {
    width: 75%;
}

.active8-team-title {
    margin-bottom: 5px;
}

.active8-team-position {
	font-size: 1.25em;
    font-weight: 700;
    margin-bottom: 15px;
    color: #864598;
}

/* Responsive */
@media (max-width: 768px) {
    .active8-team-row {
        flex-direction: column;
    }

    .active8-team-image,
    .active8-team-content {
        width: 100%;
    }
}


/* -------------------------------------------------------
WOOCOMMERCE NOTICES - CLEAN UI
------------------------------------------------------- */

.woocommerce-notices-wrapper {
    margin-bottom: 25px;
}

/* Base Notice Style */

.woocommerce-message,
.woocommerce-error,
.woocommerce-info {
    border: none !important;
    border-radius: 8px;
    padding: 16px 20px;
    margin-bottom: 15px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    font-size: 15px;
    line-height: 1.5;
}

.woocommerce-message::before,
.woocommerce-error::before,
.woocommerce-info::before {
    display: none !important;
}

/* Success */

.woocommerce-message {
    background: #f0f9f4;
    border-left: 4px solid #27ae60;
}

/* Info */

.woocommerce-info {
    background: #f2f7ff;
    border-left: 4px solid #2d7ff9;
}

/* Error */

.woocommerce-error {
    background: #fff5f5;
    border-left: 4px solid #e74c3c;
}

/* Remove focus outlines */

.woocommerce-message:focus,
.woocommerce-error:focus,
.woocommerce-info:focus {
    outline: none;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

/* Links inside notices */

.woocommerce-message a,
.woocommerce-info a,
.woocommerce-error a {
    font-weight: 600;
    text-decoration: none;
}

/* Buttons inside notices */

.woocommerce-message .button,
.woocommerce-info .button {
    float: right;
    margin-left: 15px;
}



/* =====================================================
   WooCommerce My Account — Stripe / Notion style UI
   Scoped ONLY to account pages
===================================================== */

body.woocommerce-account .woocommerce {
    display: block;
}

/* Create proper 2-column layout ONLY for account nav + content */
body.woocommerce-account .woocommerce-MyAccount-navigation {
    float: left;
    width: 260px;
    margin-right: 30px;
}

body.woocommerce-account .woocommerce-MyAccount-content {
    overflow: hidden;
}

/* IMPORTANT: keep notices OUT of layout flow */
body.woocommerce-account .woocommerce-notices-wrapper {
    display: block;
    width: 100%;
    clear: both;
    margin-bottom: 20px;
}

.woocommerce-message {
	color: #000000;
    margin-bottom: 30px;
}


/* =========================
   SIDEBAR (Navigation)
========================= */

body.woocommerce-account
.woocommerce-MyAccount-navigation-link--downloads {
    display: none !important;
}

/* Hide original label text */
body.woocommerce-account
.woocommerce-MyAccount-navigation-link--edit-address a {
    font-size: 0 !important;
}

/* Add replacement text */
body.woocommerce-account
.woocommerce-MyAccount-navigation-link--edit-address a::after {
    content: "Billing address";
    font-size: 14.5px;
    font-weight: 500;
    color: inherit;
}

body.woocommerce-account .woocommerce-MyAccount-navigation {
    width: 260px;
    background: #ffffff;
    border: 1px solid #eee;
    border-radius: 16px;
    padding: 12px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.05);

    position: sticky;
    top: 30px;
}

body.woocommerce-account .woocommerce-MyAccount-navigation ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

/* Nav links */
body.woocommerce-account .woocommerce-MyAccount-navigation li a {
    display: flex;
    align-items: center;
    justify-content: flex-start;

    padding: 12px 14px;
    margin: 4px 0;

    border-radius: 12px;
    text-decoration: none;

    font-size: 14.5px;
    font-weight: 500;

    color: #2b2b2b;

    transition: all 0.2s ease;
}

/* Hover (Notion-style soft highlight) */
body.woocommerce-account .woocommerce-MyAccount-navigation li a:hover {
    background: rgba(134, 69, 152, 0.08);
    color: #864598;
    transform: translateX(2px);
}

/* Active item (Stripe-style pill highlight) */
body.woocommerce-account
.woocommerce-MyAccount-navigation li.is-active a {
    background: #864598;
    color: #ffffff;
    font-weight: 600;
    box-shadow: 0 8px 18px rgba(134, 69, 152, 0.25);
}

/* Active indicator bar (subtle SaaS touch) */
body.woocommerce-account
.woocommerce-MyAccount-navigation li.is-active a::before {
    content: "";
    width: 4px;
    height: 65%;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 4px;
    margin-right: 10px;
}

/* =========================
   CONTENT PANEL (Right side)
========================= */

body.woocommerce-account .woocommerce-MyAccount-content {
    flex: 1;
    background: #ffffff;
    border: 1px solid #eee;
    border-radius: 16px;
    padding: 28px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.04);
    min-height: 500px;
}

/* Headings like modern SaaS */
body.woocommerce-account .woocommerce-MyAccount-content h2,
body.woocommerce-account .woocommerce-MyAccount-content h3 {
    font-weight: 600;
    letter-spacing: -0.02em;
}

/* Links inside content */
body.woocommerce-account .woocommerce-MyAccount-content a {
    color: #864598;
}

/* =========================
   WOOCOMMERCE MY ACCOUNT MOBILE RESPONSIVE
========================= */

@media (max-width: 768px) {
    body.woocommerce-account .woocommerce {
        flex-direction: column;
    }

    body.woocommerce-account .woocommerce-MyAccount-navigation {
        width: 100%;
        position: relative;
        top: 0;
    }
}

/* =========================
   FAQs STYLES
========================= */

.vc_tta-panel-heading h4 {
	font-size: 1.25em !important;
}

.vc_tta-panel-title a {
    color: #864598 !important;
}

/* =========================
   GENERAL FOOTER ITEMS
========================= */

.footer-top img {
	width: 100% !important;
	height: auto !important;
	z-index: 10;
	vertical-align: bottom !important;
}

.general-footer-items {
	color: #FFFFFF;
	font-size: 0.85em;
}


/* =========================
   GENERAL MOBILE
========================= */

@media (max-width:1307px){

.woocommerce form .form-row-first,
.woocommerce form .form-row-last {
    float: none !important;
    width: 100% !important;
    display: block !important;
}
	
.woocommerce form .form-row input[type="text"],
.woocommerce form .form-row input[type="email"],
.woocommerce form .form-row input[type="tel"],
.woocommerce form .form-row input[type="password"] {
    width: 100% !important;
    box-sizing: border-box;
}

}

@media (max-width:1200px){
	
	
.purple-strip-row::before {
    content: "";
    position: absolute;
    top: 0;          /* push background down 5% from top */
    left: 0;
    width: 100%;
    height: 92%;      /* reduce height so it still covers 90% of row */
    
    background: url('https://www.active8multi-sports.co.uk/wp-content/uploads/2026/04/purple-strip-row-desktop.webp') center / cover no-repeat;
    
    z-index: 1;          
    pointer-events: none; 
}
	

.home-purple-strip-title {
    max-width: 100%;
	margin-top: 60px;
	padding-bottom: 40px !important;
}

}

@media (max-width:890px){

.gm-toolbar-social-link i {
  width: 25px;
  height: 23px;
}

}


@media (max-width:768px){
	
.home-purple-strip-title {
	margin-top: 85px;
	margin-left: 10px;
	margin-right: 10px;
}
	
.home-purple-strip-title p {
   font-size: 1.85em;
}

.team-carousel .owl-item {
transform: scale(1);
opacity:1;
}

.team-carousel .owl-prev {
left:-10px;
}

.team-carousel .owl-next {
right:-10px;
}
	
.purple-strip-row {
    background-position: center top;
    background-size: 100% 100%;
}

}


@media only screen and (max-width: 560px) {
	
.home .bookacti-booking-system {
  background: #FFFFFF;
  padding-left: 15px;
  padding-right: 15px;
  padding-bottom: 15px;
  margin-left: 20px;
  margin-right: 20px;
  margin-top: 0px;
  margin-bottom: 0px;
  padding-top: 15px;
  clip-path: none;
}
	
.home-booking-form-title p {
  font-size: 3em;
  padding-bottom: 0px;
  margin-top: 45px;
	margin-left: 15px;
	margin-right: 15px;
  margin-bottom: -20px;
  transform: none;
}

.home .bookacti-form-field-name-free_text {
	margin-left: 40px;
	margin-right: 40px;
}	
	
	
.home .bookacti-form-field-name-free_text p {
  font-size: 1.25em;
}
	
.home .bookacti-form-field-name-free_text p a {
  padding: 12px;
}
	
}


@media only screen and (max-width: 468px) {
	

	
}