* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
	line-height: 1.6;
	color: #333;
	background-color: #ffffff;
}

/* Skip to content link for accessibility */
.skip-link {
	position: absolute;
	top: -40px;
	left: 0;
	background: #E89096;
	color: white;
	padding: 8px;
	z-index: 10000;
	text-decoration: none;
	border-radius: 0 0 4px 0;
}

.skip-link:focus {
	top: 0;
}

/* Enhanced focus indicators for accessibility */
*:focus {
	outline: 3px solid #E89096;
	outline-offset: 2px;
}

button:focus,
a:focus,
input:focus,
select:focus,
textarea:focus {
	outline: 3px solid #E89096;
	outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
	.btn-service,
	.btn-service-primary,
	.submit-btn {
		border: 2px solid currentColor;
	}
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
	*,
	*::before,
	*::after {
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.01ms !important;
		scroll-behavior: auto !important;
	}
}

.container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

section {
	padding: 60px 0;
}

h1, h2, h3, h4 {
	margin-bottom: 1rem;
	color: #333;
}

h1 {
	font-size: 2.8rem;
	font-weight: 700;
	color: #fff;
	margin-bottom: 2rem;
	text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.2);
	opacity: 0;
	animation: fadeInUp 0.8s ease-out forwards;
	animation-delay: 0.8s;
	line-height: 1;
}

h2 {
	font-size: 2.2rem;
	font-weight: 600;
	color: #E89096;
	margin-bottom: 2rem;
}

h3 {
	font-size: 1.6rem;
	font-weight: 600;
	margin-bottom: 1rem;
	color: #333;
}

h4 {
	font-size: 1.2rem;
	font-weight: 600;
	margin-top: 1.5rem;
	margin-bottom: 0.8rem;
}

p {
	margin-bottom: 1rem;
}

ul {
	margin-left: 20px;
	margin-bottom: 1rem;
}

li {
	margin-bottom: 0.5rem;
}

/* Hero Header with Background */
.hero-header {
	position: relative;
	background: linear-gradient(135deg, #E89096 0%, #F8A5A9 50%, #FFB5B9 100%);
	padding: 0;
	overflow: hidden;
}

.hero-background {
	padding: 30px 20px min(120px, 7vw);
	text-align: center;
	position: relative;
	z-index: 1;
}

.hero-logo {
	height: 200px;
	width: auto;
	margin: 0 auto -20px auto;
	display: block;
	animation: fadeIn 1s ease-out forwards;
	opacity: 0;
}

.wave-divider {
	position: absolute;
	bottom: -1px;
	left: 0;
	width: 100%;
	z-index: 2;
}

.wave-divider svg {
	display: block;
	width: 100%;
	height: auto;
}

/* Main Content with Side Waves */
.main-content {
	padding: min(80px, 6vw) 0 40px;
	position: relative;
	overflow: hidden;
}

.wave-pattern-left {
	position: absolute;
	left: -100px;
	top: 50%;
	transform: translateY(-50%);
	width: 200px;
	height: 400px;
	background: linear-gradient(45deg, transparent 48%, rgba(232, 144, 150, 0.05) 50%, transparent 52%);
	background-size: 30px 30px;
}

.wave-pattern-right {
	position: absolute;
	right: -100px;
	top: 50%;
	transform: translateY(-50%);
	width: 200px;
	height: 400px;
	background: linear-gradient(-45deg, transparent 48%, rgba(232, 144, 150, 0.05) 50%, transparent 52%);
	background-size: 30px 30px;
}

.question-section {
	position: relative;
	z-index: 1;
}

.questions-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 25px;
	margin: 40px 0;
}

