
:root {
    --magenta: #D41C5F;
    --orange: #FF7E27;
    --navy: #0F1A2B;
    --white: #FFFFFF;
    --grey-100: #F7F7F7;
    --grey-200: #EDEDED;
    --grey-300: #E6E6E6;
    --text: #333333;
    --shadow: 0 10px 30px rgba(15, 26, 43, .08);
    --radius:15px;
    
}/* Buttons */
.zpbutton-style-roundcorner,
input.zpbutton-style-roundcorner {
    border-radius: 15px;
	font-weight:700;
	cursor:pointer;
	transition: .2s box-shadow, .15s transform;
}
h1, h2, h3 {
    font-family: "Poppins", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    color: var(--navy);
    margin: 0 0 .5rem 0;
    line-height: 1.25;
}

.h-underline {
 	display:block;         
    border-bottom: 3px solid var(--magenta);
}

h2
{
  font-size: 32px;
}
h1 {
    font-size: clamp(32px, 4vw, 56px);
}

.section--alt {
    background: var(--grey-100);
    background-color: rgb(247, 247, 247);
}

.card {
    background: #fff;
    border: 1px solid var(--grey-300);
    border-radius: var(--radius);
    padding: 20px;
    box-shadow: var(--shadow)

}
.card h3
{ 
    font-family: "Montserrat", serif;
    font-size: 28px;
	  font-weight: 700;	
}
.card.individual .accent {
  background: var(--magenta);
}

.card.leaders .accent {
    background: var(--navy)
}

.card.workshops .accent {
    background: var(--orange)
}

.card.individual h3,
.card.individual a { color: var(--magenta); }

.card.leaders h3,
.card.leaders a  { color: var(--navy); }

.card.workshops h3,
.card.workshops a { color: var(--orange); }


.card .accent {
    height: 4px;
    width: 42%;
    border-radius: 3px;
   margin: -8px 0 12px
}

.card .leaders .accent {
    background: var(--navy)
}

.card .workshops .accent {
    background: var(--orange)
}

.card .image {
    border-radius: 12px;
    border: 1px solid var(--grey-300);
    width: 100%;
    height: 100%;
    display: block;
}

.card h3 {
    margin-top: 12px
}

.cta-strip {
    background: var(--orange);
    border-radius: var(--radius);	
	border: 1px solid var(--orange);
    color: #fff;
	height: 100px;
    
}

.quote {
    background: #fff;
    border-left: 4px solid var(--magenta);
    padding: 14px;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.cta-strip h2 {
   color: #fff;
     
}
/* Form container */
.zpnewsletter-input-container {
    display: flex;
    align-items: center;
    border: 2px solid #a64c78;   /* border colour */
    border-radius: 8px;          /* rounded corners */
    overflow: hidden;            /* ensures corners look clean */
    max-width: 400px;
}

/* Input field */
.zpnewsletter-email-input-field {
    flex: 1;
    padding: 10px;
    border: none;                /* remove inner border */
    outline: none;
    font-size: 14px;
    border-radius: 0;            /* no extra rounding */
}

/* Subscribe button */
.zpnewsletter-button {
    background-color: #a64c78;   /* button colour */
    color: #fff;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    font-size: 14px;
    border-radius: 0 6px 6px 0;  /* rounded only on right side */
}

/* Hover effect */
.zpnewsletter-button:hover {
    background-color: #8a3c61;   /* darker shade */
}

/* === Hide cart/wishlist block everywhere (desktop + mobile) === */

/* Desktop container */
.theme-search-cart-non-res,
[data-search-cart-position-non-responsive="zptheme-search-cart-position-non-responsive"],

/* Mobile/responsive container (varies by theme) */
.theme-search-cart-res,
[data-search-cart-position-responsive="zptheme-search-cart-position-responsive"],

/* Fallback: hide the inner group if the wrapper changes */
[data-theme-search-cart-group="zptheme-search-cart-group"] {
  display: none !important;
  visibility: hidden !important;
  margin: 0 !important;
  padding: 0 !important;
}

/* Extra safety: hide any stray icons/counters that might be injected elsewhere */
[data-zs-view-cart],
[data-zs-cart-iconcount-container],
[data-zs-view-cart-count],
.theme-mini-cart,
.theme-minicart-icon,
.theme-wishlist-icon,
[data-zs-view-wishlist] {
  display: none !important;
  visibility: hidden !important;
}

/* Apply to the container and all descendants */
.coaching-agreement,
.coaching-agreement * {
  font-family: "Lato", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif !important;
  color: var(--navy) !important;
  font-size: 16px !important;
  line-height: 2;
}

/* --- CTA Button Styles --- */

/* Make sure menu UL is flex */
/* Button look for CTA link */
.theme-menu > ul > li.cta-li > a.header-cta {
  display: inline-block;
  padding: 10px 20px;
  background-color: var(--orange);
  color: #fff !important;
  font-weight: 600;
  border-radius: 15px;       /* pill shape */
  text-decoration: none;
  line-height: 1;
  transition: all 0.2s ease;
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
}

/* Hover & focus states */
.theme-menu > ul > li.cta-li > a.header-cta:hover {
  background-color: var(--magenta);  /* darker brand tone */
  box-shadow: 0 4px 10px rgba(0,0,0,0.25);
}
.theme-menu > ul > li.cta-li > a.header-cta:focus-visible {
  outline: 2px solid #000;
  outline-offset: 3px;
}

/* On mobile slide-out, make it full width and centered */
@media (max-width: 991px) {
  .theme-responsive-menu .cta-li {
    margin: 12px 0 0 0;
  }
  .theme-responsive-menu .cta-li > a.header-cta {
    display: block;
    width: 100%;
    text-align: center;
    padding: 12px 0;
    font-size: 16px;
  }
}
