Design-Optimierung: Konsistentes Token-System, professionellere Animationen, Navy+Gold Farbschema
- CSS Custom Properties konsolidiert: Neues Token-System mit Navy/Gold Logo-Farben, Spacing-Grid (8px), Border-Radius und Z-Index Skala - Unprofessionelle Animationen entfernt: Glitch, Neon, Morph, Orbit, Ripple - PulseGlow und Shimmer dezenter gemacht (Gold-Akzente) - Typografie: Inter als Hauptschrift, Bebas Neue nur für Hero-Titel - Section-Konsistenz: Hero/Products auf Navy (#0A1832), Footer auf Navy-Dark - Gold-Akzente in Products (Hover-Border, Feature-Bullets, Learn-More Button) - Footer-Links mit Gold-Hover - Card-Hover-Effekte subtiler (translateY -4px statt -10px + scale) - Cookie-Consent auf globale Tokens umgestellt - Mobile: Navy-BG, Gold-Hover statt Cyan Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
Dieser Commit ist enthalten in:
183
css/main.css
183
css/main.css
@@ -1,15 +1,64 @@
|
||||
/* Global Styles - Rheinmetall Design */
|
||||
/* Global Styles - AegisSight Corporate Design */
|
||||
:root {
|
||||
--primary-blue: #0f72b5;
|
||||
--dark-blue: #00406e;
|
||||
--accent-gold: #C8A851;
|
||||
--light-gray: #f4f4f4;
|
||||
--white: #FFFFFF;
|
||||
--text-dark: #333333;
|
||||
--text-gray: #666666;
|
||||
--border-gray: #e0e0e0;
|
||||
/* Primärfarben (Logo) */
|
||||
--color-navy: #0A1832;
|
||||
--color-gold: #C8A851;
|
||||
--color-gold-light: #D4B96A;
|
||||
--color-gold-dark: #B39645;
|
||||
|
||||
/* Navy-Abstufungen */
|
||||
--color-navy-light: #132844;
|
||||
--color-navy-dark: #060F20;
|
||||
|
||||
/* Blau-Akzent (abgeleitet von Navy, für Links/Buttons) */
|
||||
--color-blue: #0f72b5;
|
||||
--color-blue-hover: #0d62a0;
|
||||
|
||||
/* Neutrale Farben */
|
||||
--color-white: #FFFFFF;
|
||||
--color-gray-50: #F8FAFB;
|
||||
--color-gray-100: #f4f4f4;
|
||||
--color-gray-200: #e0e0e0;
|
||||
--color-gray-600: #666666;
|
||||
--color-gray-800: #333333;
|
||||
|
||||
/* Spacing-System (8px-Grid) */
|
||||
--space-xs: 8px;
|
||||
--space-sm: 16px;
|
||||
--space-md: 24px;
|
||||
--space-lg: 32px;
|
||||
--space-xl: 48px;
|
||||
--space-2xl: 64px;
|
||||
--space-3xl: 80px;
|
||||
--space-4xl: 96px;
|
||||
|
||||
/* Border-Radius-System */
|
||||
--radius-sm: 4px;
|
||||
--radius-md: 8px;
|
||||
--radius-lg: 16px;
|
||||
--radius-xl: 24px;
|
||||
--radius-pill: 100px;
|
||||
|
||||
/* Z-Index-Skala */
|
||||
--z-content: 1;
|
||||
--z-sticky: 100;
|
||||
--z-overlay: 1000;
|
||||
--z-modal: 9000;
|
||||
--z-cookie: 10000;
|
||||
|
||||
/* Shadows */
|
||||
--shadow: 0 2px 8px rgba(0,0,0,0.1);
|
||||
--shadow-hover: 0 8px 24px rgba(0,0,0,0.15);
|
||||
|
||||
/* Legacy Aliases (für Rückwärtskompatibilität) */
|
||||
--primary-blue: var(--color-blue);
|
||||
--dark-blue: var(--color-blue-hover);
|
||||
--accent-gold: var(--color-gold);
|
||||
--light-gray: var(--color-gray-100);
|
||||
--white: var(--color-white);
|
||||
--text-dark: var(--color-gray-800);
|
||||
--text-gray: var(--color-gray-600);
|
||||
--border-gray: var(--color-gray-200);
|
||||
}
|
||||
|
||||
* {
|
||||
@@ -25,9 +74,9 @@
|
||||
}
|
||||
|
||||
body {
|
||||
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
|
||||
background-color: #0a0f1c;
|
||||
color: var(--text-dark);
|
||||
font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
|
||||
background-color: var(--color-navy);
|
||||
color: var(--color-gray-800);
|
||||
line-height: 1.6;
|
||||
overflow-x: hidden;
|
||||
}
|
||||
@@ -56,11 +105,11 @@ h6 { font-size: 1.1rem; }
|
||||
font-size: 2.5rem;
|
||||
text-align: center;
|
||||
margin-bottom: 1rem;
|
||||
color: var(--primary-blue);
|
||||
color: var(--color-navy);
|
||||
}
|
||||
|
||||
#about .section-title {
|
||||
color: #0A1832;
|
||||
color: var(--color-navy);
|
||||
}
|
||||
|
||||
.section-subtitle {
|
||||
@@ -95,7 +144,7 @@ h6 { font-size: 1.1rem; }
|
||||
backdrop-filter: blur(10px);
|
||||
-webkit-backdrop-filter: blur(10px);
|
||||
box-shadow: 0 1px 0 rgba(0,0,0,0.1);
|
||||
z-index: 1000;
|
||||
z-index: var(--z-overlay);
|
||||
transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
|
||||
}
|
||||
|
||||
@@ -130,7 +179,7 @@ h6 { font-size: 1.1rem; }
|
||||
}
|
||||
|
||||
.nav-menu a {
|
||||
color: #001f3f;
|
||||
color: var(--color-navy);
|
||||
text-decoration: none;
|
||||
font-weight: 700;
|
||||
font-size: 1.1rem;
|
||||
@@ -142,7 +191,7 @@ h6 { font-size: 1.1rem; }
|
||||
}
|
||||
|
||||
.nav-menu a:hover {
|
||||
color: #0A1832;
|
||||
color: var(--color-navy);
|
||||
transform: translateY(-2px);
|
||||
}
|
||||
|
||||
@@ -153,7 +202,7 @@ h6 { font-size: 1.1rem; }
|
||||
left: 0;
|
||||
width: 0;
|
||||
height: 2px;
|
||||
background: #0A1832;
|
||||
background: var(--color-navy);
|
||||
transition: width 0.3s ease;
|
||||
}
|
||||
|
||||
@@ -169,10 +218,10 @@ h6 { font-size: 1.1rem; }
|
||||
|
||||
.lang-toggle {
|
||||
background: transparent;
|
||||
border: 1px solid var(--border-gray);
|
||||
color: #001f3f;
|
||||
border: 1px solid var(--color-gray-200);
|
||||
color: var(--color-navy);
|
||||
padding: 0.5rem 1rem;
|
||||
border-radius: 4px;
|
||||
border-radius: var(--radius-md);
|
||||
cursor: pointer;
|
||||
transition: all 0.3s ease;
|
||||
font-size: 0.9rem;
|
||||
@@ -192,7 +241,7 @@ h6 { font-size: 1.1rem; }
|
||||
.secondary-button {
|
||||
padding: 0.75rem 1.5rem;
|
||||
border: none;
|
||||
border-radius: 4px;
|
||||
border-radius: var(--radius-md);
|
||||
font-weight: 500;
|
||||
cursor: pointer;
|
||||
transition: all 0.3s ease;
|
||||
@@ -262,7 +311,7 @@ h6 { font-size: 1.1rem; }
|
||||
justify-content: center;
|
||||
position: relative;
|
||||
padding-top: 100px;
|
||||
background: #000000;
|
||||
background: var(--color-navy);
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
@@ -274,7 +323,7 @@ h6 { font-size: 1.1rem; }
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
z-index: 1;
|
||||
background: #000000;
|
||||
background: var(--color-navy);
|
||||
}
|
||||
|
||||
/* Hero Videos */
|
||||
@@ -352,12 +401,14 @@ h6 { font-size: 1.1rem; }
|
||||
|
||||
.main-title {
|
||||
display: block;
|
||||
font-family: 'Bebas Neue', sans-serif;
|
||||
font-size: clamp(3rem, 8vw, 7rem);
|
||||
color: var(--white);
|
||||
font-weight: 700;
|
||||
color: var(--color-white);
|
||||
font-weight: 400;
|
||||
margin-bottom: 1rem;
|
||||
line-height: 1.1;
|
||||
text-align: left;
|
||||
letter-spacing: 2px;
|
||||
}
|
||||
|
||||
.hero-text {
|
||||
@@ -397,8 +448,8 @@ h6 { font-size: 1.1rem; }
|
||||
|
||||
/* About Section */
|
||||
.about-section {
|
||||
padding: 80px 0;
|
||||
background: var(--white);
|
||||
padding: var(--space-4xl) 0;
|
||||
background: var(--color-white);
|
||||
}
|
||||
|
||||
.about-tabs {
|
||||
@@ -527,9 +578,9 @@ h6 { font-size: 1.1rem; }
|
||||
}
|
||||
|
||||
.value-card {
|
||||
background: var(--light-gray);
|
||||
border-radius: 12px;
|
||||
padding: 2rem;
|
||||
background: var(--color-gray-100);
|
||||
border-radius: var(--radius-lg);
|
||||
padding: var(--space-lg);
|
||||
transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
|
||||
position: relative;
|
||||
overflow: hidden;
|
||||
@@ -558,9 +609,9 @@ h6 { font-size: 1.1rem; }
|
||||
}
|
||||
|
||||
.value-card:hover {
|
||||
transform: translateY(-8px) scale(1.02);
|
||||
box-shadow: 0 15px 40px rgba(15, 114, 181, 0.2);
|
||||
background: linear-gradient(135deg, var(--light-gray) 0%, rgba(15, 114, 181, 0.05) 100%);
|
||||
transform: translateY(-4px);
|
||||
box-shadow: 0 12px 24px rgba(10, 24, 50, 0.12);
|
||||
background: linear-gradient(135deg, var(--color-gray-100) 0%, rgba(10, 24, 50, 0.03) 100%);
|
||||
}
|
||||
|
||||
.value-icon {
|
||||
@@ -629,10 +680,10 @@ h6 { font-size: 1.1rem; }
|
||||
}
|
||||
|
||||
.why-card {
|
||||
background: var(--white);
|
||||
border: 1px solid var(--border-gray);
|
||||
border-radius: 12px;
|
||||
padding: 2rem;
|
||||
background: var(--color-white);
|
||||
border: 1px solid var(--color-gray-200);
|
||||
border-radius: var(--radius-lg);
|
||||
padding: var(--space-lg);
|
||||
transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
|
||||
box-shadow: 0 2px 10px rgba(0,0,0,0.05);
|
||||
position: relative;
|
||||
@@ -655,10 +706,10 @@ h6 { font-size: 1.1rem; }
|
||||
}
|
||||
|
||||
.why-card:hover {
|
||||
transform: translateY(-8px) scale(1.02);
|
||||
box-shadow: 0 15px 35px rgba(15, 114, 181, 0.15);
|
||||
border-color: var(--primary-blue);
|
||||
background: linear-gradient(135deg, var(--white) 0%, rgba(15, 114, 181, 0.02) 100%);
|
||||
transform: translateY(-4px);
|
||||
box-shadow: 0 12px 24px rgba(10, 24, 50, 0.12);
|
||||
border-color: var(--color-navy);
|
||||
background: linear-gradient(135deg, var(--color-white) 0%, rgba(10, 24, 50, 0.02) 100%);
|
||||
}
|
||||
|
||||
.why-card:hover .why-icon {
|
||||
@@ -689,8 +740,8 @@ h6 { font-size: 1.1rem; }
|
||||
|
||||
/* Products Section */
|
||||
.products-section {
|
||||
padding: 80px 0;
|
||||
background: var(--light-gray);
|
||||
padding: var(--space-4xl) 0;
|
||||
background: var(--color-gray-100);
|
||||
}
|
||||
|
||||
.product-showcase {
|
||||
@@ -767,10 +818,10 @@ h6 { font-size: 1.1rem; }
|
||||
}
|
||||
|
||||
.tool-card {
|
||||
background: var(--light-gray);
|
||||
border-radius: 12px;
|
||||
padding: 2rem;
|
||||
transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
|
||||
background: var(--color-gray-100);
|
||||
border-radius: var(--radius-lg);
|
||||
padding: var(--space-lg);
|
||||
transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
|
||||
cursor: pointer;
|
||||
position: relative;
|
||||
overflow: hidden;
|
||||
@@ -794,10 +845,10 @@ h6 { font-size: 1.1rem; }
|
||||
}
|
||||
|
||||
.tool-card:hover {
|
||||
transform: translateY(-10px) rotateX(5deg) scale(1.02);
|
||||
box-shadow: 0 20px 40px rgba(15, 114, 181, 0.25);
|
||||
border-color: rgba(15, 114, 181, 0.3);
|
||||
background: linear-gradient(135deg, var(--white) 0%, var(--light-gray) 100%);
|
||||
transform: translateY(-4px);
|
||||
box-shadow: 0 12px 24px rgba(10, 24, 50, 0.15);
|
||||
border-color: rgba(10, 24, 50, 0.2);
|
||||
background: linear-gradient(135deg, var(--color-white) 0%, var(--color-gray-100) 100%);
|
||||
}
|
||||
|
||||
.tool-card:hover .tool-icon {
|
||||
@@ -894,8 +945,8 @@ h6 { font-size: 1.1rem; }
|
||||
|
||||
/* Contact Section */
|
||||
.contact-section {
|
||||
padding: 80px 0;
|
||||
background: var(--white);
|
||||
padding: var(--space-4xl) 0;
|
||||
background: var(--color-white);
|
||||
}
|
||||
|
||||
.contact-grid {
|
||||
@@ -928,11 +979,11 @@ h6 { font-size: 1.1rem; }
|
||||
|
||||
.form-group input,
|
||||
.form-group textarea {
|
||||
background: var(--white);
|
||||
border: 1px solid var(--border-gray);
|
||||
color: var(--text-dark);
|
||||
background: var(--color-white);
|
||||
border: 1px solid var(--color-gray-200);
|
||||
color: var(--color-gray-800);
|
||||
padding: 0.75rem;
|
||||
border-radius: 4px;
|
||||
border-radius: var(--radius-md);
|
||||
transition: all 0.3s ease;
|
||||
font-family: inherit;
|
||||
}
|
||||
@@ -1113,8 +1164,8 @@ h6 { font-size: 1.1rem; }
|
||||
|
||||
/* Legal Section */
|
||||
.legal-section {
|
||||
padding: 80px 0;
|
||||
background: var(--light-gray);
|
||||
padding: var(--space-4xl) 0;
|
||||
background: var(--color-gray-100);
|
||||
}
|
||||
|
||||
.legal-grid {
|
||||
@@ -1124,9 +1175,9 @@ h6 { font-size: 1.1rem; }
|
||||
}
|
||||
|
||||
.legal-card {
|
||||
background: var(--white);
|
||||
border-radius: 8px;
|
||||
padding: 2rem;
|
||||
background: var(--color-white);
|
||||
border-radius: var(--radius-lg);
|
||||
padding: var(--space-lg);
|
||||
box-shadow: var(--shadow);
|
||||
}
|
||||
|
||||
@@ -1151,8 +1202,8 @@ h6 { font-size: 1.1rem; }
|
||||
|
||||
/* Footer */
|
||||
.footer {
|
||||
background: #0a0f1c;
|
||||
color: var(--white);
|
||||
background: var(--color-navy-dark);
|
||||
color: var(--color-white);
|
||||
padding: 3rem 0 1rem;
|
||||
}
|
||||
|
||||
@@ -1184,7 +1235,7 @@ h6 { font-size: 1.1rem; }
|
||||
}
|
||||
|
||||
.footer-section a:hover {
|
||||
color: var(--white);
|
||||
color: var(--color-gold);
|
||||
}
|
||||
|
||||
.copyright {
|
||||
|
||||
In neuem Issue referenzieren
Einen Benutzer sperren