/*
Theme Name: Quicklaunch
Theme URI:
Author: Quicklaunch Ltd
Author URI: https://www.quicklaunch.co.uk/
Description: Parent theme.
Version: 1.0
*/

/* 
   MOTION PHYSIOTHERAPY & SPORTS THERAPY — STYLE GUIDE
   Version: 1.0
   Fonts: Syne (headings), Montserrat (body)
   Base font size: 18px
   Breakpoints: 1200px, 992px, 768px, 576px
    */


/* 1. GOOGLE FONTS IMPORT */
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

/* 
   2. CSS CUSTOM PROPERTIES
    */

:root {

    --header-logo-width: 250px;

    /* --- Colours --- */
    --brand-orange: #f76802;
	--brand-navy: #082452;
	--brand-green: #59ac19;

    /* --- Typography — Families --- */
    --font-heading: 'Inter', sans-serif;
    --font-body:    'Inter', sans-serif;

    /* --- Typography — Base --- */
    --font-size-base:   1rem;           /* = 18px */
    --line-height-body: 1.7;
    --line-height-heading: 1.15;

    /* --- Typography — Heading Scale (fluid) --- */
    --fs-h1:        clamp(1.778rem, 4vw, 3rem);         /* 32px -> 54px */
    --fs-h2:        clamp(1.444rem, 3.2vw, 2.333rem);   /* 26px -> 42px */
    --fs-h3:        clamp(1.222rem, 2.5vw, 1.778rem);   /* 22px -> 32px */
    --fs-h4:        clamp(1.111rem, 2vw, 1.333rem);     /* 20px -> 24px */
    --fs-h5:        clamp(1rem, 1.4vw, 1.111rem);       /* 18px -> 20px */
    --fs-h6:        clamp(0.889rem, 1.1vw, 1rem);       /* 16px -> 18px */

    /* --- Typography — Display / Hero (fluid) --- */
    --fs-display:       clamp(2rem, 5vw, 4rem);           /* 36px -> 72px */
    --fs-display-lg:    clamp(2.222rem, 6vw, 4.667rem);   /* 40px -> 84px */
    --fs-display-xl:    clamp(2.5rem, 7vw, 5.3rem);       /* 45px -> 84.8px */
    --fs-display-md:    clamp(2rem, 4vw, 3rem);           /* 36px -> 54px */
}


.fs-display-lg {font-size: var(--fs-display-lg);}
.fs-display-xl {font-size: var(--fs-display-xl);}
.fs-display-md {font-size: var(--fs-display-md);}

/* 
   3. RESET & BASE
    */

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: 16px;        /* Base — all rem values reference this */
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-weight: var(--fw-regular);
    font-size: var(--fs-body);
    line-height: var(--line-height-body);
    color: var(--color-body-text);
    background-color: var(--color-white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}


/* 
   4. HEADINGS
    */

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 800;
    line-height: var(--line-height-heading);
    letter-spacing: -0.01em;
}

h1 { font-size: var(--fs-h1); }
h2 { font-size: var(--fs-h2); }
h3 { font-size: var(--fs-h3); }
h4 { font-size: var(--fs-h4); }
h5 { font-size: var(--fs-h5); }
h6 { font-size: var(--fs-h6); }

/* 5. DISPLAY / HERO TYPOGRAPHY */

/* Mixed weight within a heading — bold word within medium heading
   Usage: wrap a word in <span class="fw-bold"> or <span class="fw-extrabold"> */
.fw-medium    { font-weight: var(--fw-medium); }
.fw-bold      { font-weight: var(--fw-bold); }
.fw-extrabold { font-weight: var(--fw-extrabold); }


/* 6. BODY COPY & PARAGRAPH UTILITIES */

p {
    font-family: var(--font-body);
    font-size: var(--fs-body);
    font-weight: var(--fw-regular);
    line-height: var(--line-height-body);
    color: var(--color-body-text);
    margin-bottom: 1em;
}

/* 7. SECTION SPACING */

.site-padding {
    margin: 0 2%;
}

.site-band {
    padding-top: clamp(3rem, 5vw, 5rem);
    padding-bottom: clamp(3rem, 5vw, 5rem);
}

.site-band.top {
    padding-top: clamp(3rem, 5vw, 5rem);
}

.site-band.bottom {
    padding-top: 0px;
    padding-bottom: clamp(3rem, 5vw, 5rem);
}

.site-band-sm {
    padding-top: clamp(2rem, 3vw, 3rem);
    padding-bottom: clamp(2rem, 3vw, 3rem);
}

