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

html {
	scroll-behavior: smooth;
}

body {
	font-family: 'Inter', sans-serif;
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

/* CSS Variables for Light Theme */
:root {
	--background: 216 19% 9%;
	--foreground: 216 19% 88%;
	--muted: 216 19% 13%;
	--muted-foreground: 216 19% 65%;
	--card: 216 19% 12%;
	--card-foreground: 216 19% 88%;
	--border: 216 19% 17%;
	--primary: 217 91% 60%;
	--primary-foreground: 216 19% 9%;
	--secondary: 216 19% 15%;
	--secondary-foreground: 216 19% 88%;
	--accent: 216 19% 14%;
	--accent-foreground: 216 19% 88%;
	--destructive: 0 84% 60%;
	--destructive-foreground: 216 19% 9%;
	--ring: 217 91% 60%;
	--radius: 0.5rem;
}

/* Light Theme Variables */
body:not(.dark) {
	--background: 0 0% 98%;
	--foreground: 216 19% 16%;
	--muted: 0 0% 95%;
	--muted-foreground: 216 19% 45%;
	--card: 0 0% 100%;
	--card-foreground: 216 19% 16%;
	--border: 0 0% 90%;
	--primary: 217 91% 50%;
	--primary-foreground: 0 0% 98%;
	--secondary: 0 0% 93%;
	--secondary-foreground: 216 19% 16%;
	--accent: 0 0% 94%;
	--accent-foreground: 216 19% 16%;
	--destructive: 0 84% 60%;
	--destructive-foreground: 0 0% 98%;
	--ring: 217 91% 50%;
}

body {
	background: hsl(var(--background));
	color: hsl(var(--foreground));
	transition: background-color 0.3s ease, color 0.3s ease;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
	font-weight: 600;
	line-height: 1.2;
}

.text-primary {
	color: hsl(var(--primary));
}

.text-muted {
	color: hsl(var(--muted-foreground));
}

/* Layout */
.container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 1rem;
}

@media (min-width: 640px) {
	.container {
		padding: 0 1.5rem;
	}
}

@media (min-width: 1024px) {
	.container {
		padding: 0 2rem;
	}
}

/* Header */
.header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 50;
	transition: all 0.3s ease;
}

.header.scrolled {
	background: hsl(var(--background) / 0.8);
	backdrop-filter: blur(10px);
	border-bottom: 1px solid hsl(var(--border));
}

.header-content {
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 4rem;
}

.logo-wrapper {
	display: flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
}
.logo {
	font-size: 1.25rem;
	font-weight: 700;
	color: hsl(var(--primary));
}
.logo img {
	max-height: 50px;
}
.logo-text {
	display: flex;
	flex-direction: column;
	font-size: 1.25rem;
	line-height: 1;
	letter-spacing: 0.05em;
	font-weight: 600;
	margin-left: 0.5rem;
}

.nav-desktop {
	display: none;
	gap: 2rem;
}

@media (min-width: 768px) {
	.nav-desktop {
		display: flex;
	}
}

.nav-link {
	color: hsl(var(--muted-foreground));
	text-decoration: none;
	padding: 0.5rem 0.75rem;
	border-radius: var(--radius);
	transition: all 0.3s ease;
	position: relative;
}

.nav-link:hover {
	color: hsl(var(--foreground));
	background: hsl(var(--accent));
}

.header-actions {
	display: flex;
	align-items: center;
	gap: 1rem;
}

.mobile-only {
	display: block;
}

@media (min-width: 768px) {
	.mobile-only {
		display: none !important;
	}
}

/* Mobile Navigation */
.nav-mobile {
	display: none;
	flex-direction: column;
	gap: 0.5rem;
	padding: 1rem 0;
	background: hsl(var(--card));
	border-top: 1px solid hsl(var(--border));
	animation: slideDown 0.3s ease;
}

.nav-mobile.active {
	display: flex;
}

.nav-mobile .nav-link {
	padding: 0.75rem 1rem;
	text-align: left;
}

/* Buttons */
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	padding: 0.5rem 1rem;
	border-radius: var(--radius);
	font-size: 0.875rem;
	font-weight: 500;
	text-decoration: none;
	border: none;
	cursor: pointer;
	transition: all 0.3s ease;
	white-space: nowrap;
}

.btn:disabled {
	opacity: 0.5;
	cursor: not-allowed;
}

.btn-primary {
	background: hsl(var(--primary));
	color: hsl(var(--primary-foreground));
	border: 1px solid hsl(var(--primary));
}

.btn-primary:hover {
	background: hsl(var(--primary) / 0.9);
}

