Changed around line 1
+ :root {
+ --primary: #2a2a2a;
+ --accent: #ff3366;
+ --text: #333;
+ --bg: #ffffff;
+ --transition: all 0.3s ease;
+ }
+
+ * {
+ margin: 0;
+ padding: 0;
+ box-sizing: border-box;
+ }
+
+ body {
+ font-family: 'Inter', sans-serif;
+ color: var(--text);
+ line-height: 1.6;
+ overflow-x: hidden;
+ }
+
+ header {
+ position: fixed;
+ width: 100%;
+ z-index: 1000;
+ background: rgba(255, 255, 255, 0.95);
+ backdrop-filter: blur(10px);
+ }
+
+ nav {
+ display: flex;
+ justify-content: space-between;
+ align-items: center;
+ padding: 1rem 5%;
+ max-width: 1400px;
+ margin: 0 auto;
+ }
+
+ .logo {
+ font-size: 1.5rem;
+ font-weight: 700;
+ color: var(--primary);
+ }
+
+ .nav-links {
+ display: flex;
+ gap: 2rem;
+ list-style: none;
+ }
+
+ .nav-links a {
+ text-decoration: none;
+ color: var(--text);
+ transition: var(--transition);
+ }
+
+ .nav-links a:hover {
+ color: var(--accent);
+ }
+
+ .nav-toggle {
+ display: none;
+ }
+
+ .hero {
+ height: 100vh;
+ display: flex;
+ align-items: center;
+ justify-content: center;
+ position: relative;
+ overflow: hidden;
+ }
+
+ .hero-content {
+ text-align: center;
+ z-index: 2;
+ color: var(--bg);
+ }
+
+ .hero-content h1 {
+ font-size: 4rem;
+ margin-bottom: 1rem;
+ animation: fadeIn 1s ease-out;
+ }
+
+ .hero-background {
+ position: absolute;
+ top: 0;
+ left: 0;
+ width: 100%;
+ height: 100%;
+ background: linear-gradient(45deg, var(--primary), var(--accent));
+ z-index: 1;
+ transform: skewY(-6deg);
+ transform-origin: top left;
+ }
+
+ .work, .about, .contact {
+ padding: 5rem 5%;
+ max-width: 1400px;
+ margin: 0 auto;
+ }
+
+ .gallery {
+ display: grid;
+ grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
+ gap: 2rem;
+ margin-top: 2rem;
+ }
+
+ .gallery-item {
+ position: relative;
+ overflow: hidden;
+ border-radius: 8px;
+ transition: var(--transition);
+ }
+
+ .gallery-image {
+ height: 400px;
+ background-color: var(--primary);
+ position: relative;
+ transition: var(--transition);
+ }
+
+ .gallery-image::after {
+ content: attr(data-title);
+ position: absolute;
+ bottom: 0;
+ left: 0;
+ width: 100%;
+ padding: 1rem;
+ background: linear-gradient(transparent, rgba(0,0,0,0.8));
+ color: white;
+ opacity: 0;
+ transition: var(--transition);
+ }
+
+ .gallery-item:hover .gallery-image::after {
+ opacity: 1;
+ }
+
+ form {
+ display: flex;
+ flex-direction: column;
+ gap: 1rem;
+ max-width: 600px;
+ margin: 2rem auto;
+ }
+
+ input, textarea {
+ padding: 1rem;
+ border: 2px solid #eee;
+ border-radius: 4px;
+ transition: var(--transition);
+ }
+
+ input:focus, textarea:focus {
+ border-color: var(--accent);
+ outline: none;
+ }
+
+ button {
+ padding: 1rem 2rem;
+ background: var(--accent);
+ color: white;
+ border: none;
+ border-radius: 4px;
+ cursor: pointer;
+ transition: var(--transition);
+ }
+
+ button:hover {
+ transform: translateY(-2px);
+ box-shadow: 0 4px 12px rgba(0,0,0,0.1);
+ }
+
+ footer {
+ background: var(--primary);
+ color: white;
+ padding: 2rem 5%;
+ text-align: center;
+ }
+
+ footer nav {
+ display: flex;
+ justify-content: center;
+ gap: 2rem;
+ margin-top: 1rem;
+ }
+
+ footer a {
+ color: white;
+ text-decoration: none;
+ }
+
+ @media (max-width: 768px) {
+ .nav-toggle {
+ display: block;
+ cursor: pointer;
+ }
+
+ .nav-toggle span {
+ display: block;
+ width: 25px;
+ height: 3px;
+ background: var(--text);
+ margin: 5px 0;
+ transition: var(--transition);
+ }
+
+ .nav-links {
+ position: fixed;
+ top: 70px;
+ right: -100%;
+ width: 100%;
+ height: calc(100vh - 70px);
+ background: white;
+ flex-direction: column;
+ align-items: center;
+ padding: 2rem;
+ transition: var(--transition);
+ }
+
+ .nav-links.active {
+ right: 0;
+ }
+
+ .hero-content h1 {
+ font-size: 2.5rem;
+ }
+ }
+
+ @keyframes fadeIn {
+ from {
+ opacity: 0;
+ transform: translateY(20px);
+ }
+ to {
+ opacity: 1;
+ transform: translateY(0);
+ }
+ }