Changed around line 1
+ :root {
+ --primary: #2c3e50;
+ --accent: #3498db;
+ --text: #2c3e50;
+ --background: #f9f9f9;
+ --spacing: 2rem;
+ }
+
+ * {
+ margin: 0;
+ padding: 0;
+ box-sizing: border-box;
+ }
+
+ body {
+ font-family: 'Segoe UI', system-ui, sans-serif;
+ line-height: 1.6;
+ color: var(--text);
+ background: var(--background);
+ }
+
+ header {
+ position: fixed;
+ width: 100%;
+ background: rgba(255, 255, 255, 0.95);
+ backdrop-filter: blur(10px);
+ z-index: 1000;
+ }
+
+ nav {
+ display: flex;
+ justify-content: space-between;
+ align-items: center;
+ padding: 1rem var(--spacing);
+ max-width: 1200px;
+ margin: 0 auto;
+ }
+
+ .logo {
+ font-size: 2rem;
+ font-weight: bold;
+ color: var(--primary);
+ background: linear-gradient(135deg, var(--primary), var(--accent));
+ -webkit-background-clip: text;
+ background-clip: text;
+ -webkit-text-fill-color: transparent;
+ }
+
+ nav ul {
+ display: flex;
+ list-style: none;
+ gap: 2rem;
+ }
+
+ nav a {
+ text-decoration: none;
+ color: var(--text);
+ font-weight: 500;
+ transition: color 0.3s ease;
+ }
+
+ nav a:hover {
+ color: var(--accent);
+ }
+
+ section {
+ padding: 5rem var(--spacing);
+ min-height: 100vh;
+ display: flex;
+ flex-direction: column;
+ justify-content: center;
+ }
+
+ #hero {
+ background: linear-gradient(135deg, var(--primary), var(--accent));
+ color: white;
+ text-align: center;
+ }
+
+ h1 {
+ font-size: 4rem;
+ margin-bottom: 1rem;
+ animation: fadeIn 1s ease-out;
+ }
+
+ .tagline {
+ font-size: 1.5rem;
+ opacity: 0.9;
+ animation: slideUp 1s ease-out 0.5s both;
+ }
+
+ .scroll-indicator {
+ width: 30px;
+ height: 50px;
+ border: 2px solid white;
+ border-radius: 15px;
+ position: absolute;
+ bottom: 2rem;
+ left: 50%;
+ transform: translateX(-50%);
+ }
+
+ .scroll-indicator::before {
+ content: '';
+ width: 6px;
+ height: 6px;
+ background: white;
+ border-radius: 50%;
+ position: absolute;
+ top: 8px;
+ left: 50%;
+ transform: translateX(-50%);
+ animation: scroll 1.5s infinite;
+ }
+
+ .work-grid {
+ display: grid;
+ grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
+ gap: 2rem;
+ margin-top: 2rem;
+ }
+
+ .work-item {
+ background: white;
+ border-radius: 10px;
+ overflow: hidden;
+ box-shadow: 0 4px 6px rgba(0,0,0,0.1);
+ transition: transform 0.3s ease;
+ aspect-ratio: 16/9;
+ position: relative;
+ }
+
+ .work-item:hover {
+ transform: translateY(-5px);
+ }
+
+ .work-content {
+ position: absolute;
+ bottom: 0;
+ width: 100%;
+ padding: 1.5rem;
+ background: linear-gradient(transparent, rgba(0,0,0,0.8));
+ color: white;
+ }
+
+ form {
+ max-width: 600px;
+ margin: 0 auto;
+ display: grid;
+ gap: 1rem;
+ }
+
+ input, textarea {
+ padding: 1rem;
+ border: 2px solid #ddd;
+ border-radius: 5px;
+ font-family: inherit;
+ transition: border-color 0.3s ease;
+ }
+
+ input:focus, textarea:focus {
+ border-color: var(--accent);
+ outline: none;
+ }
+
+ button {
+ padding: 1rem 2rem;
+ background: var(--accent);
+ color: white;
+ border: none;
+ border-radius: 5px;
+ cursor: pointer;
+ transition: background 0.3s ease;
+ }
+
+ button:hover {
+ background: var(--primary);
+ }
+
+ @keyframes fadeIn {
+ from { opacity: 0; }
+ to { opacity: 1; }
+ }
+
+ @keyframes slideUp {
+ from {
+ opacity: 0;
+ transform: translateY(20px);
+ }
+ to {
+ opacity: 1;
+ transform: translateY(0);
+ }
+ }
+
+ @keyframes scroll {
+ 0% { transform: translate(-50%, 0); opacity: 1; }
+ 75% { transform: translate(-50%, 20px); opacity: 0; }
+ 100% { transform: translate(-50%, 0); opacity: 0; }
+ }
+
+ @media (max-width: 768px) {
+ nav ul {
+ gap: 1rem;
+ }
+
+ h1 {
+ font-size: 3rem;
+ }
+
+ section {
+ padding: 3rem var(--spacing);
+ }
+ }