@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;500;600;700&display=swap');

:root {
	--primary-gold: #D4A574;
	--dark-navy: #09192c;
	--light-navy: #34495E;
	--cream: #FAF6F2;
	--white: #FFFFFF;
	--text-dark: #2C3E50;
	--text-light: #7F8C8D;
}

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

body {
	font-family: 'Roboto', sans-serif;
	font-size: 16px;
	line-height: 1.7;
	color: var(--text-dark);
	background-color: var(--white);
}

.container {
	max-width: 100%;
	margin: 0 auto;
	padding: 0 5%;
}

@media (min-width: 1400px) {
	.container {
		padding: 0 10%;
	}
}

@media (min-width: 1800px) {
	.container {
		padding: 0 15%;
	}
}

/* Header */
header {
	background: var(--white);
	box-shadow: 0 2px 10px rgba(0,0,0,0.1);
	position: fixed;
	top: 0;
	width: 100%;
	z-index: 1000;
	opacity: 0;
	transition: opacity 0.3s ease;
}

header.visible {
	opacity: 1;
}

nav {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 1rem 0;
}

.logo {
	display: flex;
	align-items: center;
	gap: 15px;
}

.logo-icon {
	width: 50px;
	height: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.logo-icon img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.logo-text {
	font-size: 1.5rem;
	font-weight: bold;
	color: var(--dark-navy);
}

.nav-links {
	display: flex;
	list-style: none;
	gap: 2rem;
}

.nav-links a {
	text-decoration: none;
	color: var(--text-dark);
	font-weight: 500;
	transition: all 0.3s ease;
	position: relative;
}

.nav-links a::after {
	content: '';
	position: absolute;
	bottom: -5px;
	left: 0;
	width: 0;
	height: 2px;
	background: var(--primary-gold);
	transition: width 0.3s ease;
}

.nav-links a:hover {
	color: var(--primary-gold);
}

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

.hamburger {
	display: none;
	flex-direction: column;
	gap: 5px;
	background: none;
	border: none;
	cursor: pointer;
	padding: 5px;
}

.hamburger span {
	width: 25px;
	height: 3px;
	background: var(--dark-navy);
	transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
	transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
	opacity: 0;
}

.hamburger.active span:nth-child(3) {
	transform: rotate(-45deg) translate(7px, -7px);
}

/* Hero Section */
.hero {
	background: linear-gradient(135deg, #09192c 0%, #1a2f45 100%);
	color: var(--white);
	padding: 60px 0;
	text-align: center;
	position: relative;
	overflow: hidden;
	display: flex;
	align-items: center;
}

@media (min-width: 769px) {
	.hero {
		padding: 80px 0;
	}
}

.hero::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><text y="20" font-size="20" fill="%23D4A574" opacity="0.1">♪</text><text x="30" y="50" font-size="15" fill="%23D4A574" opacity="0.1">♫</text><text x="70" y="80" font-size="18" fill="%23D4A574" opacity="0.1">♪</text><text x="10" y="80" font-size="12" fill="%23D4A574" opacity="0.1">♬</text></svg>') repeat;
	animation: float 20s ease-in-out infinite;
}

@keyframes float {
	0%, 100% { transform: translateY(0px); }
	50% { transform: translateY(-20px); }
}

.hero-content {
	position: relative;
	z-index: 2;
	display: grid;
	grid-template-columns: 1fr;
	gap: 40px;
	align-items: center;
	width: 100%;
}

@media (min-width: 769px) {
	.hero-content {
		grid-template-columns: 1fr 1fr;
		gap: 60px;
	}
}

.hero-left {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 25px;
	text-align: center;
}

@media (min-width: 769px) {
	.hero-left {
		gap: 35px;
	}
}

#bluelogo {
	flex: 0 0 auto;
	margin-bottom: 0;
}

@media (min-width: 769px) {
	#bluelogo {
		background: #09192c;
		padding: 20px;
		border-radius: 10px;
	}
}

#bluelogo img {
	/* mix-blend-mode removed */
}

