/**
 * Public styles
 */

/* Brand Typography - Font Face Declarations */
/* Note: Fonts are located in /wp-content/fonts/ on the server */

@font-face {
	font-family: 'Bodoni FLF';
	src: url('/wp-content/fonts/Bondoni-FLF/BodoniFLF-Bold.ttf') format('truetype');
	font-weight: bold;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'Sofia Sans';
	src: url('/wp-content/fonts/Sofia Sans/SofiaSansExtraCondensed-Medium.ttf') format('truetype'),
		 url('/wp-content/fonts/Sofia Sans/SofiaSansExtraCondensed-Medium.woff2') format('woff2'),
		 url('/wp-content/fonts/Sofia Sans/SofiaSansExtraCondensed-Medium.woff') format('woff');
	font-weight: bold;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'Montserrat';
	src: url('/wp-content/fonts/montserrat/Montserrat-Regular.ttf') format('truetype');
	font-weight: normal;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'Beautifully Delicious Script';
	src: url('/wp-content/fonts/Beautifully-Delicious/BeautifullyDeliciousScript-Regular.otf') format('opentype'),
		 url('/wp-content/fonts/Beautifully-Delicious/BeautifullyDeliciousScript-Regular.ttf') format('truetype'),
		 url('/wp-content/fonts/Beautifully-Delicious/BeautifullyDeliciousScript-Regular.woff2') format('woff2'),
		 url('/wp-content/fonts/Beautifully-Delicious/BeautifullyDeliciousScript-Regular.woff') format('woff');
	font-weight: normal;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'Beautifully Delicious Script';
	src: url('/wp-content/fonts/Beautifully-Delicious/BeautifullyDeliciousScript-Bold.otf') format('opentype'),
		 url('/wp-content/fonts/Beautifully-Delicious/BeautifullyDeliciousScript-Bold.ttf') format('truetype'),
		 url('/wp-content/fonts/Beautifully-Delicious/BeautifullyDeliciousScript-Bold.woff2') format('woff2'),
		 url('/wp-content/fonts/Beautifully-Delicious/BeautifullyDeliciousScript-Bold.woff') format('woff');
	font-weight: bold;
	font-style: normal;
	font-display: swap;
}

/* Typography Hierarchy */
.pper-registration-wizard h1,
.pper-registration-wizard h2,
.pper-event-item h3,
.pper-event-option h3,
.pper-wizard-step h2 {
	font-family: 'Bodoni FLF', serif;
	font-weight: bold;
	text-transform: uppercase;
	letter-spacing: 0.05em;
}

.pper-registration-wizard h3,
.pper-wizard-step h3,
.pper-registration-form h2 {
	font-family: 'Sofia Sans', sans-serif;
	font-weight: bold;
	text-transform: uppercase;
	letter-spacing: 0.03em;
}

.pper-registration-wizard,
.pper-registration-form,
.pper-wizard-step,
.pper-event-item,
.pper-event-option {
	font-family: 'Montserrat', sans-serif;
	font-weight: normal;
}

/* Accent text (for special emphasis) */
.pper-accent-text {
	font-family: 'Beautifully Delicious Script', cursive;
	font-weight: normal;
	text-transform: none;
}

.pper-registration-form {
	max-width: 800px;
	margin: 20px auto;
	padding: 20px;
}

.pper-registration-form h1 {
	margin-bottom: 20px;
}

.pper-registration-form h2 {
	margin-top: 30px;
	margin-bottom: 15px;
}

.pper-registration-form label {
	display: block;
	margin-bottom: 5px;
	font-weight: bold;
}

.pper-registration-form input[type="text"],
.pper-registration-form input[type="email"],
.pper-registration-form input[type="tel"],
.pper-registration-form input[type="number"],
.pper-registration-form input[type="email"],
.pper-registration-form select,
.pper-registration-form textarea {
	width: 100%;
	max-width: 400px;
	padding: 12px 16px;
	margin-bottom: 15px;
	border: 2px solid #ddd;
	border-radius: 4px;
	font-family: 'Montserrat', sans-serif;
	font-size: 16px;
	transition: border-color 0.2s ease;
	background: #fff;
}

.pper-registration-form input[type="text"]:focus,
.pper-registration-form input[type="email"]:focus,
.pper-registration-form input[type="tel"]:focus,
.pper-registration-form input[type="number"]:focus,
.pper-registration-form select:focus,
.pper-registration-form textarea:focus {
	outline: none;
	border-color: #00687a; /* Teal - Brand Color */
}

