/* cmsms stylesheet: associations modified: 09/21/26 17:30:51 */
#associations {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 20px;
	width: 100%;
}

#associations span {
	min-width: 0;
}

#associations img {
	display: block;
	width: 100%;
	max-width: 195px;
	height: auto;
	margin: 0 auto;
}

/* 4 columns */
@media (max-width: 1199px) {
	#associations {
		grid-template-columns: repeat(4, 1fr);
	}
}

/* 3 columns */
@media (max-width: 719px) {
	#associations {
		grid-template-columns: repeat(3, 1fr);
	}
}

/* 2 columns - mobile */
@media (max-width: 480px) {
	#associations {
		grid-template-columns: repeat(2, 1fr);
	}
}
/* cmsms stylesheet: forms modified: 09/21/26 17:30:51 */
/* ==========================================================
   ClassBooker form – Revolution Performing Arts styling
   ========================================================== */

.cms_form {
  --rpa-purple: #481466;
  --rpa-purple-dark: #341049;
  --rpa-pink: #b71285;
  --rpa-pink-dark: #960e6d;
  --rpa-yellow: #ffec05;
  --rpa-white: #fff;
  --rpa-tint: #f6f0f9;
  --rpa-border: #cbb8d6;
  --rpa-radius: 10px;

  max-width: 960px;
  margin: 0 auto;
  font-family: source-sans-pro, sans-serif;
  font-size: 1.125rem;
  line-height: 1.5;
  color: var(--rpa-purple);
  box-sizing: border-box;
}
.cms_form *,
.cms_form *::before,
.cms_form *::after { box-sizing: inherit; }

.cms_form .hidden { display: none; }

/* ---------- Fieldsets ---------- */
.cms_form fieldset {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0 24px;
  margin: 0 0 32px;
  padding: 72px 20px 24px;
  position: relative;
  background: var(--rpa-white);
  border: 2px solid var(--rpa-purple);
  border-radius: var(--rpa-radius);
  min-width: 0;
}

.cms_form legend {
  position: absolute;
  top: 0; left: 0; right: 0;
  margin: 0;
  padding: 14px 20px;
  background: var(--rpa-purple);
  color: var(--rpa-white);
  font-family: greycliff-cf, sans-serif;
  font-weight: 800;
  font-size: 1.5rem;
  line-height: 1.2;
  border-radius: calc(var(--rpa-radius) - 2px) calc(var(--rpa-radius) - 2px) 0 0;
}

.cms_form fieldset p {
  margin: 0 0 20px;
  min-width: 0;
}

/* ---------- Labels & text fields ---------- */
.cms_form label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-weight: 600;
}

.cms_form input[type="text"],
.cms_form input[type="email"],
.cms_form input[type="tel"],
.cms_form input[type="date"],
.cms_form select,
.cms_form textarea {
  width: 100%;
  min-height: 52px;
  padding: 12px 14px;
  font: 400 1.125rem/1.4 source-sans-pro, sans-serif;
  color: var(--rpa-purple);
  background: var(--rpa-tint);
  border: 2px solid var(--rpa-border);
  border-radius: var(--rpa-radius);
  transition: border-color .2s, box-shadow .2s, background-color .2s;
  -webkit-appearance: none;
  appearance: none;
}

.cms_form textarea {
  min-height: 110px;
  resize: vertical;
}

.cms_form input:focus,
.cms_form select:focus,
.cms_form textarea:focus {
  outline: none;
  background: var(--rpa-white);
  border-color: var(--rpa-pink);
  box-shadow: 0 0 0 4px rgba(183, 18, 133, .2);
}

/* Custom select arrow */
.cms_form select {
  padding-right: 44px;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='9' viewBox='0 0 14 9'%3E%3Cpath d='M1 1l6 6 6-6' fill='none' stroke='%23b71285' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
}

/* Date picker icon tint */
.cms_form input[type="date"]::-webkit-calendar-picker-indicator {
  cursor: pointer;
  filter: invert(17%) sepia(60%) saturate(2400%) hue-rotate(290deg);
}