#bluelogo .logo-text-hero {
	display: none;
	max-width: 300px;
	height: auto;
}

#cms-introduction {
	width: 100%;
}

.hero-carousel {
	width: 100%;
	max-width: 600px;
	margin: 0 auto;
}

@media (min-width: 769px) {
	.hero-carousel {
		max-width: 100%;
	}
}

.hero h1 {
	font-size: 3.5rem;
	margin-bottom: 1rem;
	font-weight: normal;
}

.hero .subtitle {
	font-size: 1.3rem;
	margin-bottom: 2rem;
	color: var(--primary-gold);
}

.hero p {
	font-size: 1.125rem;
	margin-bottom: 2rem;
	max-width: 600px;
	margin-left: auto;
	margin-right: auto;
	line-height: 1.8;
}

@media (min-width: 769px) {
	.hero p {
		font-size: 1.25rem;
	}
}

/* Carousel in Hero */
.hero .carousel-container {
	position: relative;
	width: 100%;
	margin: 0 auto;
	border-radius: 20px;
	overflow: hidden;
	box-shadow: 0 20px 60px rgba(0,0,0,0.5);
	contain: layout;
	border: 2px solid rgba(212, 165, 116, 0.2);
}

.hero .carousel-wrapper {
	position: relative;
	width: 100%;
	height: 350px;
	overflow: hidden;
	min-height: 350px;
	max-height: 350px;
}

@media (min-width: 1200px) {
	.hero .carousel-wrapper {
		height: 450px;
		min-height: 450px;
		max-height: 450px;
	}
}

.carousel-slide {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	min-height: 100%;
	max-height: 100%;
	opacity: 0;
	transition: opacity 0.5s ease-in-out;
	overflow: hidden;
}

.carousel-slide.active {
	opacity: 1;
}

.carousel-slide img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.carousel-btn {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	background: rgba(44, 62, 80, 0.8);
	color: white;
	border: none;
	width: 50px;
	height: 50px;
	border-radius: 50%;
	font-size: 24px;
	cursor: pointer;
	transition: all 0.3s ease;
	z-index: 10;
}

.carousel-btn:hover {
	background: var(--primary-gold);
	transform: translateY(-50%) scale(1.1);
}

.carousel-btn.prev {
	left: 20px;
}

.carousel-btn.next {
	right: 20px;
}

.carousel-dots {
	position: absolute;
	bottom: 20px;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	gap: 10px;
	z-index: 10;
}

.dot {
	width: 12px;
	height: 12px;
	border-radius: 50%;
	border: 2px solid white;
	background: transparent;
	cursor: pointer;
	transition: all 0.3s ease;
}

.dot.active {
	background: var(--primary-gold);
	border-color: var(--primary-gold);
}

.dot:hover {
	background: rgba(255, 255, 255, 0.7);
}

