- Remove trust-indicators JavaScript animations from animations-enhanced.js - Clean up translation keys for removed indicator elements - Remove selector references from config.js - Fix missing video reference (hero-tech-pattern.mp4) - Remove massive unused CSS sections: timeline, digital-beat, neural network viz - Reduce animations.css from 2669 to 272 lines (90% size reduction) This removes code that was referencing non-existent HTML elements and large unused visual effects from previous design iterations. 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
272 Zeilen
4.7 KiB
CSS
272 Zeilen
4.7 KiB
CSS
/* Global Styles */
|
|
:root {
|
|
--primary-blue: #0f72b5;
|
|
--dark-blue: #00406e;
|
|
--accent-blue: #0f72b5;
|
|
--secondary-blue: #00406e;
|
|
--light-gray: #f4f4f4;
|
|
--white: #FFFFFF;
|
|
--text-dark: #333333;
|
|
--border-gray: #e0e0e0;
|
|
--alert-red: #FF4444;
|
|
--success-green: #4CAF50;
|
|
--warning-yellow: #FFC107;
|
|
}
|
|
|
|
* {
|
|
margin: 0;
|
|
padding: 0;
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
body {
|
|
font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
|
|
background-color: var(--white);
|
|
color: var(--text-dark);
|
|
overflow-x: hidden;
|
|
line-height: 1.6;
|
|
}
|
|
|
|
.container {
|
|
max-width: 1200px;
|
|
margin: 0 auto;
|
|
padding: 0 20px;
|
|
}
|
|
|
|
/* Typography */
|
|
h1, h2, h3, h4 {
|
|
font-family: 'Bebas Neue', cursive;
|
|
letter-spacing: 1px;
|
|
}
|
|
|
|
.section-title {
|
|
font-size: 3.5rem;
|
|
text-align: center;
|
|
margin-bottom: 1rem;
|
|
position: relative;
|
|
display: inline-block;
|
|
width: 100%;
|
|
}
|
|
|
|
.section-subtitle {
|
|
font-size: 1.2rem;
|
|
text-align: center;
|
|
opacity: 0.8;
|
|
margin-bottom: 3rem;
|
|
font-weight: 300;
|
|
}
|
|
|
|
/* Navigation */
|
|
.navbar {
|
|
position: fixed;
|
|
top: 0;
|
|
width: 100%;
|
|
z-index: 1000;
|
|
transition: all 0.3s ease;
|
|
background: var(--white);
|
|
border-bottom: 1px solid var(--border-gray);
|
|
box-shadow: 0 2px 4px rgba(0,0,0,0.1);
|
|
}
|
|
|
|
.nav-container {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
padding: 1.5rem 2rem;
|
|
}
|
|
|
|
.logo-img {
|
|
height: 55px;
|
|
width: auto;
|
|
filter: none;
|
|
}
|
|
|
|
.nav-menu {
|
|
display: flex;
|
|
list-style: none;
|
|
gap: 2rem;
|
|
}
|
|
|
|
.nav-menu a {
|
|
color: var(--text-dark);
|
|
text-decoration: none;
|
|
font-weight: 500;
|
|
font-size: 1rem;
|
|
transition: all 0.3s ease;
|
|
position: relative;
|
|
}
|
|
|
|
.nav-menu a::after {
|
|
content: '';
|
|
position: absolute;
|
|
bottom: -5px;
|
|
left: 0;
|
|
width: 0;
|
|
height: 2px;
|
|
background: var(--primary-blue);
|
|
transition: width 0.3s ease;
|
|
}
|
|
|
|
.nav-menu a:hover::after {
|
|
width: 100%;
|
|
}
|
|
|
|
.nav-extras {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 1rem;
|
|
}
|
|
|
|
.lang-toggle {
|
|
background: transparent;
|
|
border: 1px solid var(--primary-blue);
|
|
color: var(--primary-blue);
|
|
padding: 0.5rem 1rem;
|
|
border-radius: 4px;
|
|
cursor: pointer;
|
|
transition: all 0.3s ease;
|
|
font-weight: 500;
|
|
}
|
|
|
|
.lang-toggle:hover {
|
|
background: var(--primary-blue);
|
|
color: var(--white);
|
|
}
|
|
|
|
.cta-button, .primary-button, .secondary-button {
|
|
padding: 0.75rem 1.5rem;
|
|
border: none;
|
|
border-radius: 4px;
|
|
font-weight: 500;
|
|
cursor: pointer;
|
|
transition: all 0.3s ease;
|
|
text-transform: none;
|
|
letter-spacing: 0.5px;
|
|
}
|
|
|
|
.cta-button, .primary-button {
|
|
background: var(--primary-blue);
|
|
color: var(--white);
|
|
}
|
|
|
|
.cta-button:hover, .primary-button:hover {
|
|
background: var(--dark-blue);
|
|
transform: translateY(-2px);
|
|
box-shadow: 0 5px 20px rgba(15, 114, 181, 0.3);
|
|
}
|
|
|
|
.secondary-button {
|
|
background: transparent;
|
|
color: var(--primary-blue);
|
|
border: 2px solid var(--primary-blue);
|
|
}
|
|
|
|
.secondary-button:hover {
|
|
background: var(--primary-blue);
|
|
color: var(--white);
|
|
}
|
|
|
|
.large {
|
|
padding: 1rem 2rem;
|
|
font-size: 1.1rem;
|
|
}
|
|
|
|
/* Hero Section */
|
|
.hero {
|
|
min-height: 100vh;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
position: relative;
|
|
overflow: hidden;
|
|
padding-top: 100px;
|
|
background: #000000;
|
|
}
|
|
|
|
/* Clean transition */
|
|
.hero::after {
|
|
display: none;
|
|
}
|
|
|
|
/* Video Background */
|
|
.hero-video {
|
|
position: absolute;
|
|
top: 50%;
|
|
left: 50%;
|
|
min-width: 100%;
|
|
min-height: 100%;
|
|
width: auto;
|
|
height: auto;
|
|
transform: translate(-50%, -50%);
|
|
z-index: 0;
|
|
object-fit: cover;
|
|
}
|
|
|
|
/* Video Overlay to match brand colors */
|
|
.video-overlay {
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
width: 100%;
|
|
height: 100%;
|
|
background: linear-gradient(135deg,
|
|
rgba(15, 114, 181, 0.7) 0%,
|
|
rgba(0, 64, 110, 0.7) 50%,
|
|
rgba(15, 114, 181, 0.7) 100%);
|
|
mix-blend-mode: multiply;
|
|
z-index: 1;
|
|
}
|
|
|
|
#particleCanvas {
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
width: 100%;
|
|
height: 100%;
|
|
z-index: 2;
|
|
}
|
|
|
|
.hero-content {
|
|
text-align: center;
|
|
z-index: 3;
|
|
position: relative;
|
|
}
|
|
|
|
.hero-title {
|
|
margin-bottom: 2rem;
|
|
}
|
|
|
|
.subtitle {
|
|
display: block;
|
|
font-size: 1.2rem;
|
|
margin-bottom: 0.5rem;
|
|
color: var(--text-dark);
|
|
font-weight: 400;
|
|
letter-spacing: 1px;
|
|
}
|
|
|
|
.main-title {
|
|
display: block;
|
|
font-size: 3.5rem;
|
|
letter-spacing: 2px;
|
|
color: var(--primary-blue);
|
|
font-weight: 700;
|
|
}
|
|
|
|
.hero-text {
|
|
font-size: 1.1rem;
|
|
margin-bottom: 3rem;
|
|
color: var(--text-dark);
|
|
}
|
|
|
|
|
|
.hero-cta {
|
|
display: flex;
|
|
gap: 1rem;
|
|
justify-content: center;
|
|
margin-top: 2rem;
|
|
}
|
|
|
|
|
|
|