/* Invalid state – only after user interaction */
.cms_form input:user-invalid,
.cms_form select:user-invalid,
.cms_form textarea:user-invalid {
  border-color: #d0021b;
  background-color: #fff5f6;
}

/* ---------- Radio groups (Yes / No) ---------- */
.cms_form p:has(input[type="radio"]) {
  font-weight: 600;
  padding: 14px 16px;
  background: var(--rpa-tint);
  border-radius: var(--rpa-radius);
}

.cms_form p:has(input[type="radio"]) label {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  margin: 10px 24px 0 0;
  font-weight: 400;
  cursor: pointer;
}

.cms_form input[type="radio"],
.cms_form input[type="checkbox"] {
  width: 22px;
  height: 22px;
  margin: 0;
  flex-shrink: 0;
  accent-color: var(--rpa-pink);
  cursor: pointer;
}

/* ---------- Checkboxes (privacy / terms) ---------- */
.cms_form p:has(input[type="checkbox"]) label {
  flex-direction: row;
  align-items: flex-start;
  gap: 12px;
  font-weight: 400;
  cursor: pointer;
}
.cms_form p:has(input[type="checkbox"]) input { margin-top: 3px; }

.cms_form a {
  color: var(--rpa-pink);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.cms_form a:hover,
.cms_form a:focus { color: var(--rpa-purple); }

/* ---------- Submit button (matches .blockButton.pinkBack) ---------- */
.cms_form button[type="submit"] {
  display: block;
  width: 100%;
  min-height: 70px;
  padding: 16px 32px;
  font: 700 1.5rem/1.2 greycliff-cf, sans-serif;
  color: var(--rpa-white);
  background: var(--rpa-pink);
  border: 0;
  border-radius: var(--rpa-radius);
  cursor: pointer;
  transition: background-color .2s, transform .1s;
}
.cms_form button[type="submit"]:hover { background: var(--rpa-pink-dark); }
.cms_form button[type="submit"]:active { transform: translateY(1px); }
.cms_form button[type="submit"]:focus-visible {
  outline: 3px solid var(--rpa-yellow);
  outline-offset: 3px;
}

/* ---------- Tablet & up: two-column grid ---------- */
@media (min-width: 768px) {
  .cms_form fieldset {
    grid-template-columns: 1fr 1fr;
    padding: 84px 32px 12px;
  }
  .cms_form legend {
    font-size: 1.875rem;
    padding: 18px 32px;
  }

  /* Full-width rows: textareas, radio groups, checkboxes */
  .cms_form fieldset p:has(textarea),
  .cms_form fieldset p:has(input[type="radio"]),
  .cms_form fieldset p:has(input[type="checkbox"]),
  .cms_form fieldset p:has(select) {
    grid-column: 1 / -1;
  }

  .cms_form button[type="submit"] {
    width: auto;
    min-width: 320px;
    margin: 0 auto;
  }
}

/* ---------- Small phones ---------- */
@media (max-width: 400px) {
  .cms_form fieldset { padding: 64px 14px 16px; }
  .cms_form legend { font-size: 1.25rem; padding: 12px 14px; }
}
/* cmsms stylesheet: faq modified: 09/21/26 17:30:51 */
.faqItem {
	border-bottom: 1px solid #d9d9d9;
}

.faqQuestion {
	margin: 0;
}

.faqToggle {
	position: relative;
	display: block;
	width: 100%;
	padding: 20px 50px 20px 0;
	border: 0;
	background: transparent;
	color: inherit;
	font: inherit;
	font-weight: 700;
	text-align: left;
	cursor: pointer;
}

.faqToggle:hover,
.faqToggle:focus-visible {
	color: #7d2181;
}

.faqToggle:focus-visible {
	outline: 2px solid currentColor;
	outline-offset: 4px;
}

.faqIcon {
	position: absolute;
	top: 50%;
	right: 5px;
	width: 18px;
	height: 18px;
	transform: translateY(-50%);
}

.faqIcon::before,
.faqIcon::after {
	position: absolute;
	top: 50%;
	left: 0;
	width: 100%;
	height: 2px;
	background: currentColor;
	content: '';
	transition: transform 0.2s ease;
}

.faqIcon::after {
	transform: rotate(90deg);
}

.faqItem.isOpen .faqIcon::after {
	transform: rotate(0);
}

.faqAnswer {
	display: none;
	padding: 0 0 20px;
}

.faqAnswer > :first-child {
	margin-top: 0;
}

.faqAnswer > :last-child {
	margin-bottom: 0;
}
/* cmsms stylesheet: testimonials modified: 09/21/26 17:30:51 */
.testimonialIntro {
	max-width: 900px;
	margin-bottom: 40px;
}

.testimonialIntro h3 {
	margin-bottom: 15px;
}

.testimonialIntro p {
	margin-bottom: 0;
}

.testimonialIntro a {
	font-weight: 700;
}

.testimonialGrid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	align-items: start;
	gap: 30px;
}

