.pt-nav {
	display: flex;
	align-items: center;
	/* padding: 0 2em; */
	background-color: #000;
	font-size: 14px;
	height: 100px;
	position: relative;
	z-index: 10;
}

.pt-main-nav {
	display: flex;
	height: 100%;
	margin: 0 0 0 auto;
	gap: 20px;
	list-style: none;
	align-items: center;
	z-index: 5;
	margin-right: 2em;
}

.pt-nav-brand {
	display: flex;
	gap: 20px;
	margin-left: 2em;
}

.pt-nav-brand-text {
	font-family: 'Work Sans';
	font-weight: 300;
	display: flex;
	flex-direction: column;
	justify-content: center;
	color: #fff;
	font-size: 18px;
	letter-spacing: 2px;
}

/* .pt-nav-brand-sub-text {
	font-family: 'Gill Sans';
	margin-top: 2px;
	letter-spacing: 1px;
	font-size: 14px;
} */

.pt-nav-brand-image img {
	width: 75px;
}

.pt-nav a {
	color: #fff;
	text-decoration: none;
}

.pt-nav-item {
	position: relative;
	display: flex;
	height: 100%;
	align-items: center;
	padding-left: 15px;
}

.pt-cta-link {
	padding: var(--cta-padding);
	border-radius: var(--cta-radius);
}

/* Direct-child only: these CTA rules must not bleed onto sub-nav links nested
   in a booking/contact item (e.g. the Private Lessons dropdown). */
.pt-nav-contact > a {
	background-color: #000;
	border: 2px solid var(--green);
	white-space: nowrap;
}

.pt-nav-contact > a:hover {
	background-color: var(--green);
	transition: background-color 0.5s;
}

.pt-nav-booking > a {
	border: 2px solid var(--green);
	background-color: var(--green);
	white-space: nowrap;
}

.pt-nav-booking > a:hover {
	background-color: #000;
	transition: background-color 0.5s;
}

/* Account / auth control: brand gold (the logo accent) so it stands out
   from the white "Private Lessons" button and the green nav. The id beats
   the green ".pt-nav-booking a" rule this link sits inside. */
#pt-auth-link {
	background-color: var(--gold);
	border: 2px solid var(--gold);
	color: #000;
	font-weight: 600;
	white-space: nowrap;
	box-shadow: 0 2px 14px rgba(232, 232, 88, 0.35);
	transition: background-color 0.4s ease, color 0.4s ease, box-shadow 0.4s ease;
}

#pt-auth-link:hover {
	background-color: #000;
	color: var(--gold);
}

/* Logged-in: a quieter gold-outline chip (the auth script adds this class),
   so the loud solid-gold CTA is reserved for logged-out visitors. */
#pt-auth-link.pt-auth-account {
	background-color: transparent;
	color: var(--gold);
	font-weight: 500;
	box-shadow: none;
}

#pt-auth-link.pt-auth-account:hover {
	background-color: rgba(232, 232, 88, 0.12);
	color: var(--gold);
}

.pt-nav-item:not(.pt-nav-booking):not(.pt-nav-contact) .pt-nav-link {
	padding-top: 15px;
	padding-bottom: 5px;
	border-bottom: 2px solid transparent;
}

.pt-nav-item:not(.pt-nav-booking):not(.pt-nav-contact):not(.pt-has-sub-nav):hover .pt-nav-link {
	padding-bottom: 5px;
	border-bottom: 2px solid white;
}

.pt-sub-nav {
	display: none;
	flex-direction: column;
	position: absolute;
	top: 100px;
	left: 0px;
	margin: 0;
	padding: 0;
	list-style-type: none;
	width: max-content;
	background-color: black;
	border-bottom-left-radius: 3px;
	border-bottom-right-radius: 3px;
}

.pt-sub-nav-link {
	display: block;
	width: 100%;
	padding: 20px;
}

.pt-sub-nav-item {
	background-color: var(--off-black);
	border: 2px solid transparent;
}

.pt-sub-nav-item:hover {
	background-color: var(--green);
	border: 2px solid var(--lighter-green);
	transition: background-color 0.5s, border 0.5s;
}

