/*
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=Gloock&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');


/* 
   2. CSS CUSTOM PROPERTIES
    */

:root {

    /* --- Colours --- */
    --mhm-gold:              #d3af37;
    --color-dark:            #111827;       /* Near-black — dark section BGs, stats */
    --color-dark-alt:        #1C2333;       /* Slightly lighter dark — card BGs on dark */
    --color-body-text:       #1C1C1C;       /* Default body copy */
    --color-muted:           #6B7280;       /* Secondary/muted text */
    --color-light-bg:        #F4F6F8;       /* Subtle section alternates, FAQ BG */
    --color-white:           #FFFFFF;
    --color-border:          #E2E6EA;       /* Subtle borders, dividers */

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

    /* --- Typography — Weights --- */
    --fw-regular:   400;
    --fw-medium:    500;
    --fw-bold:      700;
    --fw-extrabold: 800;

    /* --- 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 */

    /* --- Typography — Body Scale --- */
    --fs-lead:      clamp(1rem, 1.6vw, 1.222rem);   /* 18px -> 22px */
    --fs-body:      1rem;       /* 18px — default body */
    --fs-small:     0.833rem;   /* 15px — captions, meta */
    --fs-label:     0.722rem;   /* 13px — eyebrow labels, nav utility */

    /* --- Spacing --- */
    --space-xs:   0.5rem;
    --space-sm:   1rem;
    --space-md:   1.5rem;
    --space-lg:   2.5rem;
    --space-xl:   4rem;
    --space-xxl:  6rem;

    /* --- Radius --- */
    --radius-sm:  4px;
    --radius-md:  8px;
    --radius-pill: 50px;

    /* --- Transitions --- */
    --transition-base: 0.22s ease;
    --transition-slow: 0.35s ease;

    /* --- Shadows --- */
    --shadow-sm:  0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md:  0 4px 20px rgba(0, 0, 0, 0.12);
    --shadow-lg:  0 8px 40px rgba(0, 0, 0, 0.16);
}


.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: #262626;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}


.brand {
    display: inline-block;
    width: 150px;
    margin: 30px 0;
}
.brand img {
    width: 100%;
    height: auto;
}

/* 
   4. HEADINGS
    */

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: var(--fw-bold);      /* Default: Medium (500) */
    line-height: var(--line-height-heading);
    color: var(--color-body-text);
    letter-spacing: -0.01em;
}

h1 { font-size: var(--fs-h1); font-weight: var(--fw-bold); }
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); }

/* Heading on dark backgrounds */
.dark h1, .dark h2, .dark h3,
.dark h4, .dark h5, .dark h6,
.bg-dark h1, .bg-dark h2, .bg-dark h3,
.bg-dark h4, .bg-dark h5, .bg-dark h6 {
    color: var(--color-white);
}


/* 
   5. DISPLAY / HERO TYPOGRAPHY
    */

/* Standard display heading — hero sections */
.text-display {
    font-family: var(--font-heading);
    font-size: var(--fs-display);
    font-weight: var(--fw-extrabold);
    line-height: 1.05;
    letter-spacing: -0.02em;
    color: var(--color-white);
}

/* Large display variant */
.text-display-lg {
    font-family: var(--font-heading);
    font-size: var(--fs-display-lg);
    font-weight: var(--fw-extrabold);
    line-height: 1.0;
    letter-spacing: -0.025em;
    color: var(--color-white);
}

/* Inline cyan highlight — used within display headings
   Usage: <h1 class="text-display">Keeping people <span class="text-highlight">moving.</span></h1> */
.text-highlight {
    color: var(--color-brand-cyan);
}

/* 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: var(--space-md);
}

/*p:last-child {
    margin-bottom: 0;
}
*/
/* Lead paragraph — intro text, about page opening copy */
.text-lead {
    font-size: var(--fs-lead);
    font-weight: var(--fw-regular);
    line-height: 1.6;
    color: var(--color-body-text);
}

/*
   7. SECTION SPACING
*/

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

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

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

.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);
}

/*
   Event Single
*/

.mhm-event-page {
    background: #f4f6f8;
}