.testimonialCard {
	position: relative;
	box-sizing: border-box;
	margin: 0;
	padding: 35px;
	overflow: hidden;
	border: 0;
	border-radius: 34px 34px 0 34px;
	background: #f5edf6;
	color: inherit;
}

.testimonialCard::before {
	position: absolute;
	top: 10px;
	right: 22px;
	color: rgba(125, 33, 129, 0.15);
	font-family: Georgia, serif;
	font-size: 90px;
	font-weight: 700;
	line-height: 1;
	content: "“";
	pointer-events: none;
}

.testimonialCard p {
	position: relative;
	margin: 0 0 18px;
}

.testimonialCard p:last-of-type {
	margin-bottom: 0;
}

.testimonialGreeting {
	padding-right: 45px;
	color: #7d2181;
	font-size: 1.1em;
	font-weight: 700;
	font-style: italic;
}

.testimonialAuthor {
	position: relative;
	margin-top: 22px;
	padding-top: 18px;
	border-top: 1px solid rgba(125, 33, 129, 0.2);
	color: #7d2181;
	font-weight: 700;
	text-align: right;
}

.testimonialAuthor cite {
	font-style: normal;
}

@media only screen and (max-width: 1479px) {
	.testimonialGrid {
		grid-template-columns: 1fr;
	}
}

@media only screen and (max-width: 500px) {
	.testimonialCard {
		padding: 28px 22px;
		border-radius: 25px 25px 0 25px;
	}

	.testimonialCard::before {
		right: 14px;
		font-size: 70px;
	}
}
/* cmsms stylesheet: default_all modified: 09/21/26 17:30:51 */
/*  colours  */

.darkPurpleBack {
	background-color: #341049;
	color: #ffffff;
}

.purpleBack {
	background-color: #481466;
	color: #ffffff;
}

.purpleBack h1, .purpleBack h2, .purpleBack h3, .purpleBack h4, .purpleBack h5, .purpleBack h6 {
	color: #ffffff;
}

.purpleBack a:link, .purpleBack a:visited {
	color: #ffffff;
}

.purpleBack a:hover {
	color: #ffec05;
}

a.purpleBack:link, a.purpleBack:visited,
button.purpleBack, input.purpleBack {
	background-color: #481466;
	color: #ffffff;
}

