:root {
	--primary-blue: #B8E2E6;
	--text-dark: #1a1a1a;
	--text-light: #666;
	--background: #fff;
	--card-background: rgba(255, 255, 255, 0.8);
	--gradient-1: linear-gradient(135deg, #B8E2E6 0%, #87CEEB 100%);
	--glass-background: rgba(255, 255, 255, 0.95);
	--glass-border: rgba(255, 255, 255, 0.18);
}

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

body {
	font-family: 'Inter', sans-serif;
	line-height: 1.6;
	color: var(--text-dark);
	background-color: #f8f9fa;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: 'Syne', sans-serif !important;
	font-weight: 700;
}

.header {
	position: fixed;
	width: 100%;
	padding: 1.5rem;
	background: var(--glass-background);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	border-bottom: 1px solid var(--glass-border);
	z-index: 1000;
}

.nav {
	max-width: 1400px;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.logo {
	font-family: 'Syne', sans-serif;
	font-size: 1.8rem;
	font-weight: 800;
	color: var(--text-dark);
	text-decoration: none;
	letter-spacing: -0.5px;
	position: relative;
	white-space: nowrap;
}

.nav-links {
	display: flex;
	gap: 1.5rem;
}

.nav-links a {
	font-family: 'Open Sans', sans-serif;
	text-decoration: none;
	color: var(--text-dark);
	font-weight: 500;
	font-size: 1.1rem;
	position: relative;
	padding: 0.5rem 0;
	line-height: 1;
}

.nav-links a::after {
	content: '';
	position: absolute;
	width: 0;
	height: 4px;
	bottom: 0;
	left: 0;
	background-color: var(--text-dark);
	transition: width 0.3s ease;
}

.nav-links a:hover::after {
	width: 100%;
}

.nav-dropdown {
	position: relative;
}

.nav-dropdown-trigger {
	font-family: 'Open Sans', sans-serif;
	text-decoration: none;
	color: var(--text-dark);
	font-weight: 500;
	font-size: 1.1rem;
	position: relative;
	padding: 0.5rem 0;
	line-height: 1;
	background: none;
	border: none;
	cursor: pointer;
}

.nav-dropdown-trigger::after {
	content: '';
	position: absolute;
	width: 0;
	height: 4px;
	bottom: 0;
	left: 0;
	background-color: var(--text-dark);
	transition: width 0.3s ease;
}

.nav-dropdown:hover .nav-dropdown-trigger::after {
	width: 100%;
}

.nav-dropdown-menu {
	position: absolute;
	top: 100%;
	left: 0;
	margin: 0;
	padding: 0.5rem 0;
	list-style: none;
	background: var(--glass-background);
	border: 1px solid var(--glass-border);
	border-radius: 0.5rem;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
	min-width: 12rem;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.2s ease, visibility 0.2s ease;
	z-index: 1001;
}

.nav-dropdown:hover .nav-dropdown-menu {
	opacity: 1;
	visibility: visible;
}

.nav-dropdown-menu li {
	margin: 0;
}

.nav-dropdown-menu a {
	display: block;
	font-family: 'Open Sans', sans-serif;
	text-decoration: none;
	color: var(--text-dark);
	font-weight: 500;
	font-size: 1rem;
	padding: 0.6rem 1rem;
	line-height: 1;
	transition: background 0.2s ease;
}

.nav-dropdown-menu a:hover {
	background: rgba(184, 226, 230, 0.2);
}

.hero {
	height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	overflow: hidden;
	background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4));
}

.hero-img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	z-index: -1;
	filter: blur(5px);
}

.hero-content {
	text-align: center;
	color: white;
	max-width: 800px;
	padding: 2rem;
}

.hero-title {
	font-family: 'Playfair Display';
	font-size: 4rem;
	margin-bottom: 1rem;
	font-weight: 700;
}

.hero-subtitle {
	font-size: 1.5rem;
	margin-bottom: 2rem;
	font-family: 'Montserrat', sans-serif;
}

.section {
	padding: 5rem 2rem;
	max-width: 1200px;
	margin: 0 auto;
}

.section-title {
	font-family: 'Playfair Display', serif;
	text-align: center;
	font-size: 2.5rem;
	margin-bottom: 2rem;
	color: var(--text-dark);
}

.section-subtitle {
	text-align: center;
	font-size: 1.2rem;
	color: var(--text-light);
	margin-bottom: 3rem;
	font-family: 'Montserrat', sans-serif;
}

.services-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 2rem;
	margin-top: 3rem;
}