.pt-has-sub-nav:hover .pt-sub-nav,
.pt-nav-link:hover .pt-sub-nav {
	display: flex;
}

.pt-has-sub-nav:active .pt-sub-nav {
	display: flex;
}

.pt-separator {
	height: 1px;
	background-color: rgba(255, 255, 255, 0.5);
}

/* Updates: top-level link with an alert dot that appears when there's a current
   notice (an update affecting today or a future date). The label is the
   positioning context so the dot tracks the text on both desktop and mobile. */
.pt-updates-label {
	position: relative;
}

.pt-updates-dot {
	display: none;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background-color: #dc3545;
	position: absolute;
	top: -3px;
	right: -12px;
	box-shadow: 0 0 0 0 rgba(220, 53, 69, 0.6);
	animation: pt-updates-pulse 1.8s ease-out infinite;
}

.pt-updates-link.pt-has-alert .pt-updates-dot {
	display: inline-block;
}

@keyframes pt-updates-pulse {
	0%   { box-shadow: 0 0 0 0 rgba(220, 53, 69, 0.55); }
	70%  { box-shadow: 0 0 0 7px rgba(220, 53, 69, 0); }
	100% { box-shadow: 0 0 0 0 rgba(220, 53, 69, 0); }
}


.pt-hamburger {
	display: none;
	margin-left: auto;
	cursor: pointer;
	margin-right: 2em;
}

.pt-hamburger-bar1,
.pt-hamburger-bar2,
.pt-hamburger-bar3 {
	width: 35px;
	height: 5px;
	background-color: #fff;
	margin: 6px 0;
	transition: 0.4s;
}

.pt-hamburger-change .pt-hamburger-bar1 {
	transform: translate(0, 11px) rotate(-45deg);
}

.pt-hamburger-change .pt-hamburger-bar2 {
	opacity: 0;
}

.pt-hamburger-change .pt-hamburger-bar3 {
	transform: translate(0, -11px) rotate(45deg);
}

/* Responsive styles */
@media screen and (max-width: 1200px) {
	.pt-nav {
		font-size: 14px;
	}

	.pt-main-nav {
		gap: 10px;
	}
}

@media screen and (max-width: 1024px) {
	.pt-nav {
		font-size: 12px;
	}

	.pt-main-nav {
		gap: 10px;
	}
}

@media screen and (max-width: 1130px) {
	.pt-pay-cta {
		display: none;
	}
}

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

	.pt-mobile-first {
		order: -1;
	}

	/* Account / auth control sits at the very top of the mobile menu, the
	   conventional position; contact details drop to the bottom. */
	.pt-mobile-auth {
		order: -10;
	}

	.pt-mobile-first--contact {
		order: 10;
		margin-top: 15px;
	}
	
	.pt-nav {
		font-size: 14px;
	}

	.pt-main-nav {
		display: none;
		flex-direction: column;
		position: absolute;
		height: auto;
		top: 0px;
		left: 0px;
		width: 100%;
		margin: 0;
		padding: 0;
		background-color: var(--off-black);
		gap: 20px;
		transition: top 2.0s;
	}

	.pt-nav-item {
		margin-top: 20px;
		width: 90%;
		padding: 0;
		display: flex;
		flex-direction: column;
	}

	.pt-nav-item:first-child {
		margin-top: 20px;
	}

	.pt-nav-item:last-child {
		margin-bottom: 20px;
	}

	.pt-nav-link {
		font-size: 18px;
		position: relative;
		text-align: center;
	}

	.pt-nav-link {
		width: 100%;
		font-size: 18px;
		position: relative;
		border-bottom: 2px solid var(--green);
		padding-bottom: 20px;
	}

	.pt-hamburger {
		display: inline-block;
	}

	.pt-sub-nav {
		width: 100%;
		margin-top: 20px;
		display: flex;
		position: initial;
	}

	.pt-sub-nav-link {
		padding: 20px 0;
		text-indent: 20px;
	}

	.pt-separator {
		display: none;
	}

	.pt-nav-item:not(.pt-nav-booking):not(.pt-nav-contact):hover .pt-nav-link {
		border-bottom: 2px solid var(--green);
	}

	.pt-nav-item.pt-nav-item:not(.pt-nav-booking):not(.pt-nav-contact) .pt-nav-link {
		padding-top: 15px;
		padding-bottom: 15px;
	}

	.pt-nav-contact .pt-nav-link,  
	.pt-nav-booking .pt-nav-link,
	.pt-group-classes-nav-link
	{
		width: 90%;
	}

	.pt--mobile-menu-active {
		top: 100px;
		display: flex !important;
		padding-bottom: 25px;
	}
	
	.pt--mobile-menu-active .pt-nav-item:not(.pt-nav-booking):not(.pt-nav-contact) .pt-nav-link {
		border-bottom: 2px solid var(--green);
	}
}