a.purpleBack h4 {color: #ffffff;}

a.purpleBack:hover,
button.purpleBack:hover, input.purpleBack:hover {
	background-color: #b71285;
	color: #ffffff;
}

.purpleFront, .purpleFront h1, .purpleFront h2, .purpleFront h3, .purpleFront h4, .purpleFront h5, .purpleFront h6 {
	color: #481466;
}

a.purpleFront:link, a.purpleFront:visited {
	color: #481466;
}

a.purpleFront:hover {
	color: #b71185;
}

.pinkBack {
	background-color: #b71285;
	color: #ffffff;
}

.pinkBack h1, .pinkBack h2, .pinkBack h3, .pinkBack h4, .pinkBack h5, .pinkBack h6 {
	color: #ffffff;
}

.pinkBack a:link, .pinkBack a:visited {
	color: #ffffff;
}

.pinkBack a:hover {
	color: #ffec05;
}

a.pinkBack:link, a.pinkBack:visited,
button.pinkBack, input.pinkBack {
	background-color: #b71285;
	color: #ffffff;
}

a.pinkBack:hover,
button.pinkBack:hover, input.pinkBack:hover {
	background-color: #481466;
	color: #ffffff;
}

a.pinkBack:hover h4 {
	color: #ffffff;
}

.pinkFront, .pinkFront h1, .pinkFront h2, .pinkFront h3, .pinkFront h4, .pinkFront h5, .pinkFront h6 {
	color: #b71185;
}

a.pinkFront:link, a.pinkFront:visited {
	color: #b71185;
}

a.pinkFront:hover {
	color: #481466;
}

.yellowBack {
	background-color: #ffec05;
	color: #481466;
}

.yellowBack h1, .yellowBack h2, .yellowBack h3, .yellowBack h4, .yellowBack h5, .yellowBack h6 {
	color: #481466;
}

a.yellowBack:link, a.yellowBack:visited,
button.yellowBack, input.yellowBack {
	background-color: #ffec05;
	color: #481466;
}

a.yellowBack:hover,
button.yellowBack:hover, input.yellowBack:hover {
	background-color: #481466;
	color: #ffec05;
}

a.yellowBack:hover h4 {
	color: #ffec05;
}

.whiteBack {
	background-color: #ffffff;
	color: #481466;
}

.whiteBack h1, .whiteBack h2, .whiteBack h3, .whiteBack h4, .whiteBack h5, .whiteBack h6 {
	color: #481466;
}

a.whiteBack:link, a.whiteBack:visited,
button.whiteBack, input.whiteBack {
	background-color: #ffffff;
	color: #481466;
}

a.whiteBack:hover,
button.whiteBack:hover, input.whiteBack:hover {
	background-color: #481466;
	color: #ffffff;
}

a.whiteBack:hover h4 {
	color: #ffffff;
}

.whiteFront, .whiteFront h1, .whiteFront h2, .whiteFront h3, .whiteFront h4, .whiteFront h5, .whiteFront h6 {
	color: #ffffff;
}

.borderPurpleBack {
	border: 1px solid #481466;
}

a.borderPurpleBack:hover {
	border-color: #481466;
}

.greyFront {
	color: #554f59;
}

#menuShow span.whiteBack {
	background-color: #ffffff;
}

#cookie_popup {
    position: fixed;
    bottom: 0px;
    right: 0px;
    width: 300px;
    z-index: 99999999;
    box-sizing: border-box;
    padding: 10px;
    color: #ffffff;
    background-color: #000000bf;
    font-size: 80%;
}

#cookie_popup a:link, #cookie_popup a:visited, #cookie_popup span {
color: #ffffff;
transition: color 0.4s;
cursor: pointer;
}

#cookie_popup a:hover, #cookie_popup span:hover {
color: #b4b387;
}
/* cmsms stylesheet: classes modified: 09/21/26 17:30:51 */
.classList {
	width: 100%;
	background: #fff;
}

.classListHeader,
.classRow {
	display: flex;
	align-items: center;
	gap: 25px;
	width: 100%;
}

.classListHeader {
	padding: 15px 20px;
	border-bottom: 2px solid #7d2181;
	font-weight: 700;
}

.classRow {
	box-sizing: border-box;
	min-height: 80px;
	padding: 15px 20px;
	border-bottom: 1px solid #e2e2e2;
	background: #fff;
	transition: background-color 0.2s ease;
}

.classRow:hover {
	background: #faf7fb;
}

.className {
	flex: 1 1 auto;
	min-width: 0;
}

.classPrice {
	flex: 0 0 120px;
	font-weight: 700;
	text-align: center;
}