.mhm-event-hero {
    position: relative;
    background-color: #1c2333;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.mhm-event-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.18) 0%, rgba(0, 0, 0, 0.72) 100%);
}

.mhm-event-hero-inner {
    position: relative;
    z-index: 1;
    min-height: clamp(24rem, 55vw, 36rem);
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1.5rem;
    padding: clamp(5rem, 10vw, 8rem) 0 clamp(2rem, 5vw, 3rem);
}

.mhm-event-hero-copy {
    max-width: 48rem;
}

.mhm-event-eyebrow {
    margin-bottom: 0.75rem;
    color: rgba(255, 255, 255, 0.78);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.85rem;
}

.mhm-event-title {
    color: #fff;
    margin-bottom: 0.85rem;
}

.mhm-event-subtitle {
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.05rem;
}

.mhm-event-subtitle span {
    display: inline-block;
    margin: 0 0.5rem;
}

.mhm-event-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 3rem;
    padding: 0.85rem 1.5rem;
    border-radius: 999px;
    background: var(--mhm-gold);
    color: #111827;
    font-weight: 700;
    text-decoration: none;
    transition: transform var(--transition-base), background-color var(--transition-base);
}

.mhm-event-button:hover,
.mhm-event-button:focus {
    color: #111827;
    background: #e3c55e;
    transform: translateY(-1px);
    text-decoration: none;
}

.mhm-event-button-outline {
    background: transparent;
    border: 1px solid rgba(17, 24, 39, 0.12);
    color: #111827;
}

.mhm-event-button-outline:hover,
.mhm-event-button-outline:focus {
    background: #111827;
    color: #fff;
}

.mhm-event-button-full {
    width: 100%;
    margin-top: 1rem;
}

.mhm-event-content-card,
.mhm-event-dates-card,
.mhm-event-poster-card,
.mhm-event-summary-card,
.mhm-event-share-card {
    background: #fff;
    border-radius: 1.25rem;
    box-shadow: 0 12px 40px rgba(17, 24, 39, 0.08);
}

.mhm-event-content-card,
.mhm-event-dates-card,
.mhm-event-summary-card,
.mhm-event-share-card {
    padding: clamp(1.5rem, 3vw, 2.25rem);
}

.mhm-event-content-card,
.mhm-event-dates-card {
    margin-bottom: 1.5rem;
}

.mhm-event-body-copy > *:last-child {
    margin-bottom: 0;
}

.mhm-event-date-list {
    display: grid;
    gap: 0;
}

.mhm-event-date-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(17, 24, 39, 0.22);
    transition: background-color var(--transition-base), transform var(--transition-base);
}

.mhm-event-date-item:hover,
.mhm-event-date-item:focus-within {
    background-color: rgba(17, 24, 39, 0.025);
}

.mhm-event-date-main {
    min-width: 0;
    flex: 1 1 auto;
    display: flex;
    align-items: center;
}

.mhm-event-date-main p {
    margin-bottom: 0;
}

.mhm-event-date-heading-row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.65rem 0.85rem;
    width: 100%;
}

.mhm-event-date-heading {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    font-size: 1.05rem;
    line-height: 1.2;
    color: #111827;
    margin: 0;
}

.mhm-event-date-venue-line,
.mhm-event-date-separator {
    color: #111827;
}

.mhm-event-date-value {
    font-weight: 700;
}

.mhm-event-lineup-toggle {
    position: relative;
    flex: 0 0 auto;
    z-index: 3;
    align-self: center;
}

.mhm-event-lineup-toggle summary {
    list-style: none;
}

.mhm-event-lineup-toggle summary::-webkit-details-marker {
    display: none;
}

.mhm-event-lineup-summary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 1.7rem;
    padding: 0.2rem 0.75rem;
    border: 1px solid rgba(122, 77, 0, 0.22);
    border-radius: 999px;
    background: #d3af37;
    color: #fff;
    font-size: 0.72rem;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background-color var(--transition-base), border-color var(--transition-base), color var(--transition-base);
}

.mhm-event-lineup-toggle[open] .mhm-event-lineup-summary,
.mhm-event-lineup-summary:hover,
.mhm-event-lineup-summary:focus {
    background: #c49d21;
    border-color: #c49d21;
    color: #fff;
}

