Changed around line 1
+ :root {
+ --primary-color: #ff6b6b;
+ --secondary-color: #4ecdc4;
+ --text-color: #2d3436;
+ --background-color: #ffffff;
+ --accent-color: #ffd93d;
+ --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-color);
+ background-color: var(--background-color);
+ }
+
+ /* Header & Navigation */
+ .main-nav {
+ display: flex;
+ justify-content: space-between;
+ align-items: center;
+ padding: 1rem var(--spacing);
+ background: rgba(255, 255, 255, 0.95);
+ position: fixed;
+ width: 100%;
+ top: 0;
+ z-index: 1000;
+ backdrop-filter: blur(10px);
+ }
+
+ .logo {
+ font-size: 1.5rem;
+ font-weight: bold;
+ background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
+ -webkit-background-clip: text;
+ background-clip: text;
+ color: transparent;
+ }
+
+ .nav-links {
+ display: flex;
+ list-style: none;
+ gap: 2rem;
+ }
+
+ .nav-links a {
+ text-decoration: none;
+ color: var(--text-color);
+ position: relative;
+ padding-bottom: 0.25rem;
+ }
+
+ .nav-links a::after {
+ content: '';
+ position: absolute;
+ bottom: 0;
+ left: 0;
+ width: 0;
+ height: 2px;
+ background: var(--primary-color);
+ transition: width 0.3s ease;
+ }
+
+ .nav-links a:hover::after {
+ width: 100%;
+ }
+
+ /* Hero Section */
+ .hero {
+ height: 100vh;
+ display: flex;
+ flex-direction: column;
+ justify-content: center;
+ align-items: center;
+ text-align: center;
+ padding: var(--spacing);
+ background: linear-gradient(135deg, #fff5f5 0%, #fff 100%);
+ }
+
+ .hero h1 {
+ font-size: 3.5rem;
+ margin-bottom: 1rem;
+ background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
+ -webkit-background-clip: text;
+ background-clip: text;
+ color: transparent;
+ }
+
+ /* Portfolio Gallery */
+ .portfolio {
+ padding: var(--spacing);
+ }
+
+ .gallery {
+ display: grid;
+ grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
+ gap: 2rem;
+ padding: 2rem 0;
+ }
+
+ .gallery-item {
+ position: relative;
+ overflow: hidden;
+ border-radius: 15px;
+ box-shadow: 0 10px 20px rgba(0,0,0,0.1);
+ transition: transform 0.3s ease;
+ }
+
+ .gallery-item:hover {
+ transform: translateY(-10px);
+ }
+
+ .gallery-item img {
+ width: 100%;
+ height: 300px;
+ object-fit: cover;
+ }
+
+ .overlay {
+ position: absolute;
+ bottom: -100%;
+ left: 0;
+ width: 100%;
+ padding: 1.5rem;
+ background: linear-gradient(transparent, rgba(0,0,0,0.8));
+ color: white;
+ transition: bottom 0.3s ease;
+ }
+
+ .gallery-item:hover .overlay {
+ bottom: 0;
+ }
+
+ /* About Section */
+ .about {
+ padding: var(--spacing);
+ background-color: #f8f9fa;
+ }
+
+ .about-content {
+ display: grid;
+ grid-template-columns: 1fr 2fr;
+ gap: 2rem;
+ align-items: center;
+ }
+
+ .profile-img {
+ width: 100%;
+ border-radius: 50%;
+ box-shadow: 0 10px 20px rgba(0,0,0,0.1);
+ }
+
+ /* Contact Form */
+ .contact {
+ padding: var(--spacing);
+ }
+
+ .contact-form {
+ max-width: 600px;
+ margin: 0 auto;
+ }
+
+ .form-group {
+ margin-bottom: 1.5rem;
+ }
+
+ .form-group label {
+ display: block;
+ margin-bottom: 0.5rem;
+ }
+
+ .form-group input,
+ .form-group textarea {
+ width: 100%;
+ padding: 0.8rem;
+ border: 2px solid #e9ecef;
+ border-radius: 8px;
+ transition: border-color 0.3s ease;
+ }
+
+ .form-group input:focus,
+ .form-group textarea:focus {
+ outline: none;
+ border-color: var(--primary-color);
+ }
+
+ button {
+ background: var(--primary-color);
+ color: white;
+ padding: 1rem 2rem;
+ border: none;
+ border-radius: 8px;
+ cursor: pointer;
+ transition: transform 0.3s ease, background-color 0.3s ease;
+ }
+
+ button:hover {
+ transform: translateY(-2px);
+ background: var(--secondary-color);
+ }
+
+ /* Footer */
+ footer {
+ background: var(--text-color);
+ color: white;
+ padding: var(--spacing);
+ margin-top: 4rem;
+ }
+
+ .footer-content {
+ display: flex;
+ justify-content: space-between;
+ align-items: center;
+ max-width: 1200px;
+ margin: 0 auto;
+ }
+
+ .social-links a {
+ color: white;
+ text-decoration: none;
+ margin-left: 1.5rem;
+ transition: color 0.3s ease;
+ }
+
+ .social-links a:hover {
+ color: var(--accent-color);
+ }
+
+ /* Mobile Responsiveness */
+ .menu-toggle {
+ display: none;
+ flex-direction: column;
+ gap: 6px;
+ background: none;
+ border: none;
+ padding: 0.5rem;
+ cursor: pointer;
+ }
+
+ .menu-toggle span {
+ width: 25px;
+ height: 2px;
+ background: var(--text-color);
+ transition: 0.3s ease;
+ }
+
+ @media (max-width: 768px) {
+ .menu-toggle {
+ display: flex;
+ }
+
+ .nav-links {
+ display: none;
+ position: absolute;
+ top: 100%;
+ left: 0;
+ width: 100%;
+ background: white;
+ flex-direction: column;
+ padding: 1rem;
+ text-align: center;
+ }
+
+ .nav-links.active {
+ display: flex;
+ }
+
+ .hero h1 {
+ font-size: 2.5rem;
+ }
+
+ .about-content {
+ grid-template-columns: 1fr;
+ }
+
+ .footer-content {
+ flex-direction: column;
+ gap: 1rem;
+ text-align: center;
+ }
+
+ .social-links a {
+ margin: 0 0.75rem;
+ }
+ }