.btn-outline {
	background: transparent;
	color: hsl(var(--foreground));
	border: 1px solid hsl(var(--border));
}

.btn-outline:hover {
	background: hsl(var(--accent));
}

.btn-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 2.5rem;
	height: 2.5rem;
	border-radius: var(--radius);
	background: transparent;
	border: none;
	color: hsl(var(--muted-foreground));
	cursor: pointer;
	transition: all 0.3s ease;
}

.btn-icon:hover {
	color: hsl(var(--foreground));
	background: hsl(var(--accent));
}

.btn-full {
	width: 100%;
}

.icon-sun {
	display: none;
}
.dark .icon-sun {
	display: inline;
}
.dark .icon-moon {
	display: none;
}

/* Hero Section */
.hero {
	min-height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 1rem;
	background: linear-gradient(
		to bottom right,
		hsl(var(--background)),
		hsl(var(--background)),
		hsl(var(--muted) / 0.2)
	);
	position: relative;
}

.hero-content {
	max-width: 64rem;
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 2rem;
}

.hero-avatar {
	margin-bottom: 2rem;
}

.hero-avatar img {
	width: 12rem;
	height: 12rem;
	border-radius: 50%;
	border: 4px solid hsl(var(--primary) / 0.2);
	object-fit: cover;
}

.hero-title {
	font-size: 2.5rem;
	font-weight: 700;
	margin-bottom: 1rem;
}

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

.hero-subtitle {
	font-size: 1.5rem;
	color: hsl(var(--muted-foreground));
	font-family: 'JetBrains Mono', monospace;
	min-height: 3rem;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.25rem;
}

@media (min-width: 768px) {
	.hero-subtitle {
		font-size: 1.875rem;
	}
}

.cursor {
	animation: blink 1s infinite;
}

@keyframes blink {
	0%,
	50% {
		opacity: 1;
	}
	51%,
	100% {
		opacity: 0;
	}
}

.hero-description {
	font-size: 1.125rem;
	color: hsl(var(--muted-foreground));
	max-width: 32rem;
	line-height: 1.6;
}

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

.hero-actions {
	display: flex;
	flex-direction: column;
	gap: 1rem;
	width: 100%;
	max-width: 20rem;
}

@media (min-width: 640px) {
	.hero-actions {
		flex-direction: row;
		justify-content: center;
		max-width: none;
	}
}

.hero-actions .btn {
	padding: 0.75rem 2rem;
	font-size: 1.125rem;
}

.hero-social {
	display: flex;
	gap: 1.5rem;
	padding-top: 2rem;
}

.contact-form-container {
	display: flex;
	align-items: stretch;
	flex: 1;
}

.scroll-indicator {
	position: absolute;
	bottom: 2rem;
	left: 50%;
	transform: translateX(-50%);
	animation: bounce 2s infinite;
	animation-timing-function: ease-in-out;
}

@keyframes bounce {
	0%,
	20%,
	53%,
	80%,
	100% {
		transform: translateX(-50%) translateY(0);
	}
	40%,
	43% {
		transform: translateX(-50%) translateY(-1rem);
	}
	70% {
		transform: translateX(-50%) translateY(-0.5rem);
	}
}

/* Sections */
section {
	padding: 5rem 0;
}

.section-header {
	text-align: center;
	margin-bottom: 4rem;
}

.section-title {
	font-size: 2rem;
	font-weight: 700;
	margin-bottom: 1rem;
}

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

.section-description {
	font-size: 1.125rem;
	color: hsl(var(--muted-foreground));
	max-width: 32rem;
	margin: 0 auto;
}

/* Projects Section */
.projects {
	background: hsl(var(--muted) / 0.3);
}

.projects-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 2rem;
	margin-bottom: 3rem;
}