.mhm-event-lineup-panel {
    position: absolute;
    top: calc(100% + 10px);
    left: 50%;
    min-width: 170px;
    max-width: 220px;
    padding: 0.9rem 1.05rem;
    border-radius: 1rem;
    background: #262626;
    color: #fff;
    font-size: 0.88rem;
    line-height: 1.35;
    text-align: center;
    box-shadow: 0 18px 38px rgba(17, 24, 39, 0.18);
    transform: translateX(-50%);
}

.mhm-event-lineup-panel::before {
    content: "";
    position: absolute;
    left: 50%;
    top: -8px;
    width: 16px;
    height: 16px;
    background: #262626;
    transform: translateX(-50%) rotate(45deg);
}

.mhm-event-date-ticket {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    min-height: 2.65rem;
    padding: 0.55rem 1rem;
    border: 1px solid rgba(17, 24, 39, 0.18);
    border-radius: 999px;
    background: #fff;
    color: #111827;
    font-size: 0.95rem;
    font-weight: 600;
    line-height: 1;
    text-decoration: none;
    transition: border-color var(--transition-base), background-color var(--transition-base), color var(--transition-base);
}

.mhm-event-date-ticket:hover,
.mhm-event-date-ticket:focus {
    border-color: #111827;
    background: #111827;
    color: #fff;
    text-decoration: none;
}

.mhm-event-date-ticket-icon,
.mhm-event-date-ticket-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
}

.mhm-event-date-ticket-arrow {
    transform: translateX(0);
    transition: transform var(--transition-base);
}

.mhm-event-date-ticket:hover .mhm-event-date-ticket-arrow,
.mhm-event-date-ticket:focus .mhm-event-date-ticket-arrow {
    transform: translateX(4px);
}

.mhm-event-sidebar {
    display: grid;
    gap: 1.5rem;
}

.mhm-event-poster-card {
    overflow: hidden;
}

.mhm-event-poster-card img {
    display: block;
    width: 100%;
    height: auto;
}

.mhm-event-summary-card h3 {
    margin-bottom: 1rem;
}

.mhm-event-related-card {
    margin-top: 2rem;
    padding: clamp(1.5rem, 3vw, 2rem);
    border-radius: 1.25rem;
    background: #2a2f31;
    box-shadow: 0 12px 40px rgba(17, 24, 39, 0.12);
}

.mhm-event-share-card h3 {
    margin-bottom: 1rem;
}

.mhm-event-share-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.mhm-event-share-item {
    margin: 0;
}

.mhm-event-share-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.9rem;
    height: 2.9rem;
    border-radius: 999px;
    background: #111827;
    color: #fff;
    text-decoration: none;
    transition: transform var(--transition-base), background-color var(--transition-base);
}

.mhm-event-share-link:hover,
.mhm-event-share-link:focus {
    background: var(--mhm-gold);
    color: #111827;
    transform: translateY(-1px);
    text-decoration: none;
}

.mhm-event-summary-card p:last-of-type {
    margin-bottom: 0;
}

@media (max-width: 991px) {
    .mhm-event-hero-inner {
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-end;
    }

    .mhm-event-date-item {
        flex-direction: column;
        align-items: flex-start;
    }

    .mhm-event-date-heading-row {
        width: 100%;
    }

    .mhm-event-lineup-toggle {
        width: 100%;
    }

    .mhm-event-lineup-summary {
        width: fit-content;
    }

    .mhm-event-lineup-panel {
        position: static;
        min-width: 0;
        max-width: none;
        margin-top: 0.6rem;
        transform: none;
    }

    .mhm-event-lineup-panel::before {
        display: none;
    }

    .mhm-event-date-action {
        width: 100%;
    }

    .mhm-event-date-ticket {
        width: 100%;
        justify-content: center;
    }
}

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

/* Eyebrow / section label — e.g. "ABOUT US", "OUR SERVICES" */
.text-label {
    font-family: var(--font-body);
    font-size: var(--fs-label);
    font-weight: var(--fw-bold);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-brand-cyan);
}

/* Muted / secondary text */
.text-muted {
    color: var(--color-muted);
}