.cta-button {
	display: inline-block;
	background: linear-gradient(135deg, var(--primary-gold) 0%, #c19660 100%);
	color: var(--white);
	padding: 18px 45px;
	text-decoration: none;
	border-radius: 50px;
	font-weight: 700;
	font-size: 1.125rem;
	transition: all 0.3s ease;
	box-shadow: 0 6px 20px rgba(212, 165, 116, 0.4);
	min-height: 56px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

.cta-button:hover {
	transform: translateY(-3px);
	box-shadow: 0 10px 30px rgba(212, 165, 116, 0.5);
	background: linear-gradient(135deg, #c19660 0%, var(--primary-gold) 100%);
}

.cta-button:active {
	transform: translateY(-1px);
}

@media (min-width: 769px) {
	.cta-button {
		font-size: 1.2rem;
		padding: 20px 50px;
	}
}

/* Mobile carousel section */
.mobile-carousel-section {
	visibility: hidden;
	position: absolute;
	top: -9999px;
}

@media (max-width: 768px) {
	.mobile-carousel-section {
		visibility: visible;
		position: static;
		background: linear-gradient(135deg, #09192c 0%, #1a2f45 100%);
		padding: 0;
	}

	.mobile-carousel-section .carousel-container {
		position: relative;
		max-width: 100%;
		margin: 0 auto;
		border-radius: 0;
		overflow: hidden;
		box-shadow: none;
	}

	.mobile-carousel-section .carousel-wrapper {
		position: relative;
		height: 250px;
		min-height: 250px;
		max-height: 250px;
		overflow: hidden;
	}
}

/* About Section */
.about {
	padding: 60px 0;
	background: var(--white);
}

@media (min-width: 769px) {
	.about {
		padding: 80px 0;
	}
}

.video {
	padding-top: 10px;
	background: var(--cream);
}

.section-header {
	text-align: center;
	margin-bottom: 40px;
}

.founder .section-header {
	margin-bottom: 25px;
}

@media (min-width: 769px) {
	.section-header {
		margin-bottom: 60px;
	}

	.founder .section-header {
		margin-bottom: 35px;
	}
}

. h2 {
	font-size: 2.5rem;
	color: var(--dark-navy);
	text-align: center;
	margin-bottom: 15px;
	font-weight: 600;
	line-height: 1.3;
}

@media (min-width: 769px) {
	.section-header h2 {
		font-size: 3rem;
	}
}

.section-header p {
	font-size: 1.3rem;
	color: var(--text-light);
	margin: 0 auto;
	text-align: center;
}

.about-content {
	max-width: 900px;
	margin: 0 auto;
}

.about-text h3 {
	font-size: 2rem;
	color: var(--dark-navy);
	margin-bottom: 1.5rem;
}

.about-text h4 {
	font-size: 1.5rem;
	color: var(--dark-navy);
	margin-top: 2rem;
	margin-bottom: 1rem;
	font-weight: 600;
}

@media (min-width: 769px) {
	.about-text h4 {
		font-size: 1.6rem;
	}
}

.about-text p {
	font-size: 1.125rem;
	margin-bottom: 1.5rem;
	color: var(--text-light);
	line-height: 1.8;
}

@media (min-width: 769px) {
	.about-text p {
		font-size: 1.15rem;
	}
}

.piano-keyboard {
	background: var(--cream);
	padding: 60px 0;
}

@media (min-width: 769px) {
	.piano-keyboard {
		padding: 80px 0;
	}
}

.piano-graphic {
	background: var(--white);
	padding: 60px;
	border-radius: 20px;
	box-shadow: 0 10px 30px rgba(0,0,0,0.1);
	text-align: center;
	max-width: 900px;
	margin: 0 auto;
}

.piano-keys {
	display: flex;
	justify-content: center;
	margin-bottom: 20px;
	position: relative;
}

.founder{
	background: var(--white);
	padding: 60px 0;
}

@media (min-width: 769px) {
	.founder {
		padding: 80px 0;
	}
}

.key {
	width: 30px;
	height: 120px;
	border: 2px solid var(--dark-navy);
	margin: 0 1px;
	cursor: pointer;
	transition: all 0.1s ease;
	user-select: none;
}

.key:hover {
	transform: translateY(2px);
	box-shadow: 0 2px 8px rgba(0,0,0,0.3);
	filter: brightness(1.1);
}

.key:hover::after {
	content: "♪";
	position: absolute;
	top: -25px;
	left: 50%;
	transform: translateX(-50%);
	color: var(--primary-gold);
	font-size: 14px;
	animation: noteFloat 0.5s ease-out;
	pointer-events: none;
}

@keyframes noteFloat {
	0% { opacity: 0; transform: translateX(-50%) translateY(10px); }
	50% { opacity: 1; transform: translateX(-50%) translateY(-5px); }
	100% { opacity: 0; transform: translateX(-50%) translateY(-15px); }
}


/* Collapsible service cards */
.service-card.expandable .expandable-content {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.3s ease-out, opacity 0.3s ease-out;
	opacity: 0;
}

.service-card.expandable.expanded .expandable-content {
	max-height: 1000px;
	opacity: 1;
	transition: max-height 0.4s ease-in, opacity 0.4s ease-in;
}

.read-more-btn {
	background: var(--primary-gold);
	color: var(--white);
	border: none;
	padding: 14px 28px;
	border-radius: 25px;
	font-size: 1rem;
	font-weight: 600;
	cursor: pointer;
	margin-top: 20px;
	transition: all 0.3s ease;
	min-height: 44px;
	box-shadow: 0 4px 12px rgba(212, 165, 116, 0.3);
	display: block;
	margin-left: auto;
	margin-right: auto;
	width: fit-content;
}

.read-more-btn:hover {
	background: #c19660;
	transform: translateY(-2px);
	box-shadow: 0 6px 16px rgba(212, 165, 116, 0.4);
}

.read-more-btn:active {
	transform: translateY(0);
}

.service-card.expanded .read-more-btn {
	background: var(--text-light);
	box-shadow: 0 4px 12px rgba(127, 140, 141, 0.3);
}

.service-card.expanded .read-more-btn:hover {
	background: var(--text-dark);
	box-shadow: 0 6px 16px rgba(44, 62, 80, 0.4);
}

.key:active {
	transform: translateY(4px);
	box-shadow: 0 1px 4px rgba(0,0,0,0.4);
}

.key.white {
	background: var(--white);
}

.key.white:hover {
	background: #f8f8f8;
}

.key.white:active {
	background: #e8e8e8;
}

.key.black {
	background: var(--dark-navy);
	height: 80px;
	width: 20px;
	margin: 0 -10px;
	z-index: 1;
	position: relative;
}

.key.black:hover {
	background: #1a252f;
}

.key.black:active {
	background: #0f1419;
}

/* Services Section */
.services {
	padding: 60px 0;
	background: var(--cream);
}

@media (min-width: 769px) {
	.services {
		padding: 80px 0;
	}
}

.services-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
	gap: 40px;
	max-width: 1200px;
	margin: 0 auto;
}

/* Horizontal scroll on mobile */
@media (max-width: 768px) {
	.services-grid {
		display: flex;
		overflow-x: auto;
		scroll-snap-type: x mandatory;
		gap: 20px;
		padding: 0 20px;
		-webkit-overflow-scrolling: touch;
		scrollbar-width: none; /* Firefox */
		-ms-overflow-style: none; /* IE/Edge */
	}

	.services-grid::-webkit-scrollbar {
		display: none; /* Chrome/Safari */
	}

	.service-card {
		flex: 0 0 85%; /* Show 85% width + peek of next card */
		scroll-snap-align: start;
		min-width: 280px;
	}

	.services-dots {
		display: flex;
		justify-content: center;
		gap: 10px;
		margin-top: 30px;
		padding: 0 20px;
	}

	.service-dot {
		width: 10px;
		height: 10px;
		border-radius: 50%;
		background: rgba(212, 165, 116, 0.3);
		cursor: pointer;
		transition: all 0.3s ease;
	}

	.service-dot.active {
		background: var(--primary-gold);
		transform: scale(1.2);
	}
}

/* Hide dots on desktop */
@media (min-width: 769px) {
	.services-dots {
		display: none;
	}
}

.service-card {
	background: var(--white);
	padding: 35px 25px;
	border-radius: 20px;
	box-shadow: 0 5px 20px rgba(0,0,0,0.08);
	text-align: left;
	transition: all 0.3s ease;
	border: 1px solid rgba(0,0,0,0.05);
}

.service-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 15px 40px rgba(0,0,0,0.15);
	border-color: rgba(212, 165, 116, 0.2);
}

@media (min-width: 769px) {
	.service-card {
		padding: 40px 30px;
	}
}

.service-icon {
	width: 100px;
	height: 100px;
	background: linear-gradient(135deg, var(--primary-gold) 0%, #c19660 100%);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 25px;
	font-size: 2.5rem;
	color: var(--white);
	box-shadow: 0 8px 20px rgba(212, 165, 116, 0.3);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover .service-icon {
	transform: scale(1.05);
	box-shadow: 0 12px 30px rgba(212, 165, 116, 0.4);
}

@media (min-width: 769px) {
	.service-icon {
		width: 110px;
		height: 110px;
		font-size: 2.75rem;
	}
}

.service-card h3 {
	font-size: 1.625rem;
	color: var(--dark-navy);
	margin-bottom: 20px;
	text-align: center;
	font-weight: 600;
	line-height: 1.3;
}

@media (min-width: 769px) {
	.service-card h3 {
		font-size: 1.75rem;
	}
}

.service-card p {
	font-size: 1rem;
	color: var(--text-light);
	line-height: 1.8;
	margin-bottom: 0.75rem;
}

@media (min-width: 769px) {
	.service-card p {
		font-size: 1.0625rem;
	}
}

/* Contact Section */
.contact {
	padding: 80px 0;
	background: var(--dark-navy);
	color: var(--white);
}

.contact h2 {
	color: var(--white);
}

.contact-info {
	display: flex;
	flex-direction: column;
	gap: 15px;
}

.contact-item {
	padding: 10px;
}

.contact-item h4 {
	color: var(--primary-gold);
	font-size: 1.3rem;
	margin-bottom: 10px;
}

.contact-item p {
	font-size: 1.1rem;
	padding-bottom: 20px;
}

/* Footer */
footer {
	background: var(--dark-navy);
	color: var(--white);
	padding: 10px 0;
}

footer .container p{
	text-align: center;
}

.footer-logo {
	display: block;
	margin: 0 auto 20px auto;
	max-width: 300px;
	height: auto;
}
/* Global paragraph alignment */
p {
	text-align: left;
}

/* Section titles alignment */
.section-header h2 {
	text-align: center; /* default for desktop */
}
.form-header {
	color: var(--dark-navy);
	margin-bottom: 30px;
	text-align: center;
	font-size: 1.75rem;
	font-weight: 700;
	line-height: 1.3;
}

@media (min-width: 769px) {
	.form-header {
		font-size: 2rem;
	}
}
/* Mobile Responsive */
@media (max-width: 768px) {
	.container {
		padding: 0 20px;
	}

	.hero {
		min-height: auto;
		padding: 40px 0 20px 0;
	}

	.hero-content {
		gap: 0;
		grid-template-columns: 1fr;
	}

	.hero-left {
		gap: 10px;
	}

	#cms-introduction {
		text-align: center;
	}

	#cms-introduction p {
		margin-bottom: 1rem;
	}

	#bluelogo img:first-child {
		display: none;
	}

	#bluelogo .logo-text-hero {
		display: block;
		max-width: 250px;
	}

	.hero-carousel {
		visibility: hidden;
		position: absolute;
		top: -9999px;
	}

	@media (min-width: 769px) {
		.hero-carousel {
			visibility: visible;
			position: static;
		}

		.mobile-carousel-section {
			visibility: hidden;
			position: absolute;
			top: -9999px;
		}
	}

	.about {
		padding: 10px 0;
	}

	.piano-keyboard {
		padding: 40px 0;
	}

	.piano-graphic {
		padding: 20px;
	}

	.founder {
		padding: 10px 0;
	}

	.founder-content {
		padding: 15px;
	}

	.services {
		padding: 20px 0;
	}

	.contact {
		padding: 0;
	}

	.contact .container {
		padding: 0;
	}

	.contact-form {
		border-radius: 0 !important;
	}

	.carousel-btn {
		width: 40px;
		height: 40px;
		font-size: 18px;
	}

	.carousel-btn.prev {
		left: 10px;
	}

	.carousel-btn.next {
		right: 10px;
	}

	.carousel-dots {
		bottom: 15px;
	}

	.dot {
		width: 10px;
		height: 10px;
	}
	.hero::before {
		background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 50 50"><text y="10" font-size="10" fill="%23D4A574" opacity="0.15">♪</text><text x="15" y="25" font-size="8" fill="%23D4A574" opacity="0.15">♫</text><text x="35" y="40" font-size="9" fill="%23D4A574" opacity="0.15">♪</text><text x="5" y="40" font-size="6" fill="%23D4A574" opacity="0.15">♬</text><text x="25" y="15" font-size="7" fill="%23D4A574" opacity="0.15">♩</text><text x="40" y="20" font-size="8" fill="%23D4A574" opacity="0.15">♪</text></svg>') repeat;
	}

	.hamburger {
		display: flex;
	}

	.nav-links {
		position: absolute;
		top: 100%;
		left: 0;
		width: 100%;
		background: var(--white);
		flex-direction: column;
		gap: 0;
		box-shadow: 0 4px 10px rgba(0,0,0,0.1);
		max-height: 0;
		overflow: hidden;
		transition: max-height 0.3s ease;
	}

	.nav-links.active {
		max-height: 300px;
	}

	.nav-links li {
		width: 100%;
	}

	.nav-links a {
		display: block;
		padding: 15px 20px;
		border-bottom: 1px solid #f0f0f0;
	}

	.hero h1 {
		font-size: 1.9rem;
	}

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


	.piano-graphic {
		padding: 5px;
		overflow: hidden;
		max-width: 100%;
	}

	.piano-keys {
		transform: scale(0.8);
		transform-origin: center center;
		width: fit-content;
		margin: 0 auto;
	}

	.section-header h2 {
		font-size: 2rem;
	}
	.section-header p {
		text-align: justify;
	}


	.container {
		padding: 0 15px;
	}.section-header h2 {
		 text-align: left; /* override on mobile */
	 }
	.form-header {
		font-size: 1.1rem;
		font-weight: bold;
		text-align: left;
	}
}