@media (min-width: 768px) {
	.projects-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

.project-card {
	display: flex;
	flex-direction: column;
	background: hsl(var(--card));
	border: 1px solid hsl(var(--border));
	border-radius: var(--radius);
	overflow: hidden;
	transition: all 0.3s ease;
}

.project-card:hover {
	transform: translateY(-0.25rem);
	box-shadow: 0 10px 25px hsl(var(--foreground) / 0.1);
}

.project-image {
	position: relative;
	overflow: hidden;
}

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

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

.project-badge {
	position: absolute;
	top: 1rem;
	left: 1rem;
	background: hsl(var(--primary));
	color: hsl(var(--primary-foreground));
	padding: 0.25rem 0.75rem;
	border-radius: calc(var(--radius) / 2);
	font-size: 0.75rem;
	font-weight: 500;
}

.project-content {
	padding: 1.5rem;
	flex: 1;
	display: flex;
	flex-direction: column;
}

.project-title {
	font-size: 1.25rem;
	font-weight: 700;
	margin-bottom: 0.5rem;
}

.project-description {
	color: hsl(var(--muted-foreground));
	margin-bottom: 1rem;
	line-height: 1.5;
}

.project-tech {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
	margin-bottom: 1.5rem;
}

.tech-badge {
	background: hsl(var(--secondary));
	color: hsl(var(--secondary-foreground));
	padding: 0.25rem 0.75rem;
	border-radius: calc(var(--radius) / 2);
	font-size: 0.75rem;
	font-weight: 500;
}

.project-actions {
	display: flex;
	gap: 1rem;
	margin-top: auto;
}

.project-actions .btn {
	flex: 1;
}

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

/* Skills Section */
.skills-categories {
	display: flex;
	flex-direction: column;
	gap: 3rem;
	margin-bottom: 4rem;
}

.skill-category {
	background: hsl(var(--card));
	border: 1px solid hsl(var(--border));
	border-radius: var(--radius);
	padding: 2rem;
}

.category-title {
	font-size: 1.5rem;
	font-weight: 600;
	text-align: center;
	margin-bottom: 2rem;
}

.skills-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1.5rem;
}