/* Text colour utilities */
.text-white  { color: var(--color-white); }
.text-dark   { color: var(--color-dark); }
.text-cyan   { color: var(--color-brand-cyan); }

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

/* Dark background body copy override */
.darkbg p,
.darkbg {
    color: #fff !important;
}


/* 
   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;
}

/* Article / prose body link */
.prose a,
.entry-content a {
    color: var(--color-brand-cyan);
    text-decoration: underline;
    text-underline-offset: 3px;
    text-decoration-thickness: 1px;
    transition: color var(--transition-base);
}

.prose a:hover,
.entry-content a:hover {
    color: var(--color-brand-cyan-dark);
}

/* Breadcrumb / nav utility link */
.link-muted {
    color: var(--color-muted);
    font-size: var(--fs-small);
    transition: color var(--transition-base);
}

.link-muted:hover {
    color: var(--color-brand-cyan);
    text-decoration: none;
}

/* Read more / article link — "Read article >" */
.link-arrow {
    display: inline-flex;
    align-items: center;
    gap: 0.3em;
    font-family: var(--font-body);
    font-size: var(--fs-small);
    font-weight: var(--fw-bold);
    color: var(--color-brand-cyan);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    transition: gap var(--transition-base), color var(--transition-base);
}

.link-arrow::after {
    content: '›';
    font-size: 1.2em;
    line-height: 1;
    transition: transform var(--transition-base);
}

.link-arrow:hover {
    color: var(--color-brand-cyan-dark);
    gap: 0.5em;
    text-decoration: none;
}

.link-arrow:hover::after {
    transform: translateX(3px);
}


/* 
   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.
    */


.bl, .ol {
    display: inline-flex;
    gap: 20px;
    padding: 20px 30px;
    font-size: var(--font-size-base);
    text-decoration: none;
    border-width: 1px;
    border-color: transparent;
    border-style: solid;
    font-weight: var(--fw-medium);
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: padding ease 0.5s, letter-spacing ease 0.5s;
}

.bl:hover, .ol:hover {
    text-decoration: none;
    padding: 20px 30px;
    letter-spacing: 4px;
    transition: padding ease 0.5s, letter-spacing ease 0.5s;
}

.bl:after, .ol:after {
    content: none;
    opacity: 0;
    transition: opacity ease 0.5s, padding ease 0.5s;
}

/*.bl:hover:after, .ol:hover:after {
    content: ">";
    padding: 0 15px 0 0;
    opacity: 1;
    transition: opacity ease 0.5s, padding ease 0.5s;
}*/

.bl.gold {
    color: var(--color-white);
    background-color: var(--mhm-gold);
}

.ol.gold {}
.ol.white {
    border-color: var(--color-white);
    color: var(--color-white);
    background-color: transparent;
}



/* 
   10. SECTION BACKGROUNDS
    */

.white-bg {background-color: var(--color-white);}
.gold-bg {background-color: var(--mhm-gold);}



/* 
   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;
}

/* Homepage */



.breadcrumb {
    margin: 0px;
    color: #fff;
}
.breadcrumb li:after {
    content: "/";
    padding: 0 10px;
    color: var(--mhm-gold);
}
.breadcrumb li:last-child:after {
    content: "";
    padding: 0px;
}
.breadcrumb a {
    color: #fff;
    font-weight: 700;
    text-decoration: none;
}

.breadcrumb a:hover {
    text-decoration: none;
}

/* 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%;
  }
}


/* Theme specific classes */

header {
    position: absolute;
    width: 100%;
    background-color: transparent;
    z-index: 10;
}

header .nav-link {
    color: var(--color-white);
    font-weight: var(--fw-bold);
    text-transform: uppercase;
    font-size: 15px;
}

header .nav-link:hover {
    text-decoration: none;
    color: var(--mhm-gold);
}

header .nav-link.active {
    color: var(--mhm-gold);
    font-weight: var(--fw-extrabold);
}

#hero-section {
    background-image: url(/wp-content/uploads/2026/05/hero-bg.jpg);
    background-size: cover;
    background-position: center center;
    position: relative;
}