/* Add mobile-specific centering for specified titles and subtitles */
@media (max-width: 768px) {
    /* Center "About Our Academy" title on mobile */
    .about .section-header h2 {
        text-align: center;
    }

    /* Center "Meet Anastasiya" title and subtitle on mobile */
    .founder .section-header h2,
    .founder .section-header p {
        text-align: center;
    }

    /* Center "Piano Lessons" title on mobile */
    .services .section-header h2 {
        text-align: center;
    }
}

/* Smooth scrolling */
html {
	scroll-behavior: smooth;
}

/* Fade-in animation for sections */
@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(30px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.about, .services, .founder, .contact {
	animation: fadeInUp 0.8s ease-out;
}

/* Stagger animations for service cards */
.service-card {
	animation: fadeInUp 0.6s ease-out backwards;
}

.service-card:nth-child(1) { animation-delay: 0.1s; }
.service-card:nth-child(2) { animation-delay: 0.2s; }
.service-card:nth-child(3) { animation-delay: 0.3s; }
.service-card:nth-child(4) { animation-delay: 0.4s; }
.service-card:nth-child(5) { animation-delay: 0.5s; }
.service-card:nth-child(6) { animation-delay: 0.6s; }

/* Piano key interactions */
.piano-keys .key {
	cursor: pointer;
	transition: transform 0.1s ease;
}

.piano-keys .key:active {
	transform: translateY(2px);
}

.note {
	position: absolute;
	font-size: 24px;
	pointer-events: none;
	animation: floatUp 1.4s ease-out forwards;
}

@keyframes floatUp {
	0% { transform: translateY(0); opacity: 1; }
	100% { transform: translateY(-100px); opacity: 0; }
}

/* Video styles */
.main-video {
	width: 100%;
	max-width: 400px;
	max-height: 50vh;
	border-radius: 12px;
	display: block;
	margin: 40px auto 0;
	object-fit: contain;
	cursor: pointer;
}

.video-caption {
	text-align: center;
	color: var(--text-light);
	font-size: 0.95rem;
	margin-top: 10px;
}

.piano-subtitle {
	color: var(--primary-gold);
	font-style: italic;
	text-align: center;
}

.piano-instruction {
	color: var(--text-light);
	font-size: 0.9rem;
	margin-top: 10px;
	text-align: center;
}

/* Founder section styles */
.founder-portrait {
	text-align: center;
	margin-bottom: 25px;
}

.founder-portrait img {
	width: 200px;
	height: 200px;
	border-radius: 50%;
	object-fit: cover;
	object-position: center -110px;
	transform: scale(1.1);
	border: 4px solid var(--primary-gold);
	box-shadow: 0 10px 30px rgba(212, 165, 116, 0.3);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.founder-portrait img:hover {
	transform: scale(1.15);
	box-shadow: 0 15px 40px rgba(212, 165, 116, 0.4);
}

@media (min-width: 769px) {
	.founder-portrait img {
		width: 250px;
		height: 250px;
		transform: scale(1.2);
		border: 5px solid var(--primary-gold);
		object-position: center -130px;
	}

	.founder-portrait img:hover {
		transform: scale(1.25);
	}
}

.founder-content {
	max-width: 900px;
	margin: 0 auto;
	padding: 35px;
	background: var(--cream);
	border-radius: 20px;
	box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

@media (min-width: 769px) {
	.founder-content {
		padding: 40px;
	}
}

.founder-quote {
	font-size: 1.3rem;
	color: var(--text-dark);
	line-height: 2;
	margin-bottom: 2rem;
}

.founder-signature {
	font-style: italic;
	color: var(--primary-gold);
	font-size: 1.2rem;
	font-weight: 600;
}

/* Contact form styles */
.contact-layout {
	display: grid;
	grid-template-columns: 1fr;
	gap: 30px;
	max-width: 1200px;
	margin: 0 auto;
}

@media (min-width: 769px) {
	.contact-layout {
		grid-template-columns: 1.2fr 1fr;
		align-items: start;
	}
}

.contact-form-container {
	margin: 0;
}

.contact-form {
	background: var(--white);
	padding: 35px;
	border-radius: 20px;
	box-shadow: 0 10px 40px rgba(0,0,0,0.15);
	border: 1px solid rgba(212, 165, 116, 0.1);
}

@media (min-width: 769px) {
	.contact-form {
		padding: 40px;
	}
}

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

.form-label {
	display: block;
	margin-bottom: 8px;
	color: var(--text-dark);
	font-weight: 600;
	font-size: 1rem;
}

.form-input {
	width: 100%;
	padding: 16px;
	border: 2px solid #e0e0e0;
	border-radius: 10px;
	font-size: 1rem;
	font-family: 'Roboto', sans-serif;
	transition: all 0.3s ease;
	min-height: 52px;
	background: var(--white);
}

.form-input:focus {
	outline: none;
	border-color: var(--primary-gold);
	box-shadow: 0 0 0 3px rgba(212, 165, 116, 0.1);
	background: #fffef9;
}

.form-input::placeholder {
	color: #bbb;
}

.form-textarea {
	width: 100%;
	padding: 16px;
	border: 2px solid #e0e0e0;
	border-radius: 10px;
	font-size: 1rem;
	font-family: 'Roboto', sans-serif;
	resize: vertical;
	transition: all 0.3s ease;
	min-height: 120px;
	background: var(--white);
}

.form-textarea:focus {
	outline: none;
	border-color: var(--primary-gold);
	box-shadow: 0 0 0 3px rgba(212, 165, 116, 0.1);
	background: #fffef9;
}

.form-textarea::placeholder {
	color: #bbb;
}

.form-submit {
	width: 100%;
	margin: 0;
}

.contact-icon {
	vertical-align: middle;
	margin-right: 8px;
	fill: white;
}

.instagram-link {
	color: var(--primary-gold);
	text-decoration: none;
	transition: all 0.3s ease;
	display: inline-block;
}

.instagram-link:hover {
	color: #e8c598;
	transform: translateX(3px);
}

.contact-note {
	text-align: left;
	font-size: 1.1rem;
}

.contact-footer {
	margin-top: 40px;
}

.contact-footer-text {
	color: var(--primary-gold);
	font-style: italic;
	text-align: center;
	margin-top: 20px;
}