@media (min-width: 768px) {
	.skills-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (min-width: 1024px) {
	.skills-grid {
		grid-template-columns: repeat(3, 1fr);
	}
}

.skill-item {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
}

.skill-header {
	display: flex;
	align-items: center;
	gap: 0.75rem;
}

.skill-icon {
	font-size: 1.5rem;
}

.skill-name {
	font-weight: 500;
	flex: 1;
}

.skill-level {
	background: hsl(var(--accent));
	color: hsl(var(--accent-foreground));
	padding: 0.25rem 0.5rem;
	border-radius: calc(var(--radius) / 2);
	font-size: 0.75rem;
	font-weight: 500;
}

.skill-progress {
	background: hsl(var(--muted));
	height: 0.5rem;
	border-radius: calc(var(--radius) / 2);
	overflow: hidden;
}

.progress-bar {
	height: 100%;
	background: hsl(var(--primary));
	width: var(--progress);
	transition: width 1s ease;
	border-radius: calc(var(--radius) / 2);
}

.skills-note {
	background: hsl(var(--card));
	border: 1px solid hsl(var(--border));
	border-radius: var(--radius);
	padding: 2rem;
	text-align: center;
	max-width: 32rem;
	margin: 0 auto;
}

.skills-note h3 {
	font-size: 1.25rem;
	font-weight: 600;
	margin-bottom: 1rem;
}

.skills-note p {
	color: hsl(var(--muted-foreground));
}

/* About Section */
.about {
	background: hsl(var(--muted) / 0.3);
}

.about-content {
	display: grid;
	grid-template-columns: 1fr;
	gap: 3rem;
	margin-bottom: 4rem;
}

@media (min-width: 1024px) {
	.about-content {
		grid-template-columns: repeat(2, 1fr);
	}
}

.about-card {
	background: hsl(var(--card));
	border: 1px solid hsl(var(--border));
	border-radius: var(--radius);
	padding: 2rem;
}

.card-title {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	font-size: 1.5rem;
	font-weight: 600;
	margin-bottom: 1.5rem;
}

.card-title i {
	color: hsl(var(--primary));
}

.about-info {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
	margin-bottom: 1.5rem;
}

.info-item {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	color: hsl(var(--muted-foreground));
}

.about-card p {
	color: hsl(var(--foreground));
	line-height: 1.6;
	margin-bottom: 1rem;
}

.education-item {
	margin-bottom: 2rem;
}

.education-item h4 {
	font-size: 1.125rem;
	font-weight: 600;
	margin-bottom: 0.25rem;
}

.institution {
	color: hsl(var(--primary));
	font-weight: 500;
	margin-bottom: 0.25rem;
}

.period {
	font-size: 0.875rem;
	color: hsl(var(--muted-foreground));
	margin-bottom: 0.75rem;
}

.description {
	color: hsl(var(--muted-foreground));
	line-height: 1.5;
}

.certifications {
	margin-top: 2rem;
}

.certifications h4 {
	font-size: 1.125rem;
	font-weight: 600;
	margin-bottom: 1rem;
}

.cert-badges {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
}

.cert-badge {
	background: hsl(var(--accent));
	color: hsl(var(--accent-foreground));
	padding: 0.25rem 0.75rem;
	border-radius: calc(var(--radius) / 2);
	font-size: 0.75rem;
	font-weight: 500;
	border: 1px solid hsl(var(--border));
}

/* Experience Timeline */
.experience-timeline {
	background: hsl(var(--card));
	border: 1px solid hsl(var(--border));
	border-radius: var(--radius);
	padding: 2rem;
}

.timeline-title {
	font-size: 1.5rem;
	font-weight: 600;
	text-align: center;
	margin-bottom: 0.5rem;
}

.timeline-subtitle {
	color: hsl(var(--muted-foreground));
	text-align: center;
	margin-bottom: 2rem;
}

.timeline {
	position: relative;
}

.timeline::before {
	content: '';
	position: absolute;
	left: 0.75rem;
	top: 0;
	bottom: 0;
	width: 2px;
	background: hsl(var(--border));
}

.timeline-item {
	position: relative;
	padding-left: 2rem;
	margin-bottom: 2rem;
}

.timeline-item:last-child {
	margin-bottom: 0;
}

.timeline-marker {
	position: absolute;
	left: 0;
	top: 0;
	width: 1.5rem;
	height: 1.5rem;
	background: hsl(var(--primary));
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.timeline-marker::after {
	content: '';
	width: 0.5rem;
	height: 0.5rem;
	background: hsl(var(--primary-foreground));
	border-radius: 50%;
}

.timeline-content h4 {
	font-size: 1.25rem;
	font-weight: 600;
	margin-bottom: 0.25rem;
}

.company {
	color: hsl(var(--primary));
	font-weight: 500;
	margin-bottom: 0.25rem;
}

.timeline-content .period {
	font-size: 0.875rem;
	color: hsl(var(--muted-foreground));
	margin-bottom: 0.75rem;
}

.timeline-content .description {
	color: hsl(var(--muted-foreground));
	line-height: 1.5;
	margin-bottom: 1rem;
}

.tech-stack {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
}

/* Contact Section */
.contact-content {
	display: grid;
	grid-template-columns: 1fr;
	gap: 3rem;
	align-items: stretch;
}

@media (min-width: 1024px) {
	.contact-content {
		grid-template-columns: repeat(2, 1fr);
	}
}

.contact-info,
.contact-form-container {
	height: 100%;
}

.contact-info {
	display: flex;
	flex-direction: column;
	gap: 2rem;
	justify-content: space-between;
}

.contact-card {
	background: hsl(var(--card));
	border: 1px solid hsl(var(--border));
	border-radius: var(--radius);
	padding: 2rem;
	display: flex;
	flex-direction: column;
	height: 100%;
}

.card-subtitle {
	color: hsl(var(--muted-foreground));
	margin-bottom: 1.5rem;
}

.contact-methods {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.contact-method {
	display: flex;
	align-items: center;
	gap: 1rem;
	padding: 1rem;
	border-radius: var(--radius);
	text-decoration: none;
	color: inherit;
	transition: all 0.3s ease;
}

.contact-method:hover {
	background: hsl(var(--accent));
}

.method-icon {
	width: 3rem;
	height: 3rem;
	background: hsl(var(--primary) / 0.1);
	border-radius: var(--radius);
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s ease;
}

.contact-method:hover .method-icon {
	background: hsl(var(--primary) / 0.2);
}

.method-icon i {
	color: hsl(var(--primary));
}

.method-label {
	font-weight: 500;
	margin-bottom: 0.25rem;
}

.method-value {
	color: hsl(var(--muted-foreground));
}

/* Contact Form */
.contact-form {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
	flex: 1;
	min-height: 0;
}

.form-row {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1rem;
}

@media (min-width: 768px) {
	.form-row {
		grid-template-columns: repeat(2, 1fr);
	}
}

.form-field {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}

.form-field label {
	font-weight: 500;
	color: hsl(var(--foreground));
}

.form-field input,
.form-field textarea {
	padding: 0.75rem;
	border: 1px solid hsl(var(--border));
	border-radius: var(--radius);
	background: hsl(var(--background));
	color: hsl(var(--foreground));
	font-size: 0.875rem;
	transition: all 0.3s ease;
}

.form-field input:focus,
.form-field textarea:focus {
	outline: none;
	border-color: hsl(var(--ring));
	box-shadow: 0 0 0 2px hsl(var(--ring) / 0.2);
}

.form-field textarea {
	resize: vertical;
	min-height: 6rem;
	flex: 1;
	height: 100%;
}

.contact-form .form-field:last-of-type {
	flex: 1;
}

.contact-form button[type="submit"] {
	margin-top: auto;
	align-self: stretch;
}

.hp-field {
	position: absolute !important;
	left: -10000px !important;
	top: auto !important;
	width: 1px !important;
	height: 1px !important;
	overflow: hidden !important;
	white-space: nowrap !important;
}

/* Footer */
.footer {
	background: hsl(var(--card));
	border-top: 1px solid hsl(var(--border));
	margin-top: 5rem;
}

.footer-content {
	display: grid;
	grid-template-columns: 1fr;
	gap: 2rem;
	padding: 3rem 0;
}

@media (min-width: 768px) {
	.footer-content {
		grid-template-columns: repeat(3, 1fr);
	}
}

.footer-brand h3 {
	font-size: 1.5rem;
	font-weight: 700;
	color: hsl(var(--primary));
	margin-bottom: 1rem;
}

.footer-brand p {
	color: hsl(var(--muted-foreground));
	margin-bottom: 1rem;
}

.footer-links h4,
.footer-social h4 {
	font-size: 1.125rem;
	font-weight: 600;
	margin-bottom: 1rem;
}

.footer-nav {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}

.footer-nav a {
	color: hsl(var(--muted-foreground));
	text-decoration: none;
	padding: 0.5rem 0.5rem;
	border-radius: var(--radius);
	transition: all 0.3s ease;
}

.footer-nav a:hover {
	color: hsl(var(--foreground));
	background: hsl(var(--accent));
}

.social-links {
	display: flex;
	gap: 1rem;
	margin-bottom: 1rem;
}

.footer-social .btn-icon {
	border: 1px solid hsl(var(--border));
}

.footer-social p {
	color: hsl(var(--muted-foreground));
	font-size: 0.875rem;
}

.footer-bottom {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	padding: 2rem 0;
	border-top: 1px solid hsl(var(--border));
}

@media (min-width: 768px) {
	.footer-bottom {
		flex-direction: row;
	}
}

.footer-bottom p {
	color: hsl(var(--muted-foreground));
	font-size: 0.875rem;
}

.footer-made-with {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	color: hsl(var(--muted-foreground));
	font-size: 0.875rem;
}

/* Toast Notification */
.toast {
	position: fixed;
	top: 2rem;
	right: 2rem;
	z-index: 100;
	opacity: 0;
	transform: translateX(100%);
	transition: all 0.3s ease;
}

.toast.show {
	opacity: 1;
	transform: translateX(0);
}

.toast-content {
	background: hsl(var(--card));
	border: 1px solid hsl(var(--border));
	border-radius: var(--radius);
	padding: 1rem;
	display: flex;
	align-items: flex-start;
	gap: 0.75rem;
	max-width: 20rem;
	box-shadow: 0 10px 25px hsl(var(--foreground) / 0.1);
}

.toast-icon {
	color: #22c55e;
	flex-shrink: 0;
}

.toast-text {
	flex: 1;
}

.toast-title {
	font-weight: 600;
	margin-bottom: 0.25rem;
}

.toast-message {
	color: hsl(var(--muted-foreground));
	font-size: 0.875rem;
}

.toast-close {
	background: none;
	border: none;
	color: hsl(var(--muted-foreground));
	cursor: pointer;
	padding: 0;
	transition: color 0.3s ease;
}

.toast-close:hover {
	color: hsl(var(--foreground));
}

/* Animations */
@keyframes slideDown {
	from {
		opacity: 0;
		transform: translateY(-1rem);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes fadeIn {
	from {
		opacity: 0;
		transform: translateY(2rem);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* Scroll animations */
.animate-on-scroll {
	opacity: 0;
	transform: translateY(2rem);
	transition: all 0.6s ease;
}

.animate-on-scroll.in-view {
	opacity: 1;
	transform: translateY(0);
}

/* Loading states */
.btn.loading {
	position: relative;
	color: transparent;
}

.btn.loading::after {
	content: '';
	position: absolute;
	width: 1rem;
	height: 1rem;
	border: 2px solid transparent;
	border-top: 2px solid currentColor;
	border-radius: 50%;
	animation: spin 1s linear infinite;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

@keyframes spin {
	to {
		transform: translate(-50%, -50%) rotate(360deg);
	}
}

/* Responsive adjustments */
@media (max-width: 640px) {
	.hero-title {
		font-size: 2rem;
	}

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

	.section-title {
		font-size: 1.75rem;
	}

	.project-actions {
		flex-direction: column;
	}

	.form-row {
		grid-template-columns: 1fr;
	}
}