.pper-registration-form input::placeholder,
.pper-registration-form textarea::placeholder {
	color: #999;
	font-family: 'Montserrat', sans-serif;
}

.pper-registration-form input[type="submit"],
.pper-registration-form .button,
.pper-registration-form .button-primary {
	background-color: #fffbf0; /* Cream */
	color: #00687a; /* Teal */
	padding: 14px 24px;
	border: 2px solid #00687a;
	border-radius: 4px;
	font-family: 'Sofia Sans', sans-serif;
	font-weight: bold;
	font-size: 16px;
	text-transform: uppercase;
	letter-spacing: 0.03em;
	cursor: pointer;
	transition: all 0.2s ease;
	text-decoration: none;
	display: inline-block;
}

.pper-registration-form input[type="submit"]:hover,
.pper-registration-form .button:hover,
.pper-registration-form .button-primary:hover {
	background-color: #00687a; /* Teal on hover */
	color: #fffbf0; /* Cream text on hover */
	border-color: #00687a;
}

.pper-registration-form table {
	width: 100%;
	margin-bottom: 20px;
	border-collapse: collapse;
}

.pper-registration-form table th,
.pper-registration-form table td {
	padding: 10px;
	text-align: left;
	border: 1px solid #ddd;
}

.pper-registration-form table input[type="text"],
.pper-registration-form table input[type="number"],
.pper-registration-form table input[type="email"],
.pper-registration-form table select,
.pper-registration-form table textarea {
	width: 100%;
	min-width: 100px;
	padding: 10px 12px;
	border: 2px solid #ddd;
	border-radius: 4px;
	font-family: 'Montserrat', sans-serif;
	font-size: 14px;
	transition: border-color 0.2s ease;
	background: #fff;
}

.pper-registration-form table input:focus,
.pper-registration-form table select:focus,
.pper-registration-form table textarea:focus {
	outline: none;
	border-color: #00687a; /* Teal - Brand Color */
}

.pper-registration-form table input::placeholder,
.pper-registration-form table textarea::placeholder {
	color: #999;
	font-family: 'Montserrat', sans-serif;
}

/* Form Note */
.pper-form-note {
	margin-top: 15px;
	color: #666;
	font-size: 14px;
	line-height: 1.5;
}

.pper-form-note small {
	font-family: 'Montserrat', sans-serif;
}

/* Processing Overlay */
#pper-processing-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(29, 17, 69, 0.85); /* Navy with opacity */
	z-index: 99999;
	display: flex;
	align-items: center;
	justify-content: center;
	backdrop-filter: blur(2px);
}

.pper-processing-spinner-container {
	text-align: center;
	background: #fffbf0; /* Cream */
	padding: 40px 50px;
	border-radius: 8px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
	max-width: 400px;
}

.pper-processing-spinner {
	border: 4px solid #f0f0f0; /* Light gray */
	border-top: 4px solid #00687a; /* Teal */
	border-radius: 50%;
	width: 50px;
	height: 50px;
	animation: pper-spin 1s linear infinite;
	margin: 0 auto 20px;
}

@keyframes pper-spin {
	0% { transform: rotate(0deg); }
	100% { transform: rotate(360deg); }
}

.pper-processing-message {
	font-family: 'Sofia Sans', sans-serif;
	font-weight: bold;
	font-size: 18px;
	color: #00687a; /* Teal */
	margin: 0 0 10px;
	text-transform: uppercase;
	letter-spacing: 0.03em;
}

.pper-processing-note {
	font-family: 'Montserrat', sans-serif;
	font-size: 14px;
	color: #666;
	margin: 0;
}

/* Remove button in table */
.pper-registration-form table .remove-dancer {
	padding: 8px 16px;
	font-size: 14px;
	background-color: #f6acba; /* Pink */
	color: #1d1145; /* Navy */
	border: 2px solid #f6acba;
}

.pper-registration-form table .remove-dancer:hover {
	background-color: #f49aab; /* Darker pink */
	color: #1d1145;
	border-color: #f49aab;
}

/* Price column styling - moved to proper location */
.pper-row-price {
	text-align: right;
	font-weight: 600;
	color: #00687a; /* Teal - Brand Color */
	min-width: 80px;
}

.pper-running-total {
	text-align: right;
	color: #00687a; /* Teal - Brand Color */
	font-size: 18px;
	font-weight: bold;
}

.pper-registration-form table tfoot {
	background: #f9f9f9;
	border-top: 2px solid #00687a; /* Teal - Brand Color */
}