#hero-section #overlay {
    position: absolute;
    background-color: rgba(0, 0, 0, 0.6);
    width: 100%;
    height: 100%;
    z-index: 1;
    top: 0;
}

#hero-section #hero-content,
#hero-section #hero-blocks {
    position: relative;
    z-index: 2;
}

#hero-section #hero-content h4 {
    text-transform: uppercase;
    letter-spacing: 4px;
    font-weight: var(--fw-regular);
}

#hero-section #hero-content h1 {
    font-size: clamp(30px, 10vw, 70px);
    font-weight: var(--fw-extrabold);
}

#hero-section #hero-blocks {
    padding-top: 20vh;
    background: #262626;
    background: linear-gradient(0deg,rgba(38, 38, 38, 1) 0%, rgba(255, 255, 255, 0) 100%);
}

footer,
footer p {
    color: #fff;
}

footer #smallprint {
    padding: 0 0 20px 0;
}

footer .menu {
    margin: 0px 0px 30px 0px;
    padding: 0px;
    list-style-type: none;
    display: flex;
    flex-direction: row;
    gap: 10px;
}

@media (max-width: 767px) {
    footer .menu {
        flex-direction: column;

    }
}

footer .menu a {
    font-size: 16px;
    font-weight: var(--fw-extrabold);
    color: #fff;
    text-transform: uppercase;
}


#newsletter {
    background: #262626;
background: linear-gradient(180deg,rgba(38, 38, 38, 1) 50%, rgba(255, 255, 255, 1) 50%);
}

.mhm-socials-list {
    margin: 0px;
    padding: 0;
    list-style-type: none;
    display: flex;
    gap: 10px;
    justify-content: flex-start; /* Right align on desktop */
}

footer .mhm-socials-list {
    justify-content: flex-end; /* Right align on desktop */
}

.mhm-socials-list li {}


.mhm-socials-list li a {
    display: inline-block;
    background-color: transparent;
    color: #000;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    font-size: 30px;
    line-height: 60px;
    text-align: center;
    border: 1px solid var(--mhm-gold);
    transition: background-color ease 0.5s;
}

footer .mhm-socials-list li a {
    color: var(--color-white);
}

.mhm-socials-list li a:hover {
    background-color: var(--mhm-gold);
    transition: background-color ease 0.5s;
}

/* Mobile */
@media (max-width: 767px) {
    footer .mhm-socials-list {
        justify-content: flex-start; /* Left align on mobile */
        margin: 20px 0;
    }
}

/* Mailchimp form */

#mc_embed_signup form {
    width: 100%;
}

#mc_embed_signup_scroll {
    display: grid;
    grid-template-columns: repeat(3, 1fr) auto;
    gap: 20px;
    align-items: end;
}

/* Hide the required text */
.indicates-required {
    grid-column: 1 / -1;
    margin-bottom: 10px;
    font-size: 14px;
}

/* Each field */
.mc-field-group {
    display: flex;
    flex-direction: column;
}

/* Labels */
.mc-field-group label {
    margin-bottom: 8px;
    font-size: 14px;
    font-weight: 600;
    color: #fff;
}

/* Inputs */
.mc-field-group input {
    height: 50px;
    padding: 0 15px;
    border: 1px solid #ccc;
    border-radius: 4px;
    width: 100%;
    box-sizing: border-box;
}

/* Submit area */
.optionalParent {
    display: flex;
    align-items: end;
}

.optionalParent .button {
    height: 50px;
    padding: 0 30px;
    border: none;
    cursor: pointer;
}

/* Hide Mailchimp badge if needed */
.refferal_badge {
    display: none;
}

/* Responses full width */
#mce-responses {
    grid-column: 1 / -1;
}

/* Mobile */
@media (max-width: 767px) {
    #mc_embed_signup_scroll {
        grid-template-columns: 1fr;
    }

    .optionalParent {
        width: 100%;
    }

    .optionalParent .button {
        width: 100%;
    }
}

.navbar-toggler {
    background-color: var(--mhm-gold);
    color: #fff;
    padding: 20px;
}


#page-title {
    background-size: cover;
    background-position: center center;
    color: #fff;
    border-bottom: 3px solid var(--mhm-gold);
}