.question-card {
	background: linear-gradient(135deg, #ffffff 0%, #FFF5F5 100%);
	padding: 25px;
	border-radius: 15px;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
	border-left: 4px solid #E89096;
	transition: transform 0.3s;
	display: flex;
	align-items: flex-start;
	gap: 15px;
}

.question-card:hover {
	transform: translateX(5px);
}

.question-card p {
	margin-bottom: 0;
}

.question-number {
	background: linear-gradient(135deg, #E89096, #F8A5A9);
	color: white;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: bold;
	flex-shrink: 0;
}

.answer-box {
	background: linear-gradient(135deg, #E89096, #F8A5A9);
	color: white;
	padding: 30px;
	border-radius: 20px;
	text-align: center;
	font-size: 1.3rem;
	font-weight: 500;
	margin-top: 40px;
	box-shadow: 0 10px 30px rgba(232, 144, 150, 0.3);
}

.answer-box p {
	margin-bottom: 0;
}

/* Services Section */
.services {
	background: linear-gradient(180deg, #FFF5F5 0%, #ffffff 100%);
	position: relative;
	padding: min(140px, 10vw) 0 0;
}

.services-wave-top {
	position: absolute;
	top: -1px;
	left: 0;
	width: 100%;
	z-index: 1;
}

.services-wave-top svg {
	display: block;
	width: 100%;
	height: auto;
}

.services-layout {
	display: grid;
	grid-template-columns: 1fr 1.5fr;
	gap: 40px;
	margin-top: 40px;
}

.service-box {
	background: white;
	padding: 35px;
	border-radius: 20px;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
	position: relative;
	overflow: hidden;
	z-index: 1;
}

.service-box::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 5px;
	background: linear-gradient(90deg, #E89096, #F8A5A9, #FFB5B9);
}

.service-benefits {
	list-style: none;
	margin: 20px 0;
}

.service-benefits li {
	padding: 8px 0;
	padding-left: 25px;
	position: relative;
}

.service-benefits li::before {
	content: '✓';
	position: absolute;
	left: 0;
	color: #E89096;
	font-weight: bold;
}

.workshop-header {
	margin-bottom: 25px;
}

.workshop-tagline {
	font-style: italic;
	color: #666;
	margin-top: 5px;
}

.workshop-content {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 30px;
	margin: 25px 0;
}

.workshop-section {
	background: #FAFAFA;
	padding: 20px;
	border-radius: 10px;
}

.service-box a:not(.btn-service):not(.btn-service-primary) {
	color: #E89096;
	text-decoration: underline;
	font-weight: 600;
	transition: color 0.3s;
}

.service-box a:not(.btn-service):not(.btn-service-primary):hover {
	color: #D47982;
}

.btn-service,
.btn-service-primary {
	display: inline-block;
	padding: 14px 35px;
	text-decoration: none;
	border-radius: 30px;
	transition: all 0.3s;
	font-weight: 600;
	text-align: center;
}

.btn-service {
	background: transparent;
	color: #E89096;
	border: 2px solid #E89096;
}

.btn-service:hover {
	background: #E89096;
	color: white;
	transform: translateY(-2px);
}

.btn-service-primary {
	background: linear-gradient(135deg, #E89096, #F8A5A9);
	color: white;
	border: none;
	display: block;
	margin-top: 25px;
}

.btn-service-primary:hover,
.btn-service-primary:focus {
	transform: translateY(-3px);
	box-shadow: 0 10px 25px rgba(232, 144, 150, 0.3);
	background-color: #D47982;
}

/* Registration Form */
.registration {
	background: linear-gradient(135deg, #FFF5F5 0%, #FFE8E9 100%);
	position: relative;
	padding-top: 0;
}

.workshop-form {
	max-width: 600px;
	margin: 0 auto;
	background-color: white;
	padding: 40px;
	border-radius: 10px;
	box-shadow: 0 10px 30px rgba(232, 144, 150, 0.1);
}

.form-group {
	margin-bottom: 25px;
}

.form-group label {
	display: block;
	margin-bottom: 5px;
	font-weight: 600;
	color: #333;
}

.form-group small {
	display: block;
	color: #666;
	font-size: 0.9rem;
	margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
	width: 100%;
	padding: 12px;
	border: 1px solid #ddd;
	border-radius: 5px;
	font-size: 16px;
	transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
	outline: none;
	border-color: #E89096;
	box-shadow: 0 0 0 3px rgba(232, 144, 150, 0.1);
}

/* Special styling for people count field */
.form-group:has(#people) {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 15px;
}

.form-group:has(#people) label {
	margin-bottom: 0;
	flex-shrink: 0;
}

.form-group:has(#people) input {
	width: 80px;
	text-align: center;
}

/* Checkbox styling */
.checkbox-group {
	margin-top: 30px;
	margin-bottom: 30px;
}

.checkbox-label {
	display: flex !important;
	align-items: flex-start;
	cursor: pointer;
	font-weight: normal !important;
}

.checkbox-label input[type="checkbox"] {
	width: auto !important;
	min-width: 20px;
	height: 20px;
	margin-right: 10px;
	margin-top: 2px;
	cursor: pointer;
}

.checkbox-label span {
	flex: 1;
	line-height: 1.4;
}

.checkbox-label a {
	color: #E89096;
	text-decoration: underline;
}

.checkbox-label a:hover {
	color: #d77b81;
}

.submit-btn {
	background-color: #E89096;
	color: white;
	padding: 15px 40px;
	border: none;
	border-radius: 25px;
	font-size: 18px;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s;
	width: 100%;
}

.submit-btn:hover {
	background-color: #D47982;
	transform: translateY(-2px);
	box-shadow: 0 5px 15px rgba(232, 144, 150, 0.3);
}

.message {
	margin-top: 20px;
	padding: 15px;
	border-radius: 5px;
	display: none;
}

.message.success {
	background-color: #d4edda;
	color: #155724;
	border: 1px solid #c3e6cb;
	display: block;
}

.message.error {
	background-color: #f8d7da;
	color: #721c24;
	border: 1px solid #f5c6cb;
	display: block;
}

.message.warning {
	background-color: #fff3cd;
	color: #856404;
	border: 1px solid #ffeaa7;
	display: block;
}

.message a {
	color: #155724;
}

.message a:hover {
	color: #0d3314;
}

/* References */
.references {
	margin-top: 60px;
	text-align: center;
}

.video-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 30px;
	margin-top: 30px;
}

.video-grid iframe {
	margin: auto;
	border-radius: 10px;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* About Section */
.about {
	background-color: #fff;
	padding-bottom: 0;
}

.about-content {
	display: grid;
	grid-template-columns: 2fr 1fr;
	gap: 40px;
	align-items: start;
}

.about-text {
	margin-bottom: 80px;
}

.about-text ul {
	margin: 1rem 0 1.5rem 20px;
}

.social-links {
	display: flex;
	gap: 20px;
	margin-top: 30px;
}

.social-links a {
	display: inline-block;
	transition: transform 0.3s ease, opacity 0.3s ease;
	align-self: center;
}

.social-links a:hover {
	transform: translateY(-3px);
	opacity: 0.8;
}

.social-links img {
	height: 30px;
	align-self: center;
	display: block;
}

.social-links .about-youtube img {
	height: 20px;
}

.about-image {
	align-self: end;
}

.about-image img {
	width: 100%;
	height: auto;
	position: relative;
	z-index: 1;
}

/* CTA Section */
.cta {
	position: relative;
	padding: 0;
}

.cta .wave {
	display: block;
	position: relative;
	z-index: 2;
	margin-top: -7vw;
	margin-bottom: -1px;
}

.cta-content {
	/*background: linear-gradient(135deg, #E89096 0%, #F8A5A9 100%);*/
	background: #F8A5A9;
	padding-bottom: 80px;
	text-align: center;
}

.cta-content .container {
	padding-top: 1px;
}

.cta h2 {
	color: #fff;
	margin-bottom: 1rem;
	margin-top: 3rem;
}

.cta p {
	color: #fff;
	font-size: 1.1rem;
}

.cta-buttons {
	margin-top: 2rem;
}

.cta .cta--divider {
	margin-bottom: 5rem;
}

.video-embed {
	margin: 2rem auto;
	max-width: 800px;
	aspect-ratio: 16 / 9;
	overflow: hidden;
	border-radius: 8px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.video-embed iframe {
	width: 100%;
	height: 100%;
	border: none;
	border-radius: 8px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.pew .agreement {
	font-size: 0.8em
}

.cta .pe .info {
	background: rgba(0, 0, 0, .2);
}

.btn-primary, .btn-secondary {
	display: inline-block;
	padding: 15px 35px;
	text-decoration: none;
	border-radius: 30px;
	transition: all 0.3s;
	margin: 10px;
	font-weight: 600;
}

.btn-primary {
	background-color: #fff;
	color: #E89096;
}

.btn-primary:hover {
	transform: translateY(-3px);
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.btn-secondary {
	background-color: transparent;
	color: #fff;
	border: 2px solid #fff;
}

.btn-secondary:hover {
	background-color: #fff;
	color: #E89096;
	transform: translateY(-3px);
}

/* Footer */
.footer {
	background-color: #2d2d2d;
	padding: 40px 0;
	text-align: center;
}

.footer-content {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 20px;
}

.footer-content p {
	color: #fff;
	margin: 0;
}

.footer-content a {
	color: #F8A5A9;
	text-decoration: none;
	transition: opacity 0.3s;
}

.footer-content a:hover {
	opacity: 0.8;
}

.footer-logo img {
	height: 50px;
	width: auto;
	opacity: 0.9;
	transition: opacity 0.3s;
}

.footer-logo:hover img {
	opacity: 1;
}

.footer-terms {
	font-size: 0.9rem;
	margin-top: 10px;
	padding-top: 20px;
	border-top: 1px solid rgba(255, 255, 255, 0.2);
}

/* Animations */
@keyframes fadeIn {
	from {
		opacity: 0;
		transform: translateY(-20px);
	}
	to {
		opacity: 0.8;
		transform: translateY(0);
	}
}

@keyframes fadeInUp {
	from {
		opacity: 0;
		/*transform: translateY(20px);*/
	}
	to {
		opacity: 0.8;
		/*transform: translateY(0);*/
	}
}

/* Responsive Design */
@media (max-width: 768px) {
	h1 {
		font-size: 1.6rem;
	}

	h2 {
		font-size: 1.6rem;
	}

	.hero-logo {
		height: 120px;
		margin-bottom: -10px;
	}

	.questions-grid {
		grid-template-columns: 1fr;
	}

	.services-layout {
		grid-template-columns: 1fr;
	}

	.workshop-content {
		grid-template-columns: 1fr;
	}

	.about-content {
		grid-template-columns: 1fr;
	}

	.about-text {
		margin-bottom: 0;
	}

	.about-image {
		order: 2;
		margin-top: 20px;
	}

	.about-image img {
		max-width: 200px;
		margin: 0 auto;
		display: block;
	}

	.workshop-form {
		padding: 20px;
	}

	.btn-primary, .btn-secondary {
		display: block;
		width: 90%;
		margin: 10px auto;
		text-align: center;
	}
}