.pper-registration-form table tfoot td {
	padding: 12px 10px;
	font-size: 16px;
}

/* Waiver Form Styles */
/* Override theme container and row class constraints */
.pper-waiver-page .container,
.pper-waiver-page .container-fluid,
.pper-waiver-page .row,
.pper-waiver-page [class*="container"],
.pper-waiver-page [class*="row"],
.pper-waiver-form-wrapper .container,
.pper-waiver-form-wrapper .container-fluid,
.pper-waiver-form-wrapper .row,
.pper-waiver-form-wrapper [class*="container"],
.pper-waiver-form-wrapper [class*="row"] {
	max-width: 100% !important;
	width: 100% !important;
	margin-left: 0 !important;
	margin-right: 0 !important;
	padding-left: 0 !important;
	padding-right: 0 !important;
}

/* Ensure our wrapper breaks out of theme constraints */
.pper-waiver-page {
	background: #fffbf0; /* Cream background */
	min-height: calc(100vh - 200px); /* Account for header/footer */
	padding: 20px 0;
	width: 100% !important;
	max-width: 100% !important;
	margin: 0 !important;
}

.pper-waiver-form-wrapper {
	max-width: 1200px;
	margin: 0 auto;
	padding: 20px 30px;
	width: 100%;
	position: relative;
	z-index: 1;
}

.pper-waiver-header {
	text-align: center;
	margin-bottom: 25px;
	padding-bottom: 20px;
	border-bottom: 3px solid #00687a; /* Teal */
}

.pper-waiver-logo {
	max-width: 250px;
	height: auto;
	margin-bottom: 20px;
}

.pper-waiver-header h1 {
	font-family: 'Bodoni FLF', serif;
	font-weight: bold;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	color: #1d1145; /* Navy */
	margin: 0;
	font-size: 32px;
}

.pper-waiver-info-section {
	margin-bottom: 25px;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
	gap: 20px;
}

.pper-waiver-event-details-full {
	margin-bottom: 25px;
	width: 100%;
}

.pper-waiver-event-details-full .pper-waiver-event-box {
	width: 100%;
	max-width: 100%;
}

.pper-waiver-info-box {
	background: #fff;
	border: 2px solid #00687a; /* Teal */
	border-radius: 8px;
	padding: 20px;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.pper-waiver-info-box h2 {
	font-family: 'Sofia Sans', sans-serif;
	font-weight: bold;
	text-transform: uppercase;
	letter-spacing: 0.03em;
	color: #00687a; /* Teal */
	margin-top: 0;
	margin-bottom: 20px;
	font-size: 20px;
	border-bottom: 2px solid #00687a;
	padding-bottom: 10px;
}

.pper-info-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 12px;
}

.pper-info-item {
	display: flex;
	flex-direction: column;
	gap: 5px;
}

.pper-info-item strong {
	font-family: 'Sofia Sans', sans-serif;
	font-weight: bold;
	color: #1d1145; /* Navy */
	font-size: 14px;
	text-transform: uppercase;
	letter-spacing: 0.02em;
}

.pper-info-item span {
	font-family: 'Montserrat', sans-serif;
	color: #333;
	font-size: 16px;
}

.pper-event-description {
	margin-top: 20px;
	padding-top: 20px;
	border-top: 1px solid #ddd;
	font-family: 'Montserrat', sans-serif;
	color: #666;
	line-height: 1.6;
}

.pper-waiver-form {
	background: #fff;
	border: 2px solid #00687a; /* Teal */
	border-radius: 8px;
	padding: 25px;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
	margin-top: 0;
}

.pper-waiver-form h2 {
	font-family: 'Sofia Sans', sans-serif;
	font-weight: bold;
	text-transform: uppercase;
	letter-spacing: 0.03em;
	color: #00687a; /* Teal */
	margin-top: 25px;
	margin-bottom: 15px;
	font-size: 18px;
	border-bottom: 2px solid #00687a;
	padding-bottom: 10px;
}

.pper-waiver-form h2:first-child {
	margin-top: 0;
}

.pper-waiver-form input[type="text"],
.pper-waiver-form input[type="tel"],
.pper-waiver-form select,
.pper-waiver-form textarea {
	width: 100%;
	max-width: 100%;
	padding: 12px 16px;
	margin-bottom: 12px;
	border: 2px solid #ddd;
	border-radius: 4px;
	font-family: 'Montserrat', sans-serif;
	font-size: 16px;
	transition: border-color 0.2s ease;
	background: #fff;
}

