Changed around line 1
+ :root {
+ --primary: #2d3436;
+ --accent: #0984e3;
+ --bg: #ffffff;
+ --text: #2d3436;
+ --transition: all 0.3s ease;
+ }
+
+ * {
+ margin: 0;
+ padding: 0;
+ box-sizing: border-box;
+ }
+
+ html {
+ scroll-behavior: smooth;
+ }
+
+ body {
+ font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
+ line-height: 1.6;
+ color: var(--text);
+ background: var(--bg);
+ }
+
+ .header {
+ position: fixed;
+ width: 100%;
+ padding: 1rem;
+ background: rgba(255, 255, 255, 0.95);
+ backdrop-filter: blur(10px);
+ z-index: 1000;
+ }
+
+ nav {
+ max-width: 1200px;
+ margin: 0 auto;
+ display: flex;
+ justify-content: space-between;
+ align-items: center;
+ }
+
+ .logo {
+ font-size: 2rem;
+ font-weight: bold;
+ color: var(--accent);
+ }
+
+ .nav-links {
+ display: flex;
+ list-style: none;
+ gap: 2rem;
+ }
+
+ .nav-links a {
+ text-decoration: none;
+ color: var(--text);
+ transition: var(--transition);
+ }
+
+ .nav-links a:hover {
+ color: var(--accent);
+ }
+
+ .menu-toggle {
+ display: none;
+ flex-direction: column;
+ gap: 6px;
+ cursor: pointer;
+ }
+
+ .menu-toggle span {
+ width: 25px;
+ height: 2px;
+ background: var(--text);
+ transition: var(--transition);
+ }
+
+ section {
+ min-height: 100vh;
+ padding: 6rem 2rem;
+ display: flex;
+ flex-direction: column;
+ justify-content: center;
+ align-items: center;
+ }
+
+ .hero {
+ text-align: center;
+ }
+
+ h1 {
+ font-size: 4rem;
+ margin-bottom: 1rem;
+ }
+
+ .highlight {
+ color: var(--accent);
+ }
+
+ .subtitle {
+ font-size: 1.5rem;
+ opacity: 0.8;
+ }
+
+ .scroll-indicator {
+ width: 30px;
+ height: 50px;
+ border: 2px solid var(--text);
+ border-radius: 15px;
+ position: relative;
+ margin-top: 2rem;
+ }
+
+ .scroll-indicator::before {
+ content: '';
+ position: absolute;
+ width: 6px;
+ height: 6px;
+ background: var(--text);
+ left: 50%;
+ top: 8px;
+ transform: translateX(-50%);
+ border-radius: 50%;
+ animation: scroll 1.5s infinite;
+ }
+
+ @keyframes scroll {
+ 0% { transform: translate(-50%, 0); opacity: 1; }
+ 100% { transform: translate(-50%, 20px); opacity: 0; }
+ }
+
+ .skills {
+ display: flex;
+ gap: 2rem;
+ margin-top: 2rem;
+ }
+
+ .skill {
+ padding: 1rem 2rem;
+ background: var(--accent);
+ color: white;
+ border-radius: 30px;
+ transition: var(--transition);
+ }
+
+ .skill:hover {
+ transform: translateY(-5px);
+ box-shadow: 0 5px 15px rgba(0,0,0,0.1);
+ }
+
+ .work-grid {
+ display: grid;
+ grid-template-columns: repeat(3, 1fr);
+ gap: 2rem;
+ margin-top: 2rem;
+ }
+
+ .work-item {
+ aspect-ratio: 1;
+ background: #f5f6fa;
+ display: flex;
+ align-items: center;
+ justify-content: center;
+ border-radius: 10px;
+ transition: var(--transition);
+ }
+
+ .work-item:hover {
+ transform: scale(1.05);
+ }
+
+ form {
+ display: flex;
+ flex-direction: column;
+ gap: 1rem;
+ width: 100%;
+ max-width: 500px;
+ }
+
+ input, textarea {
+ padding: 1rem;
+ border: 1px solid #ddd;
+ border-radius: 5px;
+ font-family: inherit;
+ }
+
+ button {
+ padding: 1rem 2rem;
+ background: var(--accent);
+ color: white;
+ border: none;
+ border-radius: 5px;
+ cursor: pointer;
+ transition: var(--transition);
+ }
+
+ button:hover {
+ background: #0773c5;
+ }
+
+ footer {
+ text-align: center;
+ padding: 2rem;
+ background: var(--primary);
+ color: white;
+ }
+
+ @media (max-width: 768px) {
+ .menu-toggle {
+ display: flex;
+ }
+
+ .nav-links {
+ position: fixed;
+ top: 70px;
+ right: -100%;
+ flex-direction: column;
+ background: white;
+ width: 100%;
+ text-align: center;
+ transition: var(--transition);
+ padding: 2rem;
+ }
+
+ .nav-links.active {
+ right: 0;
+ }
+
+ .work-grid {
+ grid-template-columns: 1fr;
+ }
+
+ h1 {
+ font-size: 2.5rem;
+ }
+ }