Changed around line 1
+ :root {
+ --primary: #2563eb;
+ --primary-dark: #1d4ed8;
+ --text: #1f2937;
+ --text-light: #6b7280;
+ --background: #f9fafb;
+ --white: #ffffff;
+ --gray: #e5e7eb;
+ --gray-dark: #d1d5db;
+ }
+
+ * {
+ margin: 0;
+ padding: 0;
+ box-sizing: border-box;
+ }
+
+ body {
+ font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
+ line-height: 1.6;
+ color: var(--text);
+ background-color: var(--background);
+ scroll-behavior: smooth;
+ }
+
+ header {
+ min-height: 100vh;
+ display: flex;
+ flex-direction: column;
+ }
+
+ nav {
+ display: flex;
+ justify-content: space-between;
+ align-items: center;
+ padding: 1.5rem 5%;
+ position: fixed;
+ width: 100%;
+ background-color: var(--white);
+ box-shadow: 0 1px 3px rgba(0,0,0,0.1);
+ z-index: 100;
+ }
+
+ .logo {
+ font-weight: 700;
+ font-size: 1.5rem;
+ color: var(--primary);
+ }
+
+ .nav-links {
+ display: flex;
+ gap: 2rem;
+ }
+
+ .nav-links a {
+ text-decoration: none;
+ color: var(--text);
+ font-weight: 500;
+ transition: color 0.3s;
+ }
+
+ .nav-links a:hover {
+ color: var(--primary);
+ }
+
+ .hero-content {
+ flex: 1;
+ display: flex;
+ flex-direction: column;
+ justify-content: center;
+ align-items: center;
+ text-align: center;
+ padding: 0 5%;
+ margin-top: -5rem;
+ }
+
+ .hero-content h1 {
+ font-size: 3.5rem;
+ margin-bottom: 1rem;
+ background: linear-gradient(90deg, var(--primary), #7c3aed);
+ -webkit-background-clip: text;
+ background-clip: text;
+ color: transparent;
+ }
+
+ .hero-content p {
+ font-size: 1.25rem;
+ color: var(--text-light);
+ max-width: 600px;
+ margin-bottom: 2rem;
+ }
+
+ section {
+ padding: 6rem 5%;
+ }
+
+ h2 {
+ font-size: 2.5rem;
+ margin-bottom: 3rem;
+ text-align: center;
+ position: relative;
+ }
+
+ h2::after {
+ content: '';
+ position: absolute;
+ bottom: -0.75rem;
+ left: 50%;
+ transform: translateX(-50%);
+ width: 80px;
+ height: 4px;
+ background: var(--primary);
+ border-radius: 2px;
+ }
+
+ .about-content {
+ display: flex;
+ gap: 4rem;
+ max-width: 1200px;
+ margin: 0 auto;
+ }
+
+ .about-text {
+ flex: 1;
+ }
+
+ .about-text p {
+ margin-bottom: 1.5rem;
+ font-size: 1.1rem;
+ }
+
+ .skills {
+ flex: 0 0 300px;
+ }
+
+ .skill-tags {
+ display: flex;
+ flex-wrap: wrap;
+ gap: 0.75rem;
+ margin-top: 1rem;
+ }
+
+ .skill-tags span {
+ background-color: var(--gray);
+ padding: 0.5rem 1rem;
+ border-radius: 9999px;
+ font-size: 0.9rem;
+ }
+
+ .work {
+ background-color: var(--white);
+ }
+
+ .project-grid {
+ display: grid;
+ grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
+ gap: 2rem;
+ max-width: 1200px;
+ margin: 0 auto;
+ }
+
+ .project-card {
+ background-color: var(--white);
+ border-radius: 0.5rem;
+ overflow: hidden;
+ box-shadow: 0 4px 6px rgba(0,0,0,0.05);
+ transition: transform 0.3s, box-shadow 0.3s;
+ }
+
+ .project-card:hover {
+ transform: translateY(-5px);
+ box-shadow: 0 10px 15px rgba(0,0,0,0.1);
+ }
+
+ .project-image {
+ height: 200px;
+ background-color: var(--gray);
+ background: linear-gradient(45deg, #e0e7ff, #c7d2fe);
+ }
+
+ .project-card h3 {
+ margin: 1.5rem 1.5rem 0.5rem;
+ }
+
+ .project-card p {
+ margin: 0 1.5rem 1.5rem;
+ color: var(--text-light);
+ }
+
+ .contact-content {
+ max-width: 800px;
+ margin: 0 auto;
+ text-align: center;
+ }
+
+ .contact-form {
+ max-width: 600px;
+ margin: 3rem auto 0;
+ }
+
+ .form-group {
+ margin-bottom: 1.5rem;
+ }
+
+ .form-group label {
+ display: block;
+ margin-bottom: 0.5rem;
+ font-weight: 500;
+ }
+
+ .form-group input,
+ .form-group textarea {
+ width: 100%;
+ padding: 0.75rem;
+ border: 1px solid var(--gray-dark);
+ border-radius: 0.375rem;
+ font-family: inherit;
+ }
+
+ .form-group textarea {
+ min-height: 150px;
+ }
+
+ footer {
+ background-color: var(--white);
+ padding: 3rem 5%;
+ text-align: center;
+ }
+
+ .footer-content {
+ max-width: 1200px;
+ margin: 0 auto;
+ }
+
+ .social-links {
+ display: flex;
+ justify-content: center;
+ gap: 1.5rem;
+ margin-bottom: 1.5rem;
+ }
+
+ .social-links a {
+ color: var(--text);
+ text-decoration: none;
+ transition: color 0.3s;
+ }
+
+ .social-links a:hover {
+ color: var(--primary);
+ }
+
+ .primary-button {
+ display: inline-block;
+ padding: 0.75rem 1.5rem;
+ background-color: var(--primary);
+ color: var(--white);
+ text-decoration: none;
+ border-radius: 0.375rem;
+ font-weight: 500;
+ transition: background-color 0.3s;
+ }
+
+ .primary-button:hover {
+ background-color: var(--primary-dark);
+ }
+
+ .secondary-button {
+ display: inline-block;
+ padding: 0.75rem 1.5rem;
+ border: 1px solid var(--primary);
+ color: var(--primary);
+ text-decoration: none;
+ border-radius: 0.375rem;
+ font-weight: 500;
+ transition: all 0.3s;
+ margin: 0 1.5rem 1.5rem;
+ }
+
+ .secondary-button:hover {
+ background-color: var(--primary);
+ color: var(--white);
+ }
+
+ @media (max-width: 768px) {
+ .hero-content h1 {
+ font-size: 2.5rem;
+ }
+
+ .about-content {
+ flex-direction: column;
+ }
+
+ .skills {
+ flex: 1;
+ }
+
+ .nav-links {
+ gap: 1rem;
+ }
+ }
+
+ @media (max-width: 480px) {
+ .hero-content h1 {
+ font-size: 2rem;
+ }
+
+ .hero-content p {
+ font-size: 1rem;
+ }
+
+ h2 {
+ font-size: 2rem;
+ }
+
+ .nav-links {
+ display: none;
+ }
+ }