.site-band-lg {
    padding-top: clamp(4rem, 7vw, 7rem);
    padding-bottom: clamp(4rem, 7vw, 7rem);
}

/* Small text — captions, post dates, meta */
.text-small {
    font-size: var(--fs-small);
    line-height: 1.5;
}

/* Alignment */
.text-left   { text-align: left; }
.text-center { text-align: center; }
.text-right  { text-align: right; }

/*  7. INLINE & BODY LINKS    */

a {
    color: var(--color-brand-cyan);
    text-decoration: none;
    transition: color var(--transition-base);
}

a:hover,
a:focus {
    color: var(--color-brand-cyan-dark);
    text-decoration: underline;
}

.brand {
    display: inline-block;
    width: var(--header-logo-width);
    margin: 30px 0;
}

.brand img {
    width: 100%;
    height: auto;
}

/* MENU */

#menu-header-1 {}
#menu-header-1 li {}
#menu-header-1 li a {
    color: #000;
    font-weight: 500;
    text-decoration: none;
}

#menu-header-1 li a.active {
    font-weight: 800;
    color: var(--brand-orange);
}

#service-cards {
    position: relative;
    z-index: 5;
}

/* 
   8. BLOCK LINKS (BUTTONS) — .bl
   Usage: <a class="bl cyan">Book Now</a>
          <a class="bl dark">Book Now</a>
          <a class="bl white">Book Now</a>

   Normal state: pill, 1px border, no icon.
   Hover state:  filled circle + chevron slides in from left, fades up on right.
    */

/* --- Base — structure, spacing, typography only. No colours here. --- */
.bl,
.ol {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5em;
    font-family: var(--font-body);
    font-size: var(--fs-small);
    font-weight: 600;
    text-decoration: none;
    line-height: 1;
    padding: 20px 30px;
    border-radius: 35px;
    border: 1px solid transparent;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    white-space: nowrap;
    transition:
        background-color ease 0.4s,
        color ease 0.4s,
        border-color ease 0.4s,
        padding-right ease 0.4s;
}

/* Chevron circle — hidden by default, slides in on hover */
.bl::after,
.ol::after {
    content: '\203A';               /* › single right chevron */
    position: absolute;
    right: 0.6em;
    top: 50%;
    transform: translate(-12px, -50%);
    opacity: 0;
    width: 1.6em;
    height: 1.6em;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1em;
    line-height: 1.6em;
    text-align: center;
    transition:
        transform 0.35s ease,
        opacity 0.35s ease;
}

/* On hover — expand right padding to make room, slide circle in */
.bl:hover,
.ol:hover {
    text-decoration: none;
    padding-right: 3.2em;
}

.bl:hover::after,
.ol:hover::after {
    transform: translate(0, -50%);
    opacity: 1;
}

.bl:active,
.ol:active {
    opacity: 0.85;
}

.bl.orange {
    background-color: var(--brand-orange);
    color: #fff;
}

.bl.green {
    background-color: var(--brand-green);
    color: #fff;
}

.ol.orange {}


/* 
   8a. BLOCK LINK COLOUR VARIANTS — .bl
    */

/* Cyan filled — dark text. Use on dark or image backgrounds */


/*    10. SECTION BACKGROUNDS    */

/* 11. RESPONSIVE TYPOGRAPHY — REFINEMENTS    */

/* ---- 768px ---- */
@media (max-width: 768px) {
    .text-display,
    .text-display-lg {
        letter-spacing: -0.015em;
    }
}

/* ---- 576px ---- */
@media (max-width: 576px) {
    /* Full-width buttons on mobile */
    .bl,
    .ol {
        width: 100%;
        justify-content: center;
    }
}

.bgimg .vc_column-inner {
	height: 100%;
	min-height: 300px;
}

/* Template Styling */

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

/* Fix nested WPBakery rows inside columns */
.vc_row.vc_inner.vc_row-fluid {
  display: flex;
  flex-wrap: wrap;
  width: auto;
  margin-left: -15px;
  margin-right: -15px;
}

.vc_row.vc_inner.vc_row-fluid > [class*="col-"] {
  box-sizing: border-box;
  width: 100%;
  max-width: 100%;
  flex: 0 0 100%;
  padding-left: 15px;
  padding-right: 15px;
  float: none;
}

