/* Reset and Base Styles */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
	line-height: 1.6;
	color: #333;
	background-color: #fff;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
	font-weight: 700;
	line-height: 1.2;
	margin-bottom: 1rem;
}

h1 {
	font-size: 2.5rem;
}

h2 {
	font-size: 2rem;
}

p {
	margin-bottom: 1rem;
}

a {
	color: #0073aa;
	text-decoration: none;
	transition: color 0.3s ease;
}

a:hover {
	color: #005177;
}

/* Header */
.site-header {
	background-color: #1a1a1a;
	color: #fff;
	padding: 1rem 0;
	position: sticky;
	top: 0;
	z-index: 1000;
	box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.site-header-main {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
}

.site-branding {
	flex: 1;
	min-width: 200px;
}

.site-title {
	font-size: 1.5rem;
	font-weight: 700;
	margin-bottom: 0.5rem;
}

.site-title a {
	color: #fff;
}

.site-title a:hover {
	color: #ccc;
}

.site-header .site-description {
	font-size: 0.9rem;
	color: #ccc;
	margin-top: 0.25rem;
}

.entry-content .site-description {
	font-size: 1.1rem;
	color: #666;
	margin-bottom: 2rem;
	font-style: italic;
}

.menu-toggle {
	display: none;
	background: transparent;
	border: 2px solid #fff;
	color: #fff;
	padding: 0.5rem 1rem;
	cursor: pointer;
	font-size: 1rem;
	border-radius: 4px;
}

.menu-toggle:hover {
	background: #fff;
	color: #1a1a1a;
}

.site-header-menu {
	display: flex;
	gap: 2rem;
	align-items: center;
}

/* Navigation */
.main-navigation ul,
.social-navigation ul {
	list-style: none;
	display: flex;
	gap: 1.5rem;
	align-items: center;
}

.main-navigation a,
.social-navigation a {
	color: #fff;
	padding: 0.5rem 0;
	display: block;
}

.main-navigation a:hover,
.social-navigation a:hover {
	color: #ccc;
}

.social-links-menu a {
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	background-color: rgba(255,255,255,0.1);
	transition: background-color 0.3s ease;
	color: #fff;
}

.social-links-menu a:hover {
	background-color: rgba(255,255,255,0.2);
}

.social-links-menu a svg {
	width: 24px;
	height: 24px;
	fill: currentColor;
}

.screen-reader-text {
	position: absolute;
	left: -9999px;
	width: 1px;
	height: 1px;
	overflow: hidden;
}

/* Content */
.site-content {
	max-width: 1200px;
	margin: 0 auto;
	padding: 2rem 20px;
}

.site-main {
	min-height: 60vh;
}

.entry-content {
	background: #fff;
}

.entry-title {
	font-size: 2.5rem;
	margin-bottom: 2rem;
	color: #1a1a1a;
}

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

/* Images */
.image-center,
.audio-center {
	text-align: center;
	margin: 2rem 0;
}

.image-center img,
.audio-center img {
	max-width: 100%;
	height: auto;
}

.main-image {
	max-width: 720px;
	width: 100%;
	height: auto;
}

.demo-image {
	max-width: 338px;
	width: 100%;
	height: auto;
}

.headshot {
	max-width: 300px;
	width: 100%;
	height: auto;
	border-radius: 8px;
}

.character-image {
	max-width: 300px;
	width: 100%;
	height: auto;
	border-radius: 8px;
}

.smiling-image {
	max-width: 100%;
	width: 100%;
	max-width: 720px;
	height: auto;
}

/* Media Text Layout */
.media-text {
	display: grid;
	grid-template-columns: 30% auto;
	gap: 2rem;
	align-items: center;
	margin: 2rem 0;
}

.media-text-right {
	grid-template-columns: auto 21%;
}

.media-text-right .media-text-content {
	order: 1;
}

.media-text-right .media-text-media {
	order: 2;
}

.media-text-media {
	display: flex;
	justify-content: center;
	align-items: center;
}

.media-text-content {
	display: flex;
	flex-direction: column;
	justify-content: center;
}

/* Audio */
audio {
	width: 100%;
	max-width: 600px;
	margin: 1rem 0;
}

audio::-webkit-media-controls-panel {
	background-color: #f5f5f5;
}

figcaption {
	margin-top: 0.5rem;
	font-size: 0.9rem;
	color: #666;
}

/* Separator */
hr {
	border: none;
	border-top: 1px solid #ddd;
	margin: 2rem 0;
}

/* Contact Form */
.contact-info {
	background: #f9f9f9;
	padding: 1.5rem;
	border-radius: 8px;
	margin: 2rem 0;
}

.contact-form {
	max-width: 600px;
	margin: 2rem auto;
	padding: 2rem;
	background: #f9f9f9;
	border-radius: 8px;
}

.form-group {
	margin-bottom: 1.5rem;
}

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

.form-group input,
.form-group textarea {
	width: 100%;
	padding: 0.75rem;
	border: 1px solid #ddd;
	border-radius: 4px;
	font-size: 1rem;
	font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
	outline: none;
	border-color: #0073aa;
	box-shadow: 0 0 0 2px rgba(0,115,170,0.1);
}

.submit-button {
	background-color: #0073aa;
	color: #fff;
	padding: 0.75rem 2rem;
	border: none;
	border-radius: 4px;
	font-size: 1rem;
	font-weight: 600;
	cursor: pointer;
	transition: background-color 0.3s ease;
}

.submit-button:hover {
	background-color: #005177;
}

/* Lists */
.studio-list {
	margin: 1.5rem 0;
	padding-left: 2rem;
}

.studio-list li {
	margin-bottom: 0.75rem;
}

.studio-list ul {
	margin-top: 0.5rem;
	margin-left: 1.5rem;
}

/* Demos Group */
.demos-group {
	margin: 2rem 0;
}

.small-text {
	font-size: 0.875rem;
	color: #666;
	font-style: italic;
}

/* Footer */
.site-footer {
	background-color: #1a1a1a;
	color: #fff;
	padding: 2rem 0;
	margin-top: 4rem;
}

.site-footer .main-navigation,
.site-footer .social-navigation {
	margin-bottom: 1rem;
}

.site-footer .main-navigation ul,
.site-footer .social-navigation ul {
	justify-content: center;
	flex-wrap: wrap;
}

.site-info {
	text-align: center;
	margin-top: 2rem;
	padding-top: 2rem;
	border-top: 1px solid #333;
}

.site-footer .site-title a {
	color: #fff;
}

.site-footer .site-title a:hover {
	color: #ccc;
}

.site-credit {
	text-align: center;
	margin-top: 1.5rem;
	padding-top: 1.5rem;
	border-top: 1px solid #333;
	font-size: 0.875rem;
	color: #999;
}

.site-credit p {
	margin: 0;
}

.site-credit a {
	color: #ccc;
	text-decoration: none;
}

.site-credit a:hover {
	color: #fff;
}

/* Responsive Design */
@media (max-width: 768px) {
	.menu-toggle {
		display: block;
	}
	
	.site-header-menu {
		display: none;
		width: 100%;
		flex-direction: column;
		align-items: flex-start;
		margin-top: 1rem;
		padding-top: 1rem;
		border-top: 1px solid #333;
	}
	
	.site-header-menu.menu-open {
		display: flex;
	}
	
	.main-navigation ul,
	.social-navigation ul {
		flex-direction: column;
		width: 100%;
		gap: 0.5rem;
	}
	
	.media-text,
	.media-text-right {
		grid-template-columns: 1fr;
	}
	
	.media-text-right .media-text-content,
	.media-text-right .media-text-media {
		order: unset;
	}
	
	.entry-title {
		font-size: 2rem;
	}
	
	h2 {
		font-size: 1.5rem;
	}
	
	.site-content {
		padding: 1rem 15px;
	}
	
	.contact-form {
		padding: 1.5rem;
	}
}

@media (max-width: 480px) {
	.site-title {
		font-size: 1.25rem;
	}
	
	.site-description {
		font-size: 0.8rem;
	}
	
	.entry-title {
		font-size: 1.75rem;
	}
	
	h2 {
		font-size: 1.25rem;
	}
}
