/* Reset and Base Styles */ * { margin: 0; padding: 0; box-sizing: border-box; } body { font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif; line-height: 1.6; color: #ffffff; background: linear-gradient(135deg, #0A0A1A 0%, #1a1a2e 50%, #16213e 100%); overflow-x: hidden; position: relative; /* Kopyalama koruması */ -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; user-select: none; -webkit-touch-callout: none; -webkit-tap-highlight-color: transparent; } body::before { content: ''; position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: radial-gradient(circle at 20% 80%, rgba(120, 119, 198, 0.3) 0%, transparent 50%), radial-gradient(circle at 80% 20%, rgba(255, 119, 198, 0.3) 0%, transparent 50%), radial-gradient(circle at 40% 40%, rgba(120, 219, 255, 0.2) 0%, transparent 50%); pointer-events: none; z-index: -1; } .container { max-width: 1200px; margin: 0 auto; padding: 0 20px; } /* Navigation */ .navbar { position: fixed; top: 0; width: 100%; background: rgba(10, 10, 26, 0.8); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); z-index: 1000; padding: 1rem 0; border-bottom: 1px solid rgba(255, 255, 255, 0.1); transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1); } .nav-container { max-width: 1200px; margin: 0 auto; padding: 0 20px; display: flex; justify-content: space-between; align-items: center; } .nav-logo { display: flex; align-items: center; gap: 12px; } .logo-icon { width: 40px; height: 40px; background: linear-gradient(135deg, #8B5CF6, #6366F1); border-radius: 8px; display: flex; align-items: center; justify-content: center; color: white; font-weight: 700; font-size: 18px; } .logo-text { color: white; font-weight: 600; font-size: 18px; } .nav-menu { display: flex; list-style: none; gap: 2rem; } .nav-link { text-decoration: none; color: white; font-weight: 500; transition: color 0.3s ease; } .nav-link:hover { color: #4A90E2; } .download-btn { background: #4A90E2; color: white; border: none; padding: 12px 24px; border-radius: 8px; font-weight: 600; cursor: pointer; transition: background 0.3s ease; } .download-btn:hover { background: #357ABD; } .hamburger { display: none; flex-direction: column; cursor: pointer; } .bar { width: 25px; height: 3px; background: white; margin: 3px 0; transition: 0.3s; } /* Hero Section */ .hero { padding: 120px 0 80px; min-height: 100vh; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; position: relative; overflow: hidden; background: url('./vrc_treehouse_5.webp?v=2') center center/cover no-repeat; } /* Dark overlay to make text readable */ .hero::before { content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: rgba(0, 0, 0, 0.8); z-index: 1; } .hero-container { max-width: 800px; margin: 0 auto; padding: 0 20px; position: relative; z-index: 10; } .hero-badge { background: rgba(74, 144, 226, 0.9); border: 2px solid rgba(255, 255, 255, 0.8); border-radius: 20px; padding: 12px 24px; display: inline-flex; align-items: center; gap: 8px; margin-bottom: 2rem; color: white; font-size: 14px; font-weight: 500; backdrop-filter: blur(15px); box-shadow: 0 8px 25px rgba(0, 0, 0, 0.6); position: relative; z-index: 10; } .hero-title { font-size: 4rem; font-weight: 700; margin-bottom: 1.5rem; line-height: 1.2; position: relative; z-index: 10; text-shadow: 4px 4px 8px rgba(0, 0, 0, 1); } .gradient-text { background: linear-gradient(135deg, #4A90E2, #8B5CF6); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; position: relative; z-index: 10; text-shadow: 4px 4px 8px rgba(0, 0, 0, 1); } .white-text { color: white; position: relative; z-index: 10; text-shadow: 4px 4px 8px rgba(0, 0, 0, 1); } .hero-description { font-size: 1.2rem; margin-bottom: 2.5rem; color: white; max-width: 600px; margin-left: auto; margin-right: auto; position: relative; z-index: 10; text-shadow: 3px 3px 6px rgba(0, 0, 0, 1); line-height: 1.6; font-weight: 500; } .hero-cta { background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); color: white; border: none; padding: 18px 36px; font-size: 1.1rem; font-weight: 600; border-radius: 16px; cursor: pointer; transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1); display: inline-flex; align-items: center; gap: 12px; margin-bottom: 2rem; backdrop-filter: blur(20px); box-shadow: 0 8px 32px rgba(102, 126, 234, 0.3), 0 4px 16px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.2); position: relative; z-index: 10; border: 1px solid rgba(255, 255, 255, 0.2); overflow: hidden; } .hero-cta::before { content: ''; position: absolute; top: 0; left: -100%; width: 100%; height: 100%; background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent); transition: left 0.5s; } .hero-cta:hover::before { left: 100%; } .hero-cta:hover { background: linear-gradient(135deg, #764ba2 0%, #667eea 100%); transform: translateY(-4px) scale(1.02); box-shadow: 0 12px 40px rgba(102, 126, 234, 0.4), 0 8px 24px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.3); } .hero-features { display: flex; justify-content: center; gap: 2rem; flex-wrap: wrap; position: relative; z-index: 10; } .feature-item { display: flex; align-items: center; gap: 8px; color: white; font-size: 14px; background: rgba(0, 0, 0, 0.8); padding: 12px 20px; border-radius: 25px; backdrop-filter: blur(15px); border: 2px solid rgba(255, 255, 255, 0.4); box-shadow: 0 6px 20px rgba(0, 0, 0, 0.7); position: relative; z-index: 10; font-weight: 500; } .feature-item i { color: #10B981; } .hero-footer { position: absolute; bottom: 40px; display: flex; align-items: center; gap: 8px; color: white; font-size: 14px; z-index: 10; background: rgba(0, 0, 0, 0.9); padding: 12px 24px; border-radius: 20px; backdrop-filter: blur(15px); border: 2px solid rgba(255, 255, 255, 0.4); box-shadow: 0 6px 20px rgba(0, 0, 0, 0.8); } .sword-icon { font-size: 18px; } /* Section Styles */ .section-title { text-align: center; font-size: 3rem; font-weight: 700; margin-bottom: 1rem; color: white; } .highlight { color: #4A90E2; } .section-subtitle { text-align: center; font-size: 1.1rem; margin-bottom: 3rem; color: #E5E7EB; max-width: 600px; margin-left: auto; margin-right: auto; } /* Features Section */ .features { padding: 100px 0; background: #0A0A1A; } .features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); gap: 2rem; } .feature-card { background: rgba(255, 255, 255, 0.08); padding: 2.5rem; border-radius: 20px; text-align: center; border: 1px solid rgba(255, 255, 255, 0.15); transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1); backdrop-filter: blur(10px); position: relative; overflow: hidden; } .feature-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px; background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent); } .feature-card:hover { transform: translateY(-8px) scale(1.02); border-color: rgba(102, 126, 234, 0.4); background: rgba(255, 255, 255, 0.12); box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 0 8px 16px rgba(102, 126, 234, 0.2); } .feature-icon { width: 80px; height: 80px; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 1.5rem; font-size: 2rem; color: white; } .feature-icon.blue { background: #3B82F6; } .feature-icon.purple { background: #8B5CF6; } .feature-icon.green { background: #10B981; } .feature-icon.teal { background: #14B8A6; } .feature-icon.orange { background: #F59E0B; } .feature-icon.magenta { background: #EC4899; } .feature-card h3 { font-size: 1.5rem; margin-bottom: 1rem; color: white; } .feature-card p { color: #D1D5DB; line-height: 1.6; } /* About Section */ .about { padding: 100px 0; background: #0A0A1A; } .about-content { max-width: 800px; margin: 0 auto; text-align: center; } .about-text p { font-size: 1.1rem; margin-bottom: 2rem; color: #E5E7EB; line-height: 1.7; } .about-tags { display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap; } .tag { padding: 8px 16px; border-radius: 20px; font-size: 14px; font-weight: 500; color: white; } .tag.blue { background: #3B82F6; } .tag.purple { background: #8B5CF6; } .tag.green { background: #10B981; } .tag.orange { background: #F59E0B; } /* Developers Section */ .developers { padding: 100px 0; background: #0A0A1A; } .developers-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; } .developer-card { background: rgba(255, 255, 255, 0.05); padding: 2rem; border-radius: 16px; text-align: center; border: 1px solid rgba(255, 255, 255, 0.1); transition: transform 0.3s ease; } .developer-card:hover { transform: translateY(-5px); } .developer-avatar { width: 80px; height: 80px; border-radius: 12px; display: flex; align-items: center; justify-content: center; margin: 0 auto 1.5rem; font-size: 2.5rem; font-weight: 700; color: white; background: linear-gradient(135deg, #8B5CF6, #6366F1); } .developer-card h3 { font-size: 1.5rem; margin-bottom: 0.5rem; color: white; } .developer-role { color: #4A90E2; font-weight: 600; margin-bottom: 1rem; } .developer-description { color: #D1D5DB; line-height: 1.6; } /* Community Section */ .community { padding: 100px 0; background: #0A0A1A; } /* Contact Section */ .contact { padding: 100px 0; background: #0A0A1A; } .contact-box { background: rgba(255, 255, 255, 0.05); border: 1px solid rgba(255, 255, 255, 0.1); border-radius: 16px; padding: 2rem; text-align: center; max-width: 500px; margin: 0 auto; } .contact-box p { color: #E5E7EB; margin-bottom: 1.5rem; } .contact-email { background: #4A90E2; color: white; text-decoration: none; padding: 12px 24px; border-radius: 8px; display: inline-flex; align-items: center; gap: 8px; font-weight: 500; transition: background 0.3s ease; } .contact-email:hover { background: #357ABD; } /* Footer */ .footer { background: #0A0A1A; color: #9CA3AF; padding: 40px 0; text-align: center; border-top: 1px solid rgba(255, 255, 255, 0.1); } .heart { color: #EF4444; } /* Responsive Design */ @media (max-width: 768px) { .hamburger { display: flex; } .nav-menu { position: fixed; left: -100%; top: 70px; flex-direction: column; background-color: #0A0A1A; width: 100%; text-align: center; transition: 0.3s; border-bottom: 1px solid rgba(255, 255, 255, 0.1); padding: 2rem 0; } .nav-menu.active { left: 0; } .hero-title { font-size: 2.5rem; } .hero-features { flex-direction: column; gap: 1rem; } .features-grid { grid-template-columns: 1fr; } .developers-grid { grid-template-columns: 1fr; } .section-title { font-size: 2rem; } .about-tags { flex-direction: column; align-items: center; } /* Hide complex 3D elements on mobile */ .treehouse, .creature, .figure { display: none; } .jellyfish { opacity: 0.3; } } @media (max-width: 480px) { .hero-title { font-size: 2rem; } .hero-description { font-size: 1rem; } .container { padding: 0 15px; } .feature-card, .developer-card { padding: 1.5rem; } } styles.css bu duzenle