.service-card {
	background: var(--card-background);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	border: 1px solid var(--glass-border);
	border-radius: 20px;
	padding: 2.5rem;
	text-align: center;
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.05);
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	display: flex;
	flex-direction: column;
	align-items: center;
	position: relative;
	overflow: hidden;
	min-height: 400px;
}

.service-card:hover {
	transform: translateY(-10px) !important;
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
	border-color: var(--primary-blue);
}

.service-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: var(--gradient-1);
	opacity: 0;
	z-index: -1;
	transition: opacity 0.4s ease;
}

.service-card:hover::before {
	opacity: 0.05;
}

.service-icon {
	width: 80px;
	height: 80px;
	margin-bottom: 1.5rem;
	display: flex;
	align-items: center;
	justify-content: center;
}

.service-icon img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 50%;
}

.service-card h3 {
	font-family: 'Syne', sans-serif;
	font-size: 1.8rem;
	color: var(--text-dark);
	margin: 1.5rem 0;
	letter-spacing: -0.5px;
}

.service-card p {
	color: var(--text-light);
	margin-bottom: 2rem;
	flex-grow: 1;
	line-height: 1.7;
	font-size: 1.1rem;
}

.price {
	font-family: 'Inter', sans-serif;
	font-weight: 600;
	color: var(--text-dark);
	margin-bottom: 2rem;
	font-size: 1.2rem;
	padding: 0.5rem 1.5rem;
	background: rgba(184, 226, 230, 0.2);
	border-radius: 100px;
}

.service-button {
	display: inline-block;
	padding: 1rem 2.5rem;
	background: var(--text-dark);
	color: white;
	border: none;
	border-radius: 100px;
	text-decoration: none;
	font-family: 'Inter', sans-serif;
	font-weight: 500;
	font-size: 1.1rem;
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
}

.service-button:hover {
	transform: translateY(-2px);
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
	background: #000;
}

.footer {
	background: var(--text-dark);
	color: white;
	padding: 3rem 2rem;
	text-align: center;
}

.footer-links {
	margin-top: 1rem;
	display: flex;
	justify-content: center;
	gap: 1rem;
	flex-wrap: wrap;
}

.footer-links a {
	color: rgba(255, 255, 255, 0.9);
	text-decoration: none;
	font-size: 0.95rem;
}

.footer-links a:hover {
	text-decoration: underline;
	color: white;
}

.contact-info {
	margin-top: 2rem;
	font-family: 'Montserrat', sans-serif;
}

@media (max-width: 768px) {
	.hero-title {
		font-size: 2.5rem;
	}

	.hero-subtitle {
		font-size: 1.2rem;
	}
}

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

.testimony-card {
	background: var(--card-background);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	border: 1px solid var(--glass-border);
	border-radius: 20px;
	padding: 2.5rem;
	text-align: center;
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.05);
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	display: flex;
	flex-direction: column;
	align-items: center;
	position: relative;
	overflow: hidden;
	min-height: 400px;
}

.testimony-card:hover {
	transform: translateY(-10px) !important;
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
	border-color: var(--primary-blue);
}

.testimony-avatar {
	width: 100px;
	height: 100px;
	border-radius: 50%;
	overflow: hidden;
	margin-bottom: 1.5rem;
}

.testimony-avatar img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.testimony-stars {
	font-size: 1.5rem;
	color: #FFD700;
	margin-bottom: 1.5rem;
}

.testimony-text {
	color: var(--text-light);
	margin-bottom: 2rem;
	flex-grow: 1;
	line-height: 1.7;
	font-size: 1.1rem;
}

.testimony-author {
	font-family: 'Montserrat', sans-serif;
	font-size: 1.2rem;
	color: var(--text-dark);
}

.testimony-author strong {
	font-weight: 600;
}

.testimony-author span {
	font-size: 0.9rem;
	color: var(--text-light);
}

.partners-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(100px, 1fr));
	gap: 2rem;
	align-items: center;
	justify-content: center;
	max-width: 800px;
	margin: 3rem auto;
	padding: 0 2rem;
	justify-items: center;
}

.partner-logo {
	width: 100px;
	height: 100px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s ease;
}

.partner-logo img {
	object-fit: contain;
	width: 100%;
	filter: grayscale(1);
	opacity: 0.7;
}

@media (max-width: 768px) {
	.partners-grid {
		grid-template-columns: repeat(2, minmax(100px, 1fr));
		max-width: 400px;
	}
}

@media (max-width: 480px) {
	.partners-grid {
		gap: 1.5rem;
	}

	.partner-logo {
		width: 80px;
		height: 80px;
	}
}

.social-media section {
	background-color: var(--card-background);
	padding: 2rem;
	border-radius: 20px;
	margin-top: 3rem;
}