@media (min-width: 768px) {
  .vc_row.vc_inner.vc_row-fluid > .col-sm-1 {
    width: 8.33333333%;
    max-width: 8.33333333%;
    flex: 0 0 8.33333333%;
  }
  .vc_row.vc_inner.vc_row-fluid > .col-sm-2 {
    width: 16.66666667%;
    max-width: 16.66666667%;
    flex: 0 0 16.66666667%;
  }
  .vc_row.vc_inner.vc_row-fluid > .col-sm-3 {
    width: 25%;
    max-width: 25%;
    flex: 0 0 25%;
  }
  .vc_row.vc_inner.vc_row-fluid > .col-sm-4 {
    width: 33.33333333%;
    max-width: 33.33333333%;
    flex: 0 0 33.33333333%;
  }
  .vc_row.vc_inner.vc_row-fluid > .col-sm-5 {
    width: 41.66666667%;
    max-width: 41.66666667%;
    flex: 0 0 41.66666667%;
  }
  .vc_row.vc_inner.vc_row-fluid > .col-sm-6 {
    width: 50%;
    max-width: 50%;
    flex: 0 0 50%;
  }
  .vc_row.vc_inner.vc_row-fluid > .col-sm-7 {
    width: 58.33333333%;
    max-width: 58.33333333%;
    flex: 0 0 58.33333333%;
  }
  .vc_row.vc_inner.vc_row-fluid > .col-sm-8 {
    width: 66.66666667%;
    max-width: 66.66666667%;
    flex: 0 0 66.66666667%;
  }
  .vc_row.vc_inner.vc_row-fluid > .col-sm-9 {
    width: 75%;
    max-width: 75%;
    flex: 0 0 75%;
  }
  .vc_row.vc_inner.vc_row-fluid > .col-sm-10 {
    width: 83.33333333%;
    max-width: 83.33333333%;
    flex: 0 0 83.33333333%;
  }
  .vc_row.vc_inner.vc_row-fluid > .col-sm-11 {
    width: 91.66666667%;
    max-width: 91.66666667%;
    flex: 0 0 91.66666667%;
  }
  .vc_row.vc_inner.vc_row-fluid > .col-sm-12 {
    width: 100%;
    max-width: 100%;
    flex: 0 0 100%;
  }
}

@media (min-width: 992px) {
  .vc_row.vc_inner.vc_row-fluid > .col-lg-1 {
    width: 8.33333333%;
    max-width: 8.33333333%;
    flex: 0 0 8.33333333%;
  }
  .vc_row.vc_inner.vc_row-fluid > .col-lg-2 {
    width: 16.66666667%;
    max-width: 16.66666667%;
    flex: 0 0 16.66666667%;
  }
  .vc_row.vc_inner.vc_row-fluid > .col-lg-3 {
    width: 25%;
    max-width: 25%;
    flex: 0 0 25%;
  }
  .vc_row.vc_inner.vc_row-fluid > .col-lg-4 {
    width: 33.33333333%;
    max-width: 33.33333333%;
    flex: 0 0 33.33333333%;
  }
  .vc_row.vc_inner.vc_row-fluid > .col-lg-5 {
    width: 41.66666667%;
    max-width: 41.66666667%;
    flex: 0 0 41.66666667%;
  }
  .vc_row.vc_inner.vc_row-fluid > .col-lg-6 {
    width: 50%;
    max-width: 50%;
    flex: 0 0 50%;
  }
  .vc_row.vc_inner.vc_row-fluid > .col-lg-7 {
    width: 58.33333333%;
    max-width: 58.33333333%;
    flex: 0 0 58.33333333%;
  }
  .vc_row.vc_inner.vc_row-fluid > .col-lg-8 {
    width: 66.66666667%;
    max-width: 66.66666667%;
    flex: 0 0 66.66666667%;
  }
  .vc_row.vc_inner.vc_row-fluid > .col-lg-9 {
    width: 75%;
    max-width: 75%;
    flex: 0 0 75%;
  }
  .vc_row.vc_inner.vc_row-fluid > .col-lg-10 {
    width: 83.33333333%;
    max-width: 83.33333333%;
    flex: 0 0 83.33333333%;
  }
  .vc_row.vc_inner.vc_row-fluid > .col-lg-11 {
    width: 91.66666667%;
    max-width: 91.66666667%;
    flex: 0 0 91.66666667%;
  }
  .vc_row.vc_inner.vc_row-fluid > .col-lg-12 {
    width: 100%;
    max-width: 100%;
    flex: 0 0 100%;
  }
}
/* Custom Theme Styling */ 