.pper-waiver-form textarea {
	resize: vertical;
	min-height: 80px;
}

.pper-waiver-form input:focus,
.pper-waiver-form select:focus,
.pper-waiver-form textarea:focus {
	outline: none;
	border-color: #00687a; /* Teal */
}

.pper-waiver-form input::placeholder,
.pper-waiver-form textarea::placeholder {
	color: #999;
	font-family: 'Montserrat', sans-serif;
}

.pper-waiver-form .button-primary {
	margin-top: 15px;
}

/* Waiver Wizard Styles */
.pper-waiver-wizard {
	margin-top: 30px;
}

.pper-wizard-steps {
	display: flex;
	justify-content: center;
	gap: 30px;
	margin-bottom: 40px;
	padding-bottom: 20px;
	border-bottom: 2px solid #00687a;
}

.pper-wizard-step-indicator {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 10px;
	cursor: pointer;
	opacity: 0.5;
	transition: all 0.3s ease;
}

.pper-wizard-step-indicator:hover {
	opacity: 0.8;
}

.pper-wizard-step-indicator.active {
	opacity: 1;
	cursor: default;
}

.pper-step-number {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: #ddd;
	color: #666;
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: 'Sofia Sans', sans-serif;
	font-weight: bold;
	font-size: 18px;
	transition: all 0.3s ease;
}

.pper-wizard-step-indicator.active .pper-step-number {
	background: #00687a;
	color: #fffbf0;
}

.pper-step-label {
	font-family: 'Sofia Sans', sans-serif;
	font-weight: bold;
	font-size: 14px;
	text-transform: uppercase;
	letter-spacing: 0.02em;
	color: #1d1145;
}

