feat: CI-konformes Farbschema gemäß Logo & CI Handbuch (v1.1.0)

- Logo-Gelb auf #DEDC1E korrigiert (Pantone 381 C)
- Petrol #067391 als Sekundärakzent eingeführt (CI-Störer-/Gegenfarbe)
- Generische Slate-Töne durch CI-Grautöne (#848687, #C8C9CA) ersetzt
- Hintergrund von Slate-Navy auf petrol-getöntes Dunkel umgestellt
- Sekundär-Button (Helpdesk im Hero) nutzt jetzt Petrol-Outline
- Hero-Gradient mit Petrol-Akzent unten links ergänzt
- CLAUDE.md mit CI-Quelle und Pantone-Referenzen dokumentiert

Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
This commit is contained in:
2026-05-04 23:05:38 +02:00
parent 96fc0601b5
commit 6662ba2dd1
5 changed files with 134 additions and 99 deletions
+14 -11
View File
@@ -1,5 +1,7 @@
/* ============================================================
sonith.de — Custom Styles
CI-konform: Logo-Gelb #DEDC1E, Petrol #067391, CI-Grau #848687/#C8C9CA
Hintergrund: petrol-getoentes Dunkel #0a1f28 / #102b38
============================================================ */
/* Smooth scrolling offset for fixed nav */
@@ -9,19 +11,19 @@ html {
/* ---- Navbar ---- */
#navbar {
background: rgba(15, 23, 42, 0.8);
background: rgba(10, 31, 40, 0.8);
backdrop-filter: blur(12px);
-webkit-backdrop-filter: blur(12px);
}
#navbar.scrolled {
background: rgba(15, 23, 42, 0.95);
box-shadow: 0 1px 0 rgba(100, 116, 139, 0.1);
background: rgba(10, 31, 40, 0.95);
box-shadow: 0 1px 0 rgba(6, 115, 145, 0.2);
}
/* Active nav link */
.nav-link.active {
color: #DEDC1B;
color: #DEDC1E;
}
/* ---- Fade-in Animation ---- */
@@ -62,7 +64,8 @@ html {
.service-card:nth-child(6) { transition-delay: 0.40s; }
.service-card:hover {
box-shadow: 0 0 24px rgba(222, 220, 27, 0.06);
box-shadow: 0 0 24px rgba(222, 220, 30, 0.08),
0 0 48px rgba(6, 115, 145, 0.06);
}
/* ---- USP Cards ---- */
@@ -94,32 +97,32 @@ html {
/* ---- Selection Color ---- */
::selection {
background: rgba(222, 220, 27, 0.3);
background: rgba(222, 220, 30, 0.3);
color: #fff;
}
/* ---- Scrollbar ---- */
/* ---- Scrollbar (CI-Petrol-Toene) ---- */
::-webkit-scrollbar {
width: 8px;
}
::-webkit-scrollbar-track {
background: #0f172a;
background: #0a1f28;
}
::-webkit-scrollbar-thumb {
background: #334155;
background: #1a3d4d;
border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
background: #475569;
background: #045066;
}
/* ---- Focus Styles ---- */
a:focus-visible,
button:focus-visible {
outline: 2px solid #DEDC1B;
outline: 2px solid #DEDC1E;
outline-offset: 2px;
border-radius: 4px;
}