.social-media section h2 {
	font-size: 2.5rem;
	margin-bottom: 2rem;
	color: var(--text-dark);
}

.social-media section p {
	font-size: 1.2rem;
	color: var(--text-light);
	margin-bottom: 3rem;
}

.social-container {
	display: flex;
	justify-content: space-between;
}

.instagram-feed,
.facebook-feed {
	flex: 1;
	padding: 1rem;
	border-radius: 20px;
	background-color: var(--glass-background);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	border: 1px solid var(--glass-border);
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.instagram-feed:hover,
.facebook-feed:hover {
	transform: translateY(-10px) !important;
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
	border-color: var(--primary-blue);
}

.social-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
	gap: 1rem;
	margin-bottom: 2rem;
}

.social-post {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 10px;
}

.social-button {
	display: block;
	padding: 1rem 2.5rem;
	background: var(--text-dark);
	color: white;
	border: none;
	border-radius: 100px;
	text-decoration: none;
	font-family: 'Inter', sans-serif;
	font-weight: 500;
	font-size: 1.1rem;
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
	text-align: center;
}

.social-button:hover {
	transform: translateY(-2px);
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
	background: #000;
}

.social-container {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 3rem;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 2rem;
}

.instagram-feed,
.facebook-feed {
	text-align: center;
}

.instagram-feed h3,
.facebook-feed h3 {
	font-family: 'Syne', sans-serif;
	font-size: 1.8rem;
	margin-bottom: 2rem;
	color: var(--text-dark);
}

.social-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1rem;
	margin-bottom: 2rem;
}

.social-post {
	aspect-ratio: 1;
	overflow: hidden;
	border-radius: 10px;
	transition: transform 0.3s ease;
}

.social-post:hover {
	transform: scale(1.05);
}

.social-post img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.social-button {
	display: inline-block;
	padding: 0.8rem 2rem;
	background: var(--text-dark);
	color: white;
	text-decoration: none;
	border-radius: 100px;
	font-family: 'Inter', sans-serif;
	font-weight: 500;
	transition: all 0.3s ease;
}

.social-button:hover {
	transform: translateY(-2px);
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

@media (max-width: 968px) {
	.social-container {
		grid-template-columns: 1fr;
		gap: 4rem;
	}
}

@media (max-width: 480px) {
	.social-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

.contact-container {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 4rem;
	max-width: 1000px;
	margin: 0 auto;
	padding: 2rem;
	background: var(--card-background);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	border: 1px solid var(--glass-border);
	border-radius: 20px;
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.05);
}

.contact-form {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
}

.form-group {
	position: relative;
}

.form-group input,
.form-group select,
.form-group textarea {
	width: 100%;
	padding: 1rem;
	border: 1px solid lightgray;
	border-radius: 10px;
	background: var(--glass-background);
	font-family: 'Inter', sans-serif;
	font-size: 1rem;
	transition: all 0.3s ease;
}

.form-group textarea {
	min-height: 150px;
	resize: vertical;
}

.form-group label {
	position: absolute;
	left: 1rem;
	top: 1rem;
	color: var(--text-light);
	transition: all 0.3s ease;
	pointer-events: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
	border-color: var(--primary-blue);
	outline: none;
}

.form-group input:focus+label,
.form-group input:not(:placeholder-shown)+label,
.form-group textarea:focus+label,
.form-group textarea:not(:placeholder-shown)+label {
	transform: translateY(-2.5rem);
	font-size: 0.8rem;
	color: #444444;
}

.contact-info {
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 1rem;
}

.contact-info p {
	font-size: 1.1rem;
	color: var(--text-light);
}

.contact-info strong {
	color: var(--text-dark);
}

@media (max-width: 768px) {
	.contact-container {
		grid-template-columns: 1fr;
		gap: 2rem;
	}
}

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

.pricing-card {
	background: var(--card-background);
	padding: 2rem;
	border-radius: 1rem;
	text-align: left;
	transition: transform 0.3s ease;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.pricing-card:hover {
	transform: translateY(-5px);
}

.pricing-card h3 {
	text-align: center;
	margin-bottom: 1rem;
	color: var(--text-dark);
}
.pricing-card .price {
	font-size: 2.5rem;
	font-weight: 700;
	text-align: center;
	margin-bottom: 0.5rem;
	color: var(--text-dark);
}
.price-subtitle {
	text-align: center;
	color: var(--text-light);
	margin-bottom: 1.5rem;
}

.pricing-card ul {
	list-style: none;
	padding: 0;
}

.pricing-card li {
	margin-bottom: 1rem;
	padding-left: 1.5rem;
	position: relative;
}

.pricing-card li:before {
	content: "✓";
	position: absolute;
	left: 0;
	color: var(--primary-blue);
}

.pricing-card.featured {
	background: var(--gradient-1);
	color: white;
}

.pricing-card.featured h3,
.pricing-card.featured .price {
	color: white;
}

.pricing-card.featured li:before {
	color: white;
}

.options-section {
	background: var(--background);
}

.options-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 2rem;
	margin-top: 3rem;
}

.option-card {
	background: var(--card-background);
	border-radius: 1rem;
	overflow: hidden;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
	display: flex;
	flex-direction: column;
}

.option-card.large {
	grid-column: 1 / -1;
	flex-direction: row;
}

.option-content {
	padding: 2rem;
	flex: 1;
}

.option-image {
	flex: 1;
	min-height: 250px;
	position: relative;
	overflow: hidden;
}

.option-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.3s ease;
}