.pper-wizard-step-content {
	background: #fff;
	border: 2px solid #00687a;
	border-radius: 8px;
	padding: 30px;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.pper-waiver-document {
	max-width: 100%;
}

.pper-waiver-document h2 {
	font-family: 'Bodoni FLF', serif;
	font-weight: bold;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	color: #1d1145;
	font-size: 28px;
	margin-bottom: 30px;
	text-align: center;
}

.pper-waiver-text {
	font-family: 'Montserrat', sans-serif;
	line-height: 1.8;
	color: #333;
	margin-bottom: 30px;
}

.pper-waiver-text p {
	margin-bottom: 15px;
}

.pper-waiver-text strong {
	color: #00687a;
	font-weight: bold;
}

.pper-waiver-policies {
	margin-top: 40px;
	padding-top: 30px;
	border-top: 2px solid #ddd;
}

.pper-waiver-policies h3 {
	font-family: 'Sofia Sans', sans-serif;
	font-weight: bold;
	text-transform: uppercase;
	letter-spacing: 0.03em;
	color: #00687a;
	font-size: 22px;
	margin-bottom: 25px;
}

.pper-policy-section {
	margin-bottom: 30px;
}

.pper-policy-section h4 {
	font-family: 'Sofia Sans', sans-serif;
	font-weight: bold;
	text-transform: uppercase;
	letter-spacing: 0.02em;
	color: #1d1145;
	font-size: 18px;
	margin-bottom: 15px;
}

.pper-policy-section ul {
	margin-left: 20px;
	margin-top: 10px;
}

.pper-policy-section li {
	margin-bottom: 8px;
	line-height: 1.6;
}

.pper-wizard-navigation {
	display: flex;
	justify-content: space-between;
	gap: 15px;
	margin-top: 30px;
	padding-top: 20px;
	border-top: 2px solid #ddd;
}

.pper-wizard-navigation .button {
	flex: 1;
	max-width: 300px;
}

.pper-signature-note {
	margin-top: -10px;
	margin-bottom: 20px;
}

.pper-signature-note small {
	color: #666;
	font-style: italic;
}

.pper-checkbox-label {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	cursor: pointer;
	font-family: 'Montserrat', sans-serif;
	line-height: 1.6;
}

.pper-checkbox-label input[type="checkbox"] {
	margin-top: 4px;
	width: 20px;
	height: 20px;
	cursor: pointer;
	flex-shrink: 0;
}

.pper-checkbox-label span {
	color: #333;
}

/* Waiver Success/Error Messages */
.pper-waiver-success,
.pper-waiver-error {
	background: #fff;
	border: 2px solid #00687a;
	border-radius: 8px;
	padding: 30px;
	margin-bottom: 30px;
	text-align: center;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.pper-waiver-success {
	border-color: #46b450; /* Green */
}

.pper-waiver-success h2 {
	font-family: 'Bodoni FLF', serif;
	font-weight: bold;
	color: #46b450;
	margin-bottom: 15px;
	font-size: 28px;
}

.pper-waiver-error {
	border-color: #dc3232; /* Red */
}

.pper-waiver-error h2 {
	font-family: 'Bodoni FLF', serif;
	font-weight: bold;
	color: #dc3232;
	margin-bottom: 15px;
	font-size: 28px;
}

.pper-waiver-success p,
.pper-waiver-error p {
	font-family: 'Montserrat', sans-serif;
	color: #333;
	font-size: 16px;
	line-height: 1.6;
	margin-bottom: 15px;
}

/* Responsive adjustments for waiver form */
@media (max-width: 768px) {
	.pper-waiver-form-wrapper {
		padding: 15px;
		max-width: 100%;
	}
	
	.pper-waiver-info-section {
		grid-template-columns: 1fr;
		gap: 15px;
	}
	
	.pper-waiver-header {
		margin-bottom: 20px;
		padding-bottom: 15px;
	}
	
	.pper-waiver-logo {
		max-width: 200px;
	}

	.pper-wizard-steps {
		flex-direction: column;
		gap: 20px;
	}

	.pper-wizard-step-indicator {
		flex-direction: row;
		justify-content: flex-start;
		width: 100%;
	}

	.pper-wizard-navigation {
		flex-direction: column;
	}

	.pper-wizard-navigation .button {
		max-width: 100%;
		width: 100%;
	}
}

/* Event List Styles */
.pper-events-list {
	margin: 20px 0;
}

/* Registration List Styles (Simple Format) */
.pper-registration-list {
	list-style: none;
	padding: 0;
	margin: 20px 0;
}

.pper-registration-list li {
	padding: 8px 0;
	border-bottom: 1px solid #eee;
	font-size: 16px;
	line-height: 1.6;
}

.pper-registration-list li:last-child {
	border-bottom: none;
}

.pper-registration-list li strong {
	font-weight: 600;
	margin-right: 8px;
}

.pper-status-full {
	color: #dc3232;
	font-weight: 600;
	margin-left: 8px;
}

.pper-event-item {
	border: 1px solid #ddd;
	padding: 20px;
	margin-bottom: 20px;
	border-radius: 4px;
	background: #fff;
}

.pper-event-item h3 {
	margin-top: 0;
	margin-bottom: 15px;
}

.pper-event-meta {
	margin-bottom: 15px;
}

.pper-event-meta p {
	margin: 5px 0;
}

.pper-event-description {
	margin: 15px 0;
	padding: 15px;
	background: #f9f9f9;
	border-left: 3px solid #00687a; /* Teal - Brand Color */
}

.pper-event-actions {
	margin-top: 15px;
}

.pper-register-button {
	display: inline-block;
	padding: 14px 24px;
	background: #fffbf0; /* Cream */
	color: #00687a; /* Teal */
	border: 2px solid #00687a;
	text-decoration: none;
	border-radius: 4px;
	font-family: 'Sofia Sans', sans-serif;
	font-weight: bold;
	font-size: 16px;
	text-transform: uppercase;
	letter-spacing: 0.03em;
	transition: all 0.2s ease;
}

.pper-register-button:hover {
	background: #00687a; /* Teal on hover */
	color: #fffbf0; /* Cream text on hover */
	border-color: #00687a;
}

.pper-event-full {
	display: inline-block;
	padding: 10px 20px;
	background: #dc3232;
	color: #fff;
	border-radius: 3px;
	font-weight: bold;
}

/* Event Registration Wrapper */
.pper-event-registration-wrapper {
	margin: 20px 0;
}

.pper-event-details {
	margin-bottom: 30px;
	padding: 20px;
	background: #f9f9f9;
	border-left: 4px solid #00687a; /* Teal - Brand Color */
}

.pper-event-details h2 {
	margin-top: 0;
	margin-bottom: 15px;
}

.pper-event-meta p {
	margin: 8px 0;
	font-size: 16px;
}

.pper-event-description-toggle {
	margin-top: 15px;
}

.pper-toggle-more {
	background: transparent;
	border: 1px solid #00687a;
	color: #00687a;
	padding: 8px 16px;
	border-radius: 4px;
	cursor: pointer;
	font-family: 'Sofia Sans', sans-serif;
	font-weight: bold;
	font-size: 14px;
	text-transform: uppercase;
	letter-spacing: 0.03em;
	transition: all 0.2s ease;
	display: inline-flex;
	align-items: center;
	gap: 8px;
}

.pper-toggle-more:hover {
	background: #00687a;
	color: #fffbf0;
}

.pper-toggle-icon {
	transition: transform 0.2s ease;
	font-size: 12px;
}

.pper-toggle-more[aria-expanded="true"] .pper-toggle-icon {
	transform: rotate(180deg);
}

.pper-event-description {
	margin-top: 15px;
	padding: 15px;
	background: #fff;
	border: 1px solid #ddd;
	border-radius: 4px;
}

/* Success and Error Messages */
.pper-success {
	padding: 15px;
	background: #d4edda;
	border: 1px solid #c3e6cb;
	border-radius: 4px;
	color: #155724;
	margin: 20px 0;
}

.pper-error {
	padding: 15px;
	background: #f8d7da;
	border: 1px solid #f5c6cb;
	border-radius: 4px;
	color: #721c24;
	margin: 20px 0;
}

/* Registration Wizard Styles */
.pper-registration-wizard {
	max-width: 900px;
	margin: 20px auto;
	padding: 20px;
}

.pper-wizard-step {
	background: #fff;
	padding: 30px;
	border: 1px solid #ddd;
	border-radius: 8px;
	box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.pper-wizard-step h2 {
	margin-top: 0;
	margin-bottom: 15px;
}

.pper-registration-type-options {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 20px;
	margin: 30px 0;
}

.pper-type-option {
	display: block;
	padding: 30px;
	border: 2px solid #ddd;
	border-radius: 8px;
	text-decoration: none;
	color: inherit;
	transition: all 0.3s ease;
	background: #f9f9f9;
}

.pper-type-option:hover {
	border-color: #00687a; /* Teal - Brand Color */
	background: #fff;
	box-shadow: 0 4px 8px rgba(0,0,0,0.1);
	transform: translateY(-2px);
}

.pper-type-option h3 {
	margin-top: 0;
	margin-bottom: 10px;
	color: #00687a; /* Teal - Brand Color */
}

.pper-type-option p {
	margin: 0;
	color: #666;
}

.pper-event-selection {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
	gap: 20px;
	margin: 30px 0;
}

.pper-event-option {
	padding: 20px;
	border: 1px solid #ddd;
	border-radius: 6px;
	background: #f9f9f9;
}

.pper-event-option h3 {
	margin-top: 0;
	margin-bottom: 10px;
	color: #00687a; /* Teal - Brand Color */
}

.pper-event-date {
	font-weight: 600;
	color: #333;
	margin-bottom: 10px;
}

.pper-event-description {
	color: #666;
	font-size: 14px;
	margin-bottom: 15px;
}

/* Button Styles - Brand Colors (Cream background with Teal text) */
.pper-event-option .button,
.pper-wizard-step .button {
	width: 100%;
	text-align: center;
	padding: 14px 24px;
	border: 2px solid #00687a; /* Teal border */
	border-radius: 4px;
	font-family: 'Sofia Sans', sans-serif;
	font-weight: bold;
	font-size: 16px;
	text-transform: uppercase;
	letter-spacing: 0.03em;
	text-decoration: none;
	display: inline-block;
	transition: all 0.2s ease;
	cursor: pointer;
}

.pper-event-option .button-primary,
.pper-wizard-step .button-primary {
	background-color: #fffbf0; /* Cream */
	color: #00687a; /* Teal */
	border-color: #00687a;
}

.pper-event-option .button-primary:hover,
.pper-wizard-step .button-primary:hover {
	background-color: #00687a; /* Teal on hover */
	color: #fffbf0; /* Cream text on hover */
	border-color: #00687a;
}

.pper-wizard-step .button:not(.button-primary) {
	background-color: #fffbf0; /* Cream */
	color: #5d537d; /* Purple */
	border-color: #5d537d;
}

.pper-wizard-step .button:not(.button-primary):hover {
	background-color: #5d537d; /* Purple on hover */
	color: #fffbf0; /* Cream text on hover */
	border-color: #5d537d;
}

/* Responsive */
@media screen and (max-width: 600px) {
	.pper-registration-type-options {
		grid-template-columns: 1fr;
	}

	.pper-event-selection {
		grid-template-columns: 1fr;
	}
}

/* Ensure family is on left, studio on right */
.pper-type-family {
	order: 1;
}

.pper-type-studio {
	order: 2;
}
