Spaces:
Running
Running
| :root { | |
| --primary-color: #667eea; | |
| --secondary-color: #764ba2; | |
| --text-color: #333; | |
| --text-light: #666; | |
| --bg-color: #fff; | |
| --bg-light: #f8f9fa; | |
| --border-color: #e0e0e0; | |
| --shadow: 0 10px 30px rgba(0, 0, 0, 0.1); | |
| --transition: all 0.3s ease; | |
| } | |
| [data-theme="dark"] { | |
| --text-color: #e0e0e0; | |
| --text-light: #b0b0b0; | |
| --bg-color: #1a1a1a; | |
| --bg-light: #2a2a2a; | |
| --border-color: #333; | |
| --shadow: 0 10px 30px rgba(0, 0, 0, 0.5); | |
| } | |
| * { | |
| margin: 0; | |
| padding: 0; | |
| box-sizing: border-box; | |
| } | |
| html { | |
| scroll-behavior: smooth; | |
| } | |
| body { | |
| font-family: 'Inter', sans-serif; | |
| background-color: var(--bg-color); | |
| color: var(--text-color); | |
| line-height: 1.6; | |
| transition: var(--transition); | |
| } | |
| .container { | |
| max-width: 1200px; | |
| margin: 0 auto; | |
| padding: 0 20px; | |
| } | |
| /* Header */ | |
| .header { | |
| position: fixed; | |
| top: 0; | |
| width: 100%; | |
| background: rgba(255, 255, 255, 0.95); | |
| backdrop-filter: blur(10px); | |
| z-index: 1000; | |
| transition: var(--transition); | |
| } | |
| [data-theme="dark"] .header { | |
| background: rgba(26, 26, 26, 0.95); | |
| } | |
| .navbar { | |
| padding: 1rem 0; | |
| } | |
| .nav-container { | |
| max-width: 1200px; | |
| margin: 0 auto; | |
| padding: 0 20px; | |
| display: flex; | |
| justify-content: space-between; | |
| align-items: center; | |
| } | |
| .nav-logo h2 { | |
| background: linear-gradient(135deg, var(--primary-color), var(--secondary-color)); | |
| -webkit-background-clip: text; | |
| -webkit-text-fill-color: transparent; | |
| font-weight: 700; | |
| } | |
| .nav-menu { | |
| display: flex; | |
| list-style: none; | |
| align-items: center; | |
| gap: 2rem; | |
| } | |
| .nav-link { | |
| color: var(--text-color); | |
| text-decoration: none; | |
| font-weight: 500; | |
| transition: var(--transition); | |
| position: relative; | |
| } | |
| .nav-link::after { | |
| content: ''; | |
| position: absolute; | |
| bottom: -5px; | |
| left: 0; | |
| width: 0; | |
| height: 2px; | |
| background: linear-gradient(135deg, var(--primary-color), var(--secondary-color)); | |
| transition: width 0.3s ease; | |
| } | |
| .nav-link:hover::after { | |
| width: 100%; | |
| } | |
| .theme-toggle { | |
| background: none; | |
| border: none; | |
| cursor: pointer; | |
| font-size: 1.2rem; | |
| color: var(--text-color); | |
| transition: var(--transition); | |
| } | |
| .theme-toggle:hover { | |
| transform: scale(1.1); | |
| } | |
| .hamburger { | |
| display: none; | |
| flex-direction: column; | |
| cursor: pointer; | |
| } | |
| .bar { | |
| width: 25px; | |
| height: 3px; | |
| background: var(--text-color); | |
| margin: 3px 0; | |
| transition: var(--transition); | |
| } | |
| /* Hero Section */ | |
| .hero { | |
| min-height: 100vh; | |
| display: flex; | |
| align-items: center; | |
| background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); | |
| position: relative; | |
| overflow: hidden; | |
| } | |
| .hero::before { | |
| content: ''; | |
| position: absolute; | |
| top: 0; | |
| left: 0; | |
| right: 0; | |
| bottom: 0; | |
| background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23ffffff" fill-opacity="0.1" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,122.7C672,117,768,139,864,133.3C960,128,1056,96,1152,90.7C1248,85,1344,107,1392,117.3L1440,128L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') no-repeat bottom; | |
| background-size: cover; | |
| } | |
| .hero-container { | |
| max-width: 1200px; | |
| margin: 0 auto; | |
| padding: 0 20px; | |
| display: grid; | |
| grid-template-columns: 1fr 1fr; | |
| gap: 4rem; | |
| align-items: center; | |
| position: relative; | |
| z-index: 1; | |
| } | |
| .hero-content { | |
| color: white; | |
| } | |
| .hero-title { | |
| font-size: 3.5rem; | |
| font-weight: 800; | |
| margin-bottom: 1.5rem; | |
| line-height: 1.2; | |
| animation: fadeInUp 0.8s ease; | |
| } | |
| .gradient-text { | |
| background: linear-gradient(45deg, #ffd89b, #19547b); | |
| -webkit-background-clip: text; | |
| -webkit-text-fill-color: transparent; | |
| } | |
| .hero-subtitle { | |
| font-size: 1.25rem; | |
| margin-bottom: 2rem; | |
| opacity: 0.9; | |
| animation: fadeInUp 0.8s ease 0.2s backwards; | |
| } | |
| .hero-buttons { | |
| display: flex; | |
| gap: 1rem; | |
| animation: fadeInUp 0.8s ease 0.4s backwards; | |
| } | |
| .btn { | |
| padding: 12px 30px; | |
| border: none; | |
| border-radius: 50px; | |
| font-size: 1rem; | |
| font-weight: 600; | |
| cursor: pointer; | |
| transition: var(--transition); | |
| text-decoration: none; | |
| display: inline-block; | |
| } | |
| .btn-primary { | |
| background: white; | |
| color: var(--primary-color); | |
| } | |
| .btn-primary:hover { | |
| transform: translateY(-2px); | |
| box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2); | |
| } | |
| .btn-secondary { | |
| background: transparent; | |
| color: white; | |
| border: 2px solid white; | |
| } | |
| .btn-secondary:hover { | |
| background: white; | |
| color: var(--primary-color); | |
| } | |
| .hero-image { | |
| display: flex; | |
| justify-content: center; | |
| align-items: center; | |
| } | |
| .floating-card { | |
| width: 200px; | |
| height: 200px; | |
| background: rgba(255, 255, 255, 0.1); | |
| backdrop-filter: blur(10px); | |
| border-radius: 20px; | |
| display: flex; | |
| align-items: center; | |
| justify-content: center; | |
| font-size: 4rem; | |
| color: white; | |
| animation: float 3s ease-in-out infinite; | |
| } | |
| .scroll-indicator { | |
| position: absolute; | |
| bottom: 30px; | |
| left: 50%; | |
| transform: translateX(-50%); | |
| } | |
| .scroll-arrow { | |
| width: 30px; | |
| height: 30px; | |
| border-right: 3px solid white; | |
| border-bottom: 3px solid white; | |
| transform: rotate(45deg); | |
| animation: bounce 2s infinite; | |
| } | |
| /* Sections */ | |
| .section-header { | |
| text-align: center; | |
| margin-bottom: 3rem; | |
| } | |
| .section-title { | |
| font-size: 2.5rem; | |
| font-weight: 700; | |
| margin-bottom: 1rem; | |
| background: linear-gradient(135deg, var(--primary-color), var(--secondary-color)); | |
| -webkit-background-clip: text; | |
| -webkit-text-fill-color: transparent; | |
| } | |
| .section-subtitle { | |
| color: var(--text-light); | |
| font-size: 1.1rem; | |
| } | |
| /* About Section */ | |
| .about { | |
| padding: 5rem 0; | |
| background: var(--bg-light); | |
| } | |
| .about-grid { | |
| display: grid; | |
| grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); | |
| gap: 2rem; | |
| } | |
| .about-card { | |
| background: var(--bg-color); | |
| padding: 2rem; | |
| border-radius: 15px; | |
| text-align: center; | |
| transition: var(--transition); | |
| box-shadow: var(--shadow); | |
| } | |
| .about-card:hover { | |
| transform: translateY(-10px); | |
| } | |
| .card-icon { | |
| width: 80px; | |
| height: 80px; | |
| margin: 0 auto 1.5rem; | |
| background: linear-gradient(135deg, var(--primary-color), var(--secondary-color)); | |
| border-radius: 50%; | |
| display: flex; | |
| align-items: center; | |
| justify-content: center; | |
| color: white; | |
| font-size: 2rem; | |
| } | |
| .about-card h3 { | |
| margin-bottom: 1rem; | |
| font-size: 1.5rem; | |
| } | |
| /* Services Section */ | |
| .services { | |
| padding: 5rem 0; | |
| } | |
| .services-grid { | |
| display: grid; | |
| grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); | |
| gap: 2rem; | |
| } | |
| .service-item { | |
| background: var(--bg-light); | |
| padding: 2rem; | |
| border-radius: 15px; | |
| position: relative; | |
| transition: var(--transition); | |
| overflow: hidden; | |
| } | |
| .service-item::before { | |
| content: ''; | |
| position: absolute; | |
| top: 0; | |
| left: 0; | |
| width: 100%; | |
| height: 4px; | |
| background: linear-gradient(135deg, var(--primary-color), var(--secondary-color)); | |
| transform: scaleX(0); | |
| transition: transform 0.3s ease; | |
| } | |
| .service-item:hover::before { | |
| transform: scaleX(1); | |
| } | |
| .service-item:hover { | |
| transform: translateY(-5px); | |
| box-shadow: var(--shadow); | |
| } | |
| .service-number { | |
| font-size: 3rem; | |
| font-weight: 700; | |
| background: linear-gradient(135deg, var(--primary-color), var(--secondary-color)); | |
| -webkit-background-clip: text; | |
| -webkit-text-fill-color: transparent; | |
| margin-bottom: 1rem; | |
| } | |
| .service-item h3 { | |
| margin-bottom: 1rem; | |
| font-size: 1.3rem; | |
| } | |
| .service-link { | |
| color: var(--primary-color); | |
| text-decoration: none; | |
| font-weight: 600; | |
| display: inline-flex; | |
| align-items: center; | |
| gap: 0.5rem; | |
| margin-top: 1rem; | |
| transition: var(--transition); | |
| } | |
| .service-link:hover { | |
| gap: 1rem; | |
| } | |
| /* Portfolio Section */ | |
| .portfolio { | |
| padding: 5rem 0; | |
| background |