#page-title .page-title-inner {
    padding-top: calc(5% + 150px);
    padding-bottom: 30px;
    background-color: rgba(0, 0, 0, 0.8);
}

#page-title h1 {
    color: #fff;
}

#page-title .page-title-eyebrow {
    margin-bottom: 0.85rem;
    color: rgba(255, 255, 255, 0.76);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 0.8rem;
    font-weight: var(--fw-bold);
}

.service-block .vc_column-inner {
    padding: 30px;
    background-color: #f2f2f2;
    border-radius: 15px;
    min-height: 100%;
    margin: 0px;
    border: 3px solid transparent;
    transition: background-color ease 0.5s, margin ease 0.5s;
}

.service-block:hover .vc_column-inner {
    background-color: #fff;
    margin: -10px 0 10px 0px;
    transition: background-color ease 0.5s, margin ease 0.5s;
    border: 3px solid var(--mhm-gold);
}

.slick-slide img {
    width: 100%;
    height: auto;
}

/*
   Talent Single
*/

.mhm-talent-page {
    background: #f4f6f8;
    padding-bottom: clamp(3rem, 6vw, 5rem);
}

.mhm-talent-socials-label {
    margin: 0;
    color: #111827;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.mhm-talent-socials-list {
    justify-content: flex-start;
    gap: 0.75rem;
}

.mhm-talent-socials-list .mhm-socials-link {
    width: 3rem;
    height: 3rem;
    border-color: rgba(17, 24, 39, 0.16);
    color: #111827;
    font-size: 1.1rem;
    line-height: 3rem;
    transition: transform var(--transition-base), background-color var(--transition-base), border-color var(--transition-base);
}

.mhm-talent-socials-list .mhm-socials-link:hover,
.mhm-talent-socials-list .mhm-socials-link:focus {
    border-color: var(--mhm-gold);
    transform: translateY(-2px);
    color: #111827;
}

.mhm-talent-portrait-card {
    position: relative;
    overflow: hidden;
    border-radius: 1.5rem;
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.22);
}

.mhm-talent-portrait-card img {
    display: block;
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
}

.mhm-talent-content-wrap {
    margin-top: 0;
    padding-top: clamp(2rem, 4vw, 3rem);
    position: relative;
    z-index: 2;
}

.mhm-talent-content-card,
.mhm-talent-gallery-section,
.mhm-talent-socials-card,
.mhm-talent-cta-card {
    background: #fff;
    border-radius: 1.5rem;
    box-shadow: 0 18px 45px rgba(17, 24, 39, 0.08);
}

.mhm-talent-content-card {
    padding: clamp(1.5rem, 3vw, 2.5rem);
}

.mhm-talent-body-copy > *:last-child {
    margin-bottom: 0;
}

.mhm-talent-sidebar {
    display: grid;
    gap: 1.25rem;
}

.mhm-talent-socials-card {
    padding: 1.25rem;
}

.mhm-talent-socials-card .mhm-socials-list {
    margin-top: 0.85rem;
}

.mhm-talent-cta-card {
    padding: 1.25rem;
}

.mhm-talent-cta-label {
    margin-bottom: 0.85rem;
    color: #111827;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.mhm-talent-cta-actions {
    display: grid;
    gap: 0.85rem;
}

.mhm-talent-cta-actions .bl.gold {
    justify-content: center;
    width: 100%;
    padding: 1rem 1.25rem;
    letter-spacing: 0.12em;
}

.mhm-talent-cta-actions .bl.gold:hover,
.mhm-talent-cta-actions .bl.gold:focus {
    padding: 1rem 1.25rem;
}

.mhm-talent-gallery-section {
    margin-top: 1.75rem;
    padding: clamp(1.25rem, 2.5vw, 2rem);
}

.mhm-talent-bottom-cta {
    padding-top: clamp(2.5rem, 5vw, 4rem);
    padding-bottom: clamp(2.5rem, 5vw, 4rem);
}

.mhm-talent-bottom-cta-inner {
    text-align: center;
}

.mhm-talent-bottom-cta-inner h3 {
    margin-bottom: 1.25rem;
}

/*
   Upcoming Shows Page
*/

.mhm-upcoming-events-wrap {
    position: relative;
}