.classBooking {
	flex: 0 0 140px;
	display: flex;
	align-self: stretch;
	align-items: center;
	justify-content: flex-end;
}

.classBooking .blockButton {
	box-sizing: border-box;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 50px;
	margin: 0;
	padding: 10px 20px;
	line-height: 1.2;
	white-space: nowrap;
	text-align: center;
	text-decoration: none;
}

@media only screen and (max-width: 700px) {
	.classListHeader {
		display: none;
	}

	.classRow {
		flex-wrap: wrap;
		gap: 10px 15px;
		padding: 20px 10px;
	}

	.className {
		flex: 1 1 100%;
		font-weight: 600;
	}

	.classPrice {
		flex: 1 1 auto;
		text-align: left;
	}

	.classBooking {
		flex: 0 0 auto;
	}
}
/* cmsms stylesheet: menu modified: 09/21/26 17:30:51 */
/* ==========================================
   MAIN NAVIGATION
   ========================================== */

#navigationContainer {
	position: relative;
	flex: 1;
	display: flex;
	justify-content: flex-end;
	align-items: center;
}

/* Hamburger */

#menuShow {
	display: none;
	flex-direction: column;
	justify-content: center;
	gap: 5px;
	width: 40px;
	height: 40px;
	padding: 5px;
	box-sizing: border-box;
	cursor: pointer;
}

#menuShow .bar {
	display: block;
	width: 30px;
	height: 4px;
	background-color: #ffffff;
	transition:
		transform 0.25s ease,
		opacity 0.25s ease;
}

/* Turn hamburger into a close icon */

#menuShow.is-open .bar:nth-child(1) {
	transform: translateY(9px) rotate(45deg);
}

#menuShow.is-open .bar:nth-child(2) {
	opacity: 0;
}

#menuShow.is-open .bar:nth-child(3) {
	transform: translateY(-9px) rotate(-45deg);
}

/* Desktop menu */

#actualMenu > ul {
	display: flex;
	align-items: center;
	gap: 30px;
	margin: 0;
	padding: 0;
}

#actualMenu li {
	position: relative;
	margin: 0;
	padding: 0;
	list-style: none;
	line-height: 100%;
}

#actualMenu li a {
	display: block;
	font-family: greycliff-cf, sans-serif;
	font-weight: 800;
	font-size: 100%;
	line-height: 100%;
	color: #ffffff;
	white-space: nowrap;
}

#actualMenu li a:hover,
#actualMenu li a:focus,
#actualMenu li.menuactive > a {
	color: #ffec05;
}

/* Desktop dropdowns */

#actualMenu li ul {
	position: absolute;
	z-index: 1000;
	top: calc(100% + 15px);
	left: 0;
	display: block;
	min-width: 240px;
	margin: 0;
	padding: 10px 0;
	background-color: #481466;
	border-radius: 5px;
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
	visibility: hidden;
	opacity: 0;
	transform: translateY(8px);
	pointer-events: none;
	transition:
		opacity 0.2s ease,
		transform 0.2s ease,
		visibility 0.2s ease;
}

/*
 * Invisible bridge between the top-level link and its dropdown.
 * This prevents the dropdown disappearing while crossing the gap.
 */

#actualMenu li ul::before {
	content: "";
	position: absolute;
	right: 0;
	bottom: 100%;
	left: 0;
	height: 15px;
}

#actualMenu li:hover > ul,
#actualMenu li:focus-within > ul {
	visibility: visible;
	opacity: 1;
	transform: translateY(0);
	pointer-events: auto;
}

#actualMenu li ul li {
	display: block;
	width: 100%;
}

#actualMenu li ul a {
	display: block;
	padding: 12px 20px;
	box-sizing: border-box;
	font-size: 90%;
	line-height: 125%;
	color: #ffffff;
	white-space: nowrap;
}

#actualMenu li ul a:hover,
#actualMenu li ul a:focus,
#actualMenu li ul li.menuactive > a {
	color: #481466;
	background-color: #ffec05;
}