.option-card:hover .option-image img {
	transform: scale(1.05);
}

.option-card h3 {
	margin-bottom: 1rem;
	color: var(--text-dark);
}

.option-price {
	font-size: 1.5rem;
	font-weight: 700;
	color: var(--text-dark);
	margin-top: 1rem;
}

.promo-section, .pricing-section {
	background: var(--gradient-1);
	color: white;
	text-align: center;
	padding: 4rem 2rem;
}

.promo-content, .pricing-content {
	max-width: 800px;
	margin: 0 auto;
}

.promo-content h2, .pricing-content h2 {
	margin-bottom: 1rem;
}

.description-text {
	text-align: center;
	margin: 3rem 0;
	font-size: 1.2rem;
	max-width: 800px;
	margin-left: auto;
	margin-right: auto;
}

.activities-list {
	text-align: center;
	margin: 2rem 0;
	font-size: 1.1rem;
}

.promo-text {
	text-align: center;
	padding: 2rem;
	background: var(--card-background);
	border-radius: 1rem;
	margin: 4rem auto;
	max-width: 800px;
}

.services-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2rem;
	margin-top: 3rem;
}

.service-card {
	background: var(--card-background);
	padding: 2rem;
	border-radius: 1rem;
	text-align: center;
	transition: transform 0.3s ease;
}

.service-card:hover {
	transform: translateY(-5px);
}

.service-card h3 {
	margin: 1rem 0;
	color: var(--text-dark);
}

.workshops-section {
	background: var(--background);
	padding-top: 4rem;
}

.workshop-card {
	background: var(--card-background);
	padding: 2rem;
	border-radius: 1rem;
	margin-bottom: 2rem;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.workshop-card h3 {
	color: var(--text-dark);
	font-size: 1.5rem;
	margin-bottom: 1.5rem;
	text-align: center;
}

.workshop-details {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 1rem;
	margin-bottom: 1.5rem;
	padding: 1rem;
	background: rgba(0, 0, 0, 0.05);
	border-radius: 0.5rem;
}

.detail-item {
	text-align: center;
}

.detail-item strong {
	display: block;
	margin-bottom: 0.5rem;
	color: var(--text-dark);
}

.workshop-description {
	color: var(--text-light);
	font-size: 1.1rem;
	line-height: 1.6;
}

.workshop-description p {
	margin-bottom: 1rem;
}

@media (max-width: 768px) {
	.workshop-details {
		grid-template-columns: 1fr 1fr;
	}
}

@media (max-width: 768px) {
	
	.services-grid {
		grid-template-columns: 1fr;
	}
}

.private-lessons-section {
	background: var(--background);
	padding-top: 4rem;
}

.lessons-intro {
	max-width: 800px;
	margin: 0 auto 4rem;
	text-align: center;
	font-size: 1.1rem;
	line-height: 1.6;
	color: var(--text-light);
}

.lessons-intro p {
	margin-bottom: 1.5rem;
}

.services-included {
	margin-bottom: 4rem;
}

.packages-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 2rem;
	margin-top: 2rem;
}

.package-card {
	background: var(--card-background);
	padding: 2rem;
	border-radius: 1rem;
	text-align: center;
	transition: transform 0.3s ease;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.package-card:hover {
	transform: translateY(-5px);
}

.package-card h4 {
	color: var(--text-dark);
	font-size: 1.3rem;
	margin-bottom: 1rem;
}

.package-card .price {
	font-size: 1.5rem;
	font-weight: 700;
	color: var(--text-dark);
}

.package-card.featured {
	background: var(--gradient-1);
	color: white;
}

.package-card.featured h4,
.package-card.featured .price {
	color: white;
}

.package-card .bonus {
	font-size: 0.9rem;
	margin: 1rem 0;
	font-style: italic;
}

@media (max-width: 768px) {
	.packages-grid {
		grid-template-columns: 1fr;
	}
}