.white-text {
    color: #fff;
}

header {
    background-color: #fff;
    position: relative;
    width: 100%;
}

#hero-section h1 {
    font-size: var(--fs-display-lg);
    font-weight: 800;
}

#hero-section {
    color: #fff;
}

#service-slider {
    background-color: var(--brand-navy);
    border-radius: 20px;
    margin-bottom: 30px;
}

.page-link {
    padding: 30px 100px 30px 30px;
    border-radius: 20px;
    border: 1px solid var(--brand-green);
    background-color: transparent;
    color: #000;
    margin-bottom: 20px;
    transition:
        background-color ease 0.5s,
        color ease 0.3s,
        padding ease 0.5s;
}

.page-link:hover {
    background-color: var(--brand-green);
    padding: 30px 100px 30px 60px;
    color: #fff;
    transition:
        background-color ease 0.5s,
        color ease 0.3s,
        padding ease 0.5s;
}

footer #page-footer {
    background-color: #0a1740;
    border-radius: 20px;
    margin-bottom: 20px;
    background-image: url('/wp-content/uploads/2026/05/footer-bg-1.png');
    background-position: top right;
    background-repeat: no-repeat;
}

footer #ftr-logos {
    padding: 50px 0;
}

footer #ftr-news {

}

footer #page-footer #ftr-cta {
    padding: 10% 0;
    color: #fff;
}
footer #page-footer #ftr-links {
    color: #fff;
}
footer #page-footer #ftr-smallprint {
    padding: 50px 0 20px 0;
    color: #fff;
}

footer .brand {
    margin: 0 0 30px 0 !important;
}

footer #ftr-testimonials {
    padding: 5% 0;
}

#ftr-testimonials .stars {
    color: #ffd400;
    font-size: 32px;
}

footer .menu {
    margin: 0 0 20px 0;
    padding: 0px;
    list-style-type: none;
}

footer .menu li {
    display: block;
    margin: 15px 0 15px 0;
    padding: 0px;
}

footer .menu li a:hover {
    padding: 0 0 0 10px;
    border-left: 2px solid var(--brand-orange);
    transition: padding ease 0.5s;
}

footer .menu li a {
    display: block;
    color: #fff;
    text-decoration: none;
    padding: 0px;
    line-height: 1;
    transition: padding ease 0.3s;
}

#page-title {
    background-color: var(--brand-navy);
    padding: 50px 0;
    color: #fff;
}

#page-title h1 {
    color: var(--brand-green);
}

.breadcrumb {}
.breadcrumb li {}
.breadcrumb li:last-child:after {
    content: none;
    padding: 0px;
}
.breadcrumb li:after {
    content: "/";
    padding: 0 5px;
    color: var(--brand-orange);
}
.breadcrumb span {}
.breadcrumb a {
    font-weight: bold;
}

/*  */

.value-block h4 {
    color: var(--brand-green) !important;
}

.value-block .vc_column-inner {
    background-color: transparent;
    border: 1px solid #fff;
    aspect-ratio: 4 / 3;
    position: relative;
    border-radius: 15px;
    margin-bottom: 30px;
    padding: 30px;
    color: #fff;
    transition: background-color ease 0.5s;
}

.value-block .vc_column-inner > .wpb_wrapper {
    position: absolute;
    bottom: 30px;
    left: 30px;
    right: 30px;
    transition: bottom ease 0.5s;
}

.value-block:hover .vc_column-inner {
    background-color: var(--brand-orange);
    transition: background-color ease 0.5s;
}


.value-block:hover .vc_column-inner > .wpb_wrapper {
    position: absolute;
    bottom: 60px;
    left: 30px;
    right: 30px;
    transition: bottom ease 0.5s;
}

#gf-who {
    background-color: #262626;
    margin-top: 30px;
    margin-bottom: 30px;
    border-radius: 20px;
}


/* Form */

label {
    font-size: 13px;
    text-transform: uppercase;
    margin: 0 0 10px 0;
    color: #fff;
    font-weight: 500;
    letter-spacing: 2px;
}

.wpcf7-list-item-label {
    text-transform: normal;
    letter-spacing: 0px;
    color: #fff;
}

label span {
    color: var(--brand-orange);
}

input[type="text"],
input[type="tel"],
input[type="date"],
input[type="email"],
textarea,
select {
    box-sizing: border-box;
    width: 100%;
    background-color: #fff;
    padding: 20px;
    font-size: 16px;
    color: #000;
    border: none;
    border-radius: 10px;
}














