Changed around line 1
+ :root {
+ --primary-color: #2d3436;
+ --accent-color: #0984e3;
+ --text-color: #2d3436;
+ --bg-color: #ffffff;
+ --gradient: linear-gradient(135deg, #0984e3, #00cec9);
+ }
+
+ * {
+ margin: 0;
+ padding: 0;
+ box-sizing: border-box;
+ }
+
+ body {
+ font-family: 'Inter', system-ui, sans-serif;
+ color: var(--text-color);
+ line-height: 1.6;
+ overflow-x: hidden;
+ }
+
+ .hero-section {
+ min-height: 100vh;
+ background: var(--gradient);
+ color: white;
+ padding: 2rem;
+ display: flex;
+ flex-direction: column;
+ }
+
+ .navbar {
+ display: flex;
+ justify-content: space-between;
+ align-items: center;
+ padding: 1rem 0;
+ }
+
+ .logo {
+ font-size: 2rem;
+ font-weight: 700;
+ background: linear-gradient(to right, #fff, rgba(255,255,255,0.8));
+ -webkit-background-clip: text;
+ -webkit-text-fill-color: transparent;
+ }
+
+ .nav-links {
+ display: flex;
+ gap: 2rem;
+ }
+
+ .nav-links a {
+ color: white;
+ text-decoration: none;
+ font-weight: 500;
+ transition: opacity 0.3s;
+ }
+
+ .nav-links a:hover {
+ opacity: 0.8;
+ }
+
+ .content-wrapper {
+ max-width: 800px;
+ margin: auto;
+ text-align: center;
+ }
+
+ h1 {
+ font-size: 4rem;
+ margin-bottom: 1rem;
+ background: linear-gradient(to right, #fff, rgba(255,255,255,0.8));
+ -webkit-background-clip: text;
+ -webkit-text-fill-color: transparent;
+ }
+
+ .social-button {
+ display: inline-block;
+ padding: 0.8rem 1.5rem;
+ border: 2px solid white;
+ border-radius: 25px;
+ color: white;
+ text-decoration: none;
+ margin: 1rem;
+ transition: all 0.3s;
+ }
+
+ .social-button:hover {
+ background: white;
+ color: var(--accent-color);
+ }
+
+ .project-grid {
+ display: grid;
+ grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
+ gap: 2rem;
+ padding: 4rem 2rem;
+ }
+
+ .project-card {
+ background: white;
+ padding: 2rem;
+ border-radius: 15px;
+ box-shadow: 0 10px 30px rgba(0,0,0,0.1);
+ transition: transform 0.3s;
+ }
+
+ .project-card:hover {
+ transform: translateY(-10px);
+ }
+
+ .contact-section {
+ background: #f5f6fa;
+ padding: 4rem 2rem;
+ }
+
+ .contact-form {
+ max-width: 600px;
+ margin: 0 auto;
+ display: flex;
+ flex-direction: column;
+ gap: 1rem;
+ }
+
+ input, textarea {
+ padding: 1rem;
+ border: 2px solid #eee;
+ border-radius: 8px;
+ font-size: 1rem;
+ }
+
+ .submit-button {
+ background: var(--gradient);
+ color: white;
+ border: none;
+ padding: 1rem;
+ border-radius: 8px;
+ cursor: pointer;
+ transition: opacity 0.3s;
+ }
+
+ .submit-button:hover {
+ opacity: 0.9;
+ }
+
+ footer {
+ background: var(--primary-color);
+ color: white;
+ padding: 2rem;
+ text-align: center;
+ }
+
+ @media (max-width: 768px) {
+ .nav-links {
+ display: none;
+ }
+
+ h1 {
+ font-size: 2.5rem;
+ }
+
+ .project-grid {
+ grid-template-columns: 1fr;
+ }
+ }