.mhm-upcoming-events-grid {
    display: grid;
    grid-template-columns: repeat(var(--mhm-upcoming-cols, 3), minmax(0, 1fr));
    gap: 20px;
}

.mhm-upcoming-event-card {
    min-width: 0;
}

.mhm-upcoming-event-link {
    display: block;
    color: inherit;
    text-decoration: none;
}

.mhm-upcoming-event-link:hover,
.mhm-upcoming-event-link:focus {
    color: inherit;
    text-decoration: none;
}

.mhm-upcoming-event-poster {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(211, 175, 55, 0.18);
    background-color: #1c2333;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    aspect-ratio: 1 / 1;
    box-shadow: 0 14px 32px rgba(0, 0, 0, 0.18);
    transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.mhm-upcoming-event-link:hover .mhm-upcoming-event-poster,
.mhm-upcoming-event-link:focus .mhm-upcoming-event-poster {
    transform: translateY(-4px);
    box-shadow: 0 20px 42px rgba(0, 0, 0, 0.24);
}

.mhm-upcoming-event-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    display: inline-flex;
    align-items: center;
    min-height: 32px;
    padding: 6px 12px;
    background: #d3af37;
    color: #111827;
    font-size: 0.8rem;
    font-weight: 700;
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.mhm-upcoming-event-content {
    padding-top: 14px;
}

.mhm-upcoming-event-date {
    margin: 0 0 10px;
    color: #d3af37;
    font-size: 0.9rem;
    font-weight: 700;
    line-height: 1.2;
}

.mhm-upcoming-event-name {
    margin: 0;
    color: #fff;
    font-size: clamp(1.3rem, 2vw, 2rem);
    line-height: 1.05;
    text-transform: uppercase;
}

.mhm-upcoming-event-venue-line {
    margin: 10px 0 0;
    color: rgba(255, 255, 255, 0.88);
    font-size: 0.95rem;
    line-height: 1.4;
}

.mhm-upcoming-event-lineup {
    margin: 8px 0 0;
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.9rem;
    line-height: 1.45;
}

.mhm-upcoming-shows-page {
    background: #262626;
}

.mhm-upcoming-shows-intro {
    margin-bottom: 2rem;
    color: #fff;
}

.mhm-upcoming-shows-intro > *:last-child {
    margin-bottom: 0;
}

.mhm-upcoming-shows-intro h1,
.mhm-upcoming-shows-intro h2,
.mhm-upcoming-shows-intro h3,
.mhm-upcoming-shows-intro h4,
.mhm-upcoming-shows-intro h5,
.mhm-upcoming-shows-intro h6,
.mhm-upcoming-shows-intro p,
.mhm-upcoming-shows-intro li {
    color: #fff;
}

.mhm-upcoming-shows-pagination {
    margin-top: 2.5rem;
}

.mhm-upcoming-shows-pagination .page-numbers {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.mhm-upcoming-shows-pagination .page-numbers a,
.mhm-upcoming-shows-pagination .page-numbers span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 2.75rem;
    min-height: 2.75rem;
    padding: 0.5rem 0.9rem;
    border: 1px solid rgba(211, 175, 55, 0.28);
    border-radius: 999px;
    background: transparent;
    color: #fff;
    text-decoration: none;
    transition: background-color var(--transition-base), border-color var(--transition-base), color var(--transition-base);
}

.mhm-upcoming-shows-pagination .page-numbers a:hover,
.mhm-upcoming-shows-pagination .page-numbers a:focus,
.mhm-upcoming-shows-pagination .page-numbers .current {
    background: var(--mhm-gold);
    border-color: var(--mhm-gold);
    color: #111827;
}

.mhm-upcoming-shows-empty {
    padding: clamp(2rem, 5vw, 3rem);
    border: 1px solid rgba(211, 175, 55, 0.18);
    background: rgba(255, 255, 255, 0.04);
    color: #fff;
}

.mhm-upcoming-shows-empty h2,
.mhm-upcoming-shows-empty p {
    color: #fff;
}

.mhm-upcoming-shows-empty p:last-child {
    margin-bottom: 0;
}

@media (max-width: 991px) {
    .mhm-upcoming-events-grid {
        grid-template-columns: repeat(var(--mhm-upcoming-cols-tablet, 2), minmax(0, 1fr));
    }
}

@media (max-width: 767px) {
    .mhm-upcoming-events-grid {
        grid-template-columns: repeat(var(--mhm-upcoming-cols-mobile, 1), minmax(0, 1fr));
    }
}

.mhm-talent-section-heading {
    margin-bottom: 1rem;
}

.mhm-talent-gallery-slider {
    margin: 0 -0.5rem;
}

.mhm-talent-gallery-slide {
    padding: 0 0.5rem;
}

.mhm-talent-gallery-item {
    display: block;
    width: 100%;
    overflow: hidden;
    padding: 0;
    border: 0;
    border-radius: 1rem;
    background: #111827;
    box-shadow: 0 12px 28px rgba(17, 24, 39, 0.1);
    cursor: pointer;
    transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.mhm-talent-gallery-item:hover,
.mhm-talent-gallery-item:focus {
    transform: translateY(-4px);
    box-shadow: 0 18px 32px rgba(17, 24, 39, 0.16);
}

.mhm-talent-gallery-item img {
    display: block;
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
}

.mhm-talent-gallery-slider .slick-track {
    display: flex;
}

.mhm-talent-gallery-slider .slick-slide {
    height: auto;
}

.mhm-talent-gallery-slider .slick-slide > div {
    height: 100%;
}

.mhm-talent-gallery-slider .slick-prev,
.mhm-talent-gallery-slider .slick-next {
    z-index: 2;
    width: 2.75rem;
    height: 2.75rem;
}

.mhm-talent-gallery-slider .slick-prev {
    left: -0.5rem;
}

.mhm-talent-gallery-slider .slick-next {
    right: -0.5rem;
}

.mhm-talent-gallery-slider .slick-prev:before,
.mhm-talent-gallery-slider .slick-next:before {
    color: #111827;
    font-size: 2rem;
}

.mhm-talent-lightbox {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 1.25rem;
}

.mhm-talent-lightbox.is-open {
    display: flex;
}

body.mhm-talent-lightbox-open {
    overflow: hidden;
}

.mhm-talent-lightbox-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(7, 8, 10, 0.84);
}

.mhm-talent-lightbox-dialog {
    position: relative;
    z-index: 2;
    width: min(92vw, 1120px);
    max-height: 92vh;
    padding: 1rem;
    border-radius: 1.5rem;
    background: #0d0f12;
    box-shadow: 0 18px 60px rgba(0, 0, 0, 0.32);
}

.mhm-talent-lightbox-close {
    position: absolute;
    top: 0.5rem;
    right: 0.9rem;
    z-index: 3;
    border: 0;
    background: transparent;
    color: #fff;
    font-size: 2rem;
    line-height: 1;
    cursor: pointer;
}

.mhm-talent-lightbox-body {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: min(68vh, 680px);
}

.mhm-talent-lightbox-body img {
    display: block;
    width: 100%;
    max-width: 100%;
    max-height: 80vh;
    border-radius: 1rem;
    object-fit: contain;
}

@media (max-width: 991px) {
    .mhm-talent-content-wrap {
        padding-top: clamp(1.5rem, 4vw, 2.25rem);
    }
}

@media (max-width: 767px) {
    .mhm-talent-gallery-slider {
        margin: 0 -0.35rem;
    }

    .mhm-talent-gallery-slide {
        padding: 0 0.35rem;
    }
}

@media (max-width: 575px) {
    .mhm-talent-lightbox-dialog {
        width: 94vw;
        padding: 0.85rem;
        border-radius: 1.25rem;
    }

    .mhm-talent-lightbox-body {
        min-height: min(58vh, 520px);
    }
}


input[type="text"],
input[type="tel"],
input[type="email"],
textarea,
select {
    padding: 20px;
    font-size: 17px;
    color: #000;
    line-height: 24px;
    border: 1px solid #ccc;
    border-radius: none;
    box-sizing: border-box;
    width: 100%;
}

.wpcf7-list-item, 
.form-check {
    padding: 0px;
    margin: 0px;
}
