Changed around line 1
+ :root {
+ --primary: #2d3436;
+ --secondary: #00b894;
+ --bg: #ffffff;
+ --text: #2d3436;
+ --transition: all 0.3s ease;
+ }
+
+ * {
+ margin: 0;
+ padding: 0;
+ box-sizing: border-box;
+ }
+
+ html {
+ scroll-behavior: smooth;
+ }
+
+ body {
+ font-family: system-ui, -apple-system, sans-serif;
+ line-height: 1.6;
+ color: var(--text);
+ background: var(--bg);
+ }
+
+ .header {
+ position: fixed;
+ width: 100%;
+ top: 0;
+ z-index: 1000;
+ background: rgba(255, 255, 255, 0.95);
+ backdrop-filter: blur(10px);
+ box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
+ }
+
+ .nav {
+ display: flex;
+ justify-content: space-between;
+ align-items: center;
+ padding: 1rem 5%;
+ max-width: 1200px;
+ margin: 0 auto;
+ }
+
+ .logo {
+ font-size: 1.5rem;
+ font-weight: bold;
+ color: var(--primary);
+ }
+
+ .nav-list {
+ display: flex;
+ list-style: none;
+ gap: 2rem;
+ }
+
+ .nav-link {
+ text-decoration: none;
+ color: var(--primary);
+ transition: var(--transition);
+ }
+
+ .nav-link:hover {
+ color: var(--secondary);
+ }
+
+ .hero {
+ height: 100vh;
+ display: flex;
+ flex-direction: column;
+ justify-content: center;
+ align-items: center;
+ text-align: center;
+ padding: 2rem;
+ background: linear-gradient(45deg, #f6f6f6 0%, #ffffff 100%);
+ }
+
+ .title {
+ font-size: 4rem;
+ margin-bottom: 1rem;
+ }
+
+ .highlight {
+ color: var(--secondary);
+ }
+
+ .subtitle {
+ font-size: 1.5rem;
+ opacity: 0.8;
+ }
+
+ .scroll-indicator {
+ position: absolute;
+ bottom: 2rem;
+ width: 30px;
+ height: 50px;
+ border: 2px solid var(--primary);
+ border-radius: 15px;
+ }
+
+ .scroll-indicator::before {
+ content: '';
+ position: absolute;
+ top: 8px;
+ left: 50%;
+ width: 6px;
+ height: 6px;
+ background: var(--primary);
+ border-radius: 50%;
+ transform: translateX(-50%);
+ animation: scroll 2s infinite;
+ }
+
+ @keyframes scroll {
+ 0% { transform: translate(-50%, 0); opacity: 1; }
+ 100% { transform: translate(-50%, 20px); opacity: 0; }
+ }
+
+ section {
+ padding: 5rem 5%;
+ max-width: 1200px;
+ margin: 0 auto;
+ }
+
+ .portfolio-grid {
+ display: grid;
+ grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
+ gap: 2rem;
+ margin-top: 2rem;
+ }
+
+ .portfolio-item {
+ position: relative;
+ overflow: hidden;
+ border-radius: 10px;
+ box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
+ transition: var(--transition);
+ }
+
+ .portfolio-item:hover {
+ transform: translateY(-5px);
+ }
+
+ .portfolio-image {
+ height: 250px;
+ background: #f0f0f0;
+ position: relative;
+ }
+
+ .portfolio-image::before {
+ content: attr(data-title);
+ position: absolute;
+ inset: 0;
+ background: rgba(0, 184, 148, 0.9);
+ color: white;
+ display: flex;
+ justify-content: center;
+ align-items: center;
+ font-size: 1.5rem;
+ opacity: 0;
+ transition: var(--transition);
+ }
+
+ .portfolio-item:hover .portfolio-image::before {
+ opacity: 1;
+ }
+
+ .skills {
+ display: flex;
+ flex-wrap: wrap;
+ gap: 1rem;
+ margin-top: 2rem;
+ }
+
+ .skill {
+ padding: 0.5rem 1rem;
+ background: var(--secondary);
+ color: white;
+ border-radius: 20px;
+ font-size: 0.9rem;
+ }
+
+ .contact-form {
+ max-width: 600px;
+ margin: 2rem auto;
+ }
+
+ .form-group {
+ margin-bottom: 1.5rem;
+ }
+
+ label {
+ display: block;
+ margin-bottom: 0.5rem;
+ }
+
+ input,
+ textarea {
+ width: 100%;
+ padding: 0.8rem;
+ border: 2px solid #eee;
+ border-radius: 5px;
+ transition: var(--transition);
+ }
+
+ input:focus,
+ textarea:focus {
+ outline: none;
+ border-color: var(--secondary);
+ }
+
+ textarea {
+ height: 150px;
+ resize: vertical;
+ }
+
+ .submit-btn {
+ background: var(--secondary);
+ color: white;
+ border: none;
+ padding: 1rem 2rem;
+ border-radius: 5px;
+ cursor: pointer;
+ transition: var(--transition);
+ }
+
+ .submit-btn:hover {
+ background: #00a383;
+ }
+
+ .footer {
+ text-align: center;
+ padding: 2rem;
+ background: var(--primary);
+ color: white;
+ }
+
+ @media (max-width: 768px) {
+ .nav-list {
+ display: none;
+ }
+
+ .nav-toggle {
+ display: block;
+ }
+
+ .title {
+ font-size: 3rem;
+ }
+
+ section {
+ padding: 3rem 5%;
+ }
+ }