/* Third-level dropdowns, should they be added later */

#actualMenu li ul li ul {
	top: 0;
	left: 100%;
	margin-left: 2px;
}


/* ==========================================
   RESPONSIVE NAVIGATION
   ========================================== */

@media screen and (max-width: 1479px) {
	#innerHeader {
		position: relative;
		z-index: 500;
	}

	#navigationContainer {
		position: static;
		z-index: 501;
	}

	#menuShow {
		display: flex;
		margin-left: auto;
	}

	#actualMenu {
		position: absolute;
		z-index: 9999;
		top: 100%;
		right: 0px;
		left: 0px;
		display: none;
		box-sizing: border-box;
		width: 100%;
		max-width: none;
		margin: 0px;
		padding: 0px;
		background-color: #481466;
		border-radius: 0px 0px 10px 10px;
		box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.25);
	}

	#actualMenu.is-open {
		display: block;
	}

	#actualMenu > ul {
		display: block;
		width: 100%;
		margin: 0px;
		padding: 10px 0px;
	}

	#actualMenu li {
		position: relative;
		display: block;
		width: 100%;
		margin: 0px;
		padding: 0px;
	}

	#actualMenu li a {
		display: block;
		box-sizing: border-box;
		padding: 15px 60px 15px 25px;
		font-size: 100%;
		line-height: 120%;
		white-space: normal;
	}

	#actualMenu > ul > li + li {
		border-top: 1px solid rgba(255, 255, 255, 0.15);
	}

	/* Dropdown indicator */

	#actualMenu li.parent::after,
	#actualMenu li.menuparent::after {
		position: absolute;
		top: 20px;
		right: 25px;
		width: 9px;
		height: 9px;
		border-right: 2px solid #ffffff;
		border-bottom: 2px solid #ffffff;
		content: "";
		transform: rotate(45deg);
		pointer-events: none;
		transition: transform 0.2s ease;
	}

	#actualMenu li.parent.submenu-open::after,
	#actualMenu li.menuparent.submenu-open::after {
		transform: translateY(5px) rotate(225deg);
	}

	/* Reset desktop dropdown positioning */

	#actualMenu li ul {
		position: static;
		display: none;
		min-width: 0px;
		margin: 0px;
		padding: 0px;
		background-color: rgba(0, 0, 0, 0.16);
		border-radius: 0px;
		box-shadow: none;
		visibility: visible;
		opacity: 1;
		transform: none;
		pointer-events: auto;
		transition: none;
	}

	#actualMenu li ul::before {
		display: none;
	}

	#actualMenu li.submenu-open > ul {
		display: block;
	}

	#actualMenu li ul a {
		padding: 13px 60px 13px 40px;
		font-size: 90%;
		line-height: 125%;
		white-space: normal;
	}

	#actualMenu li ul li ul {
		margin-left: 0px;
	}

	#actualMenu li ul li ul a {
		padding-left: 55px;
	}
}

@media screen and (max-width: 1099px) {
	#innerHeader #navigationContainer {
		position: static !important;
	}

	#innerHeader #actualMenu {
		position: absolute !important;
		top: 100% !important;
		right: 0px !important;
		left: 0px !important;
		display: none;
		box-sizing: border-box;
		width: auto !important;
		min-width: 0px !important;
		max-width: none !important;
		margin: 0px !important;
		padding: 0px !important;
		border-radius: 0px 0px 10px 10px;
	}

	#innerHeader #actualMenu.is-open {
		display: block;
	}

	#innerHeader #actualMenu > ul {
		display: block;
		width: 100%;
		margin: 0px;
		padding: 10px 0px;
	}
}

@media screen and (max-width: 789px) {
	#logo {
		order: 1;
		margin-right: auto;
	}

	#headerButtons {
		order: 2;
	}

	#navigationContainer {
		flex: 0 0 30px;
		order: 3;
		margin-left: 4px;
	}

	#menuShow {
		margin-left: 0px;
	}
}