@media screen and (max-width: 375px) {
	.pt-nav-brand-text {
		display: none;
	}
}

.pt-offer-container {
	position: fixed;
	top: 0;
	width:100%;
	background-color: transparent;
    z-index: 99;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.2s ease, visibility 0.2s ease;
}

.pt-offer-container.pt-loaded {
	opacity: 1;
	visibility: visible;
}

.pt-offer-container:not(.fixed) {
	background-color: black;
}

.pt-offer-container + .pt-nav{
	margin-top: var(--mobile-nav-top-offset);
}

.pt-offer {
	padding: 5px 0;
	display: flex;
    width: 100%;
    align-items: center;
    justify-content: center;
    background-color: var(--green);
	box-shadow: rgba(0, 0, 0, 0.19) 0px 10px 20px, rgba(0, 0, 0, 0.23) 0px 6px 6px;

}

.fixed { 
	position: fixed;
	top: 0;
	width: 100%;
}

.pt-offer a {
	display: block;
	padding: 10px 0;
	text-decoration: none;
}

.pt-offer span {
    font-weight: bold;
    color: white;
	text-align: center;
}

/* .pt-group-classes-nav-link {
	background: var(--green);
    border: 2px solid var(--green);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 15px;
    border-radius: 30px;
    color: white;
	border: 2px solid var(--green);
    background-color: var(--green);
    white-space: nowrap;
}

.pt-group-classes-nav-link:hover {
	background-color: #000;
	transition: background-color 0.5s;
} */

.pt-group-classes-cta {
	background: var(--green);
    border: 2px solid var(--green);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 15px !important;
    border-radius: 30px;
    color: white;
	border: 2px solid var(--green);
    background-color: var(--green);
    white-space: nowrap;
}

.pt-sub-nav-item.pt-women-only-link .pt-sub-nav-link {
	color: #D48BB4 !important;
}

.pt-sub-nav-item.pt-women-only-link:hover {
	background-color: transparent !important;
	border-color: #D48BB4;
}

.pt-offer-container {
	-webkit-text-size-adjust: 100%; /* Prevent font size adjustment on rotation */
	text-size-adjust: 100%;
}

.pt-offer {
	border-bottom-left-radius: 10px; 
	border-bottom-right-radius: 10px; 
	gap: 20px;
}

.pt-offer > a {
	padding: 0;
	border-bottom-left-radius: 10px;
	border-bottom-right-radius: 10px;
	line-height: 24px;
	width: 100%;
	max-width: calc(100% - 60px); /* Reserve space for close icon */
}

.pt-offer > a > span {
	text-align: center;
	border-bottom-left-radius: 10px;
	border-bottom-right-radius: 10px;
}

.pt-offer > a > span > span {
	padding: 0px 10px !important;
	display: block;
	text-align: center;
	font-size: 0.9rem;
	align-items: center;
}

.pt-offer .pt-offer-text {
	padding: 0 15px !important;
	line-height: 24px;
	display: block;
}

.pt-offer-dismiss {
	color: white;
	font-size: 18px;
	cursor: pointer;
	flex-shrink: 0;
	padding: 0 8px;
	position: absolute;
	right: 20px;
}

@media (min-width: 1440px) {
	.pt-offer-dismiss {
		right: calc((100vw - 1440px) / 2 + 20px);
	}
}

.pt-offer-container.pt-dismissed {
	display: none;
}