Archiv: Letzter Stand der Webseite vor Promotion der Vorschau

Vollstaendiger Snapshot des Live-Standes von /opt/v2-Docker/aegis-website/html
am 2026-04-26, kurz bevor die Inhalte aus /vorschau/ in den Root verschoben
und die alte Webseite ausgemustert wurde. Dient als historische Referenz;
nicht fuer aktive Entwicklung gedacht.

Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
Dieser Commit ist enthalten in:
claude-dev
2026-04-26 14:22:12 +02:00
Commit b82c1f6590
99 geänderte Dateien mit 18239 neuen und 0 gelöschten Zeilen

612
css/about-modern.css Normale Datei
Datei anzeigen

@@ -0,0 +1,612 @@
/* Modern About Section Redesign */
/* About Section Background */
.about-section {
background: linear-gradient(135deg, var(--color-white) 0%, var(--color-gray-50) 100%);
position: relative;
overflow: hidden;
padding: var(--space-4xl) 0;
}
.about-section::before {
content: '';
position: absolute;
top: -50%;
right: -20%;
width: 60%;
height: 60%;
background: radial-gradient(circle, rgba(10, 24, 50, 0.04) 0%, transparent 70%);
border-radius: 50%;
animation: float-slow 20s ease-in-out infinite;
}
@keyframes float-slow {
0%, 100% { transform: translate(0, 0) scale(1); }
33% { transform: translate(-30px, -30px) scale(1.05); }
66% { transform: translate(30px, -20px) scale(0.95); }
}
/* Modern Tab Navigation */
.about-tabs {
display: flex;
justify-content: center;
gap: 20px;
margin-bottom: 4rem;
position: relative;
padding: 10px;
background: rgba(255, 255, 255, 0.8);
backdrop-filter: blur(10px);
border-radius: 100px;
box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
max-width: 800px;
margin-left: auto;
margin-right: auto;
border: none;
}
.about-tab {
background: transparent;
border: none;
color: var(--color-gray-600);
padding: 15px 30px;
cursor: pointer;
transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
font-size: 1rem;
font-weight: 600;
border-radius: 50px;
position: relative;
overflow: hidden;
z-index: 1;
}
.about-tab::before {
content: '';
position: absolute;
top: 50%;
left: 50%;
width: 0;
height: 0;
border-radius: 50px;
background: var(--color-navy);
transform: translate(-50%, -50%);
transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
z-index: -1;
}
.about-tab.active::before {
width: 100%;
height: 100%;
}
.about-tab.active {
color: var(--color-white);
transform: scale(1.05);
box-shadow: 0 8px 20px rgba(10, 24, 50, 0.3);
}
.about-tab:hover:not(.active) {
color: var(--color-gold-dark);
transform: translateY(-2px);
background: rgba(200, 168, 81, 0.08);
}
/* Tab Content Panels */
.about-content {
max-width: 1200px;
margin: 0 auto;
position: relative;
}
.about-panel {
display: none;
animation: fadeInUp 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.about-panel.active {
display: block;
}
@keyframes fadeInUp {
from {
opacity: 0;
transform: translateY(30px);
}
to {
opacity: 1;
transform: translateY(0);
}
}
/* Company Tab - Cards Layout */
#who-we-are .panel-text {
display: flex;
gap: 40px;
align-items: stretch;
min-height: 500px;
}
.company-cards-wrapper {
display: flex;
flex-direction: column;
gap: 30px;
width: 50%;
justify-content: space-between;
}
.company-card {
background: white;
border-radius: 20px;
padding: 40px;
box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
position: relative;
overflow: hidden;
transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
flex: 1;
display: flex;
flex-direction: column;
}
.company-card::before {
content: '';
position: absolute;
top: 0;
left: 0;
width: 4px;
height: 100%;
background: #0A1832;
transform: scaleY(0);
transition: transform 0.4s;
}
.company-card:hover::before {
transform: scaleY(1);
}
.company-card:hover {
transform: translateX(6px);
box-shadow: 0 12px 32px rgba(10, 24, 50, 0.1);
}
.company-card h4 {
color: var(--color-navy);
font-size: 1.4rem;
margin-bottom: 15px;
display: flex;
align-items: center;
gap: 15px;
}
.company-card-icon {
width: 70px;
height: 70px;
background: linear-gradient(135deg, rgba(15, 114, 181, 0.1), rgba(0, 64, 110, 0.05));
border-radius: 20px;
display: flex;
align-items: center;
justify-content: center;
flex-shrink: 0;
transition: all 0.4s;
}
.company-card:hover .company-card-icon {
transform: scale(1.1) rotate(5deg);
background: #0A1832;
}
.company-card-icon img {
width: 35px;
height: 35px;
filter: brightness(0) saturate(100%) invert(42%) sepia(82%) saturate(723%) hue-rotate(178deg) brightness(98%) contrast(92%);
transition: filter 0.4s;
}
.company-card:hover .company-card-icon img {
filter: brightness(0) saturate(100%) invert(100%);
}
/* Mission & Values - Modern Grid */
.mission-grid {
text-align: left;
}
.mission-header {
background: #0A1832;
color: white;
padding: 60px;
border-radius: 30px;
margin-bottom: 40px;
position: relative;
overflow: hidden;
}
.mission-header::after {
content: '';
position: absolute;
top: -50%;
right: -10%;
width: 50%;
height: 200%;
background: rgba(255, 255, 255, 0.1);
transform: rotate(45deg);
}
.mission-header h3 {
font-size: 2.5rem;
margin-bottom: 20px;
position: relative;
z-index: 1;
color: #ffffff;
}
.mission-header p {
font-size: 1.2rem;
position: relative;
z-index: 1;
opacity: 0.95;
}
.values-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 30px;
margin: 3rem 0;
}
.value-card {
background: white;
border-radius: 24px;
padding: 35px;
transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
position: relative;
overflow: hidden;
border: 2px solid transparent;
cursor: pointer;
}
.value-card::after {
content: '';
position: absolute;
inset: 0;
background: linear-gradient(135deg, rgba(15, 114, 181, 0.1) 0%, transparent 100%);
opacity: 0;
transition: opacity 0.4s;
}
.value-card:hover::after {
opacity: 1;
}
.value-card:hover {
transform: translateY(-4px);
box-shadow: 0 12px 32px rgba(10, 24, 50, 0.12);
border-color: var(--color-navy);
}
.value-icon {
width: 100px;
height: 100px;
margin-bottom: 20px;
background: linear-gradient(135deg, rgba(15, 114, 181, 0.1), rgba(0, 64, 110, 0.05));
border-radius: 30px;
display: flex;
align-items: center;
justify-content: center;
transition: all 0.4s;
}
.value-icon img {
width: 50px;
height: 50px;
filter: brightness(0) saturate(100%) invert(42%) sepia(82%) saturate(723%) hue-rotate(178deg) brightness(98%) contrast(92%);
transition: filter 0.4s;
}
.value-card:hover .value-icon {
transform: scale(1.1) rotate(5deg);
background: #0A1832;
}
.value-card:hover .value-icon img {
filter: brightness(0) saturate(100%) invert(100%);
}
/* Competencies - Timeline Style */
.competencies-list {
position: relative;
padding-left: 40px;
}
.competencies-list::before {
content: '';
position: absolute;
left: 10px;
top: 0;
width: 3px;
height: 100%;
background: #0A1832;
border-radius: 2px;
}
.competency-item {
display: grid;
grid-template-columns: auto 1fr;
gap: 30px;
align-items: center;
padding: 30px;
margin-bottom: 30px;
background: white;
border-radius: 20px;
position: relative;
transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}
.competency-item::before {
content: '';
position: absolute;
left: -30px;
top: 50%;
transform: translateY(-50%);
width: 20px;
height: 20px;
background: white;
border: 4px solid #0f72b5;
border-radius: 50%;
z-index: 1;
}
.competency-item:hover {
transform: translateX(10px);
box-shadow: 0 8px 24px rgba(10, 24, 50, 0.1);
}
.competency-number {
font-size: 3rem;
font-weight: 700;
background: linear-gradient(135deg, #C8A851, #B39645);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
opacity: 1;
}
/* Why AegisSight - 2x2 Grid */
.why-grid {
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 30px;
grid-auto-rows: minmax(250px, auto);
}
.why-card {
grid-column: span 1;
grid-row: span 1;
}
.why-card {
background: white;
border-radius: 24px;
padding: 35px;
transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
position: relative;
overflow: hidden;
display: flex;
flex-direction: column;
justify-content: space-between;
box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
border: 2px solid transparent;
}
.why-card:hover {
transform: translateY(-4px);
box-shadow: 0 12px 24px rgba(10, 24, 50, 0.1);
border-color: rgba(10, 24, 50, 0.2);
}
.why-icon {
width: 100px;
height: 100px;
margin: 0 auto 25px;
display: flex;
align-items: center;
justify-content: center;
background: linear-gradient(135deg, rgba(15, 114, 181, 0.1), rgba(0, 64, 110, 0.05));
border-radius: 30px;
transition: all 0.4s;
}
.why-icon img {
width: 50px;
height: 50px;
filter: brightness(0) saturate(100%) invert(42%) sepia(82%) saturate(723%) hue-rotate(178deg) brightness(98%) contrast(92%);
transition: filter 0.4s;
}
/* German Flag Icon Special Styling */
.german-flag-icon {
background: transparent !important;
padding: 15px;
}
.german-flag-icon img {
width: 70px !important;
height: 42px !important;
border-radius: 4px;
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
filter: none !important;
}
.why-card:hover .german-flag-icon {
background: transparent !important;
transform: scale(1.15);
}
.why-card:hover .german-flag-icon img {
box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
filter: none !important;
}
.why-card:hover .why-icon {
transform: scale(1.1) rotate(5deg);
background: #0A1832;
}
.why-card:hover .why-icon img {
filter: brightness(0) saturate(100%) invert(100%);
}
.why-card h4 {
font-size: 1.6rem;
margin-bottom: 20px;
color: var(--color-navy);
text-align: center;
font-weight: 700;
text-transform: uppercase;
letter-spacing: 0.5px;
}
.why-card p {
color: var(--color-gray-600);
line-height: 1.8;
flex-grow: 1;
text-align: center;
font-size: 1.05rem;
}
/* Location Section with Map */
.location-section {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
width: 45%;
margin-left: auto;
height: 100%;
}
.mini-germany-map {
flex: 1;
width: 100%;
max-width: 350px;
padding: 30px;
background: white;
border-radius: 20px;
box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
display: flex;
align-items: center;
justify-content: center;
transition: all 0.3s;
margin-bottom: 20px;
position: relative;
overflow: hidden;
}
.mini-germany-map::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: radial-gradient(circle at 35% 45%, rgba(10, 24, 50, 0.3) 0%, transparent 40%);
opacity: 0;
transition: opacity 0.4s ease;
pointer-events: none;
z-index: 2;
}
.mini-germany-map:hover::before {
opacity: 1;
}
.mini-germany-map:hover {
transform: scale(1.02);
box-shadow: 0 15px 50px rgba(10, 24, 50, 0.15);
}
.mini-germany-map img {
width: 100%;
height: auto;
max-height: 100%;
object-fit: contain;
transition: all 0.4s ease;
position: relative;
z-index: 1;
}
.mini-germany-map:hover img {
filter: brightness(1.1) contrast(1.1);
}
/* Pulsing glow effect for NRW region */
@keyframes nrwPulse {
0%, 100% {
filter: drop-shadow(0 0 10px rgba(10, 24, 50, 0.5));
}
50% {
filter: drop-shadow(0 0 25px rgba(10, 24, 50, 0.8));
}
}
.mini-germany-map:hover img {
animation: nrwPulse 2s ease-in-out infinite;
}
/* Location Badge Enhancement */
.location-badge {
display: inline-flex;
align-items: center;
gap: 12px;
padding: 12px 24px;
background: linear-gradient(135deg, rgba(15, 114, 181, 0.1), rgba(0, 64, 110, 0.05));
border-radius: 100px;
color: #0f72b5;
font-weight: 600;
border: 2px solid rgba(15, 114, 181, 0.2);
transition: all 0.3s;
}
.location-badge:hover {
background: #0A1832;
color: white;
transform: scale(1.05);
box-shadow: 0 10px 30px rgba(15, 114, 181, 0.3);
}
.location-badge svg {
width: 24px;
height: 24px;
transition: all 0.3s;
}
.location-badge:hover svg {
animation: ping 1s cubic-bezier(0, 0, 0.2, 1) infinite;
}
@keyframes ping {
0%, 100% {
transform: scale(1);
opacity: 1;
}
50% {
transform: scale(1.2);
opacity: 0.8;
}
}
/* Responsive Design */
@media (max-width: 768px) {
.about-tabs {
flex-direction: column;
border-radius: 20px;
gap: 10px;
}
.why-grid {
grid-template-columns: 1fr;
}
.competencies-list {
padding-left: 20px;
}
}

222
css/animations-enhanced.css Normale Datei
Datei anzeigen

@@ -0,0 +1,222 @@
/* Enhanced Modern Animations & Effects */
/* Glassmorphism Base */
.glass {
background: rgba(255, 255, 255, 0.1);
backdrop-filter: blur(10px);
-webkit-backdrop-filter: blur(10px);
border: 1px solid rgba(255, 255, 255, 0.2);
}
.glass-dark {
background: rgba(0, 0, 0, 0.3);
backdrop-filter: blur(20px);
-webkit-backdrop-filter: blur(20px);
border: 1px solid rgba(255, 255, 255, 0.1);
}
/* Smooth Fade In Animations */
@keyframes fadeInUp {
from {
opacity: 0;
transform: translateY(30px);
}
to {
opacity: 1;
transform: translateY(0);
}
}
@keyframes fadeInScale {
from {
opacity: 0;
transform: scale(0.9);
}
to {
opacity: 1;
transform: scale(1);
}
}
@keyframes slideInRight {
from {
opacity: 0;
transform: translateX(-50px);
}
to {
opacity: 1;
transform: translateX(0);
}
}
/* Staggered Animation Classes */
.animate-in {
opacity: 0;
animation: fadeInUp 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}
.animate-in-scale {
opacity: 0;
animation: fadeInScale 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}
.stagger-1 { animation-delay: 0.1s; }
.stagger-2 { animation-delay: 0.2s; }
.stagger-3 { animation-delay: 0.3s; }
.stagger-4 { animation-delay: 0.4s; }
.stagger-5 { animation-delay: 0.5s; }
/* Floating Animation */
@keyframes float {
0%, 100% { transform: translateY(0px); }
50% { transform: translateY(-20px); }
}
.floating {
animation: float 6s ease-in-out infinite;
}
/* Pulse Glow Animation - Dezent */
@keyframes pulseGlow {
0%, 100% {
box-shadow:
0 0 5px rgba(10, 24, 50, 0.2),
0 0 10px rgba(10, 24, 50, 0.1);
}
50% {
box-shadow:
0 0 10px rgba(10, 24, 50, 0.3),
0 0 20px rgba(10, 24, 50, 0.15);
}
}
.pulse-glow {
animation: pulseGlow 3s ease-in-out infinite;
}
/* Gradient Animation */
@keyframes gradientShift {
0% { background-position: 0% 50%; }
50% { background-position: 100% 50%; }
100% { background-position: 0% 50%; }
}
.gradient-animated {
background: linear-gradient(
-45deg,
var(--color-navy),
var(--color-navy-light),
var(--color-navy),
var(--color-blue)
);
background-size: 400% 400%;
animation: gradientShift 15s ease infinite;
}
/* Text Reveal Animation */
@keyframes textReveal {
from {
clip-path: polygon(0 0, 0 0, 0 100%, 0% 100%);
}
to {
clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}
}
.text-reveal {
animation: textReveal 1.5s cubic-bezier(0.77, 0, 0.175, 1) forwards;
}
/* Card Hover Effects - Subtil */
.card-hover-lift {
transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.card-hover-lift:hover {
transform: translateY(-4px);
box-shadow: 0 12px 24px rgba(10, 24, 50, 0.12);
}
/* Magnetic Button Effect */
.magnetic-button {
position: relative;
transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}
.magnetic-button::before {
content: '';
position: absolute;
top: 50%;
left: 50%;
width: 0;
height: 0;
border-radius: 50%;
background: rgba(255, 255, 255, 0.3);
transform: translate(-50%, -50%);
transition: width 0.6s, height 0.6s;
}
.magnetic-button:hover::before {
width: 300px;
height: 300px;
}
/* Parallax Layers */
.parallax-slow { transform: translateZ(-1px) scale(1.5); }
.parallax-medium { transform: translateZ(-2px) scale(2); }
.parallax-fast { transform: translateZ(-3px) scale(2.5); }
/* Reveal on Scroll */
.reveal {
opacity: 0;
transform: translateY(50px);
transition: all 1s cubic-bezier(0.4, 0, 0.2, 1);
}
.reveal.active {
opacity: 1;
transform: translateY(0);
}
/* Smooth Scroll Indicator */
@keyframes scrollDown {
0% {
transform: translateY(0);
opacity: 0;
}
40% {
opacity: 1;
}
80% {
transform: translateY(20px);
opacity: 0;
}
100% {
opacity: 0;
}
}
.scroll-indicator-animated {
animation: scrollDown 2s infinite;
}
/* Loading Shimmer - Für Gold-Akzente */
@keyframes shimmer {
0% {
background-position: -1000px 0;
}
100% {
background-position: 1000px 0;
}
}
.shimmer {
background: linear-gradient(
90deg,
rgba(200, 168, 81, 0) 0%,
rgba(200, 168, 81, 0.2) 50%,
rgba(200, 168, 81, 0) 100%
);
background-size: 1000px 100%;
animation: shimmer 3s infinite;
}

271
css/animations.css Normale Datei
Datei anzeigen

@@ -0,0 +1,271 @@
/* 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;
}

47
css/fonts.css Normale Datei
Datei anzeigen

@@ -0,0 +1,47 @@
/* Local Font Definitions - DSGVO-compliant */
/*
* Schrift-Zuordnung:
* - Bebas Neue: Nur für Hero-Titel "SICHERHEIT MADE IN GERMANY" (Display)
* - Inter: Navigation, Überschriften, Fließtext, Buttons (alles andere)
* - System-Fonts: Nur als Fallback
*/
@font-face {
font-family: 'Bebas Neue';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url('../assets/fonts/BebasNeue-Regular.ttf') format('truetype');
}
@font-face {
font-family: 'Inter';
font-style: normal;
font-weight: 300;
font-display: swap;
src: url('../assets/fonts/Inter-Light.ttf') format('truetype');
}
@font-face {
font-family: 'Inter';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url('../assets/fonts/Inter-Regular.ttf') format('truetype');
}
@font-face {
font-family: 'Inter';
font-style: normal;
font-weight: 600;
font-display: swap;
src: url('../assets/fonts/Inter-SemiBold.ttf') format('truetype');
}
@font-face {
font-family: 'Inter';
font-style: normal;
font-weight: 700;
font-display: swap;
src: url('../assets/fonts/Inter-Bold.ttf') format('truetype');
}

1550
css/main.css Normale Datei

Datei-Diff unterdrückt, da er zu groß ist Diff laden

539
css/mobile.css Normale Datei
Datei anzeigen

@@ -0,0 +1,539 @@
/* Mobile Responsive Styles - AegisSight */
/* Mobile-First Approach with Progressive Enhancement */
/* Base Mobile Styles (320px and up) */
@media screen and (max-width: 480px) {
/* Typography Scaling */
html {
font-size: 14px;
}
body {
overflow-x: hidden;
}
/* Hero Section Mobile */
.hero {
min-height: 100vh;
padding: 1rem;
}
.hero-title .main-title {
font-size: 2rem;
line-height: 1.2;
word-break: break-word;
}
.hero-text {
font-size: 1rem;
padding: 0 1rem;
}
/* Keep videos on mobile but optimize */
.hero-video-container {
display: block;
}
.hero-video {
object-fit: cover;
}
/* Navigation Mobile */
.navbar {
padding: 0.5rem 1rem;
}
.nav-container {
justify-content: space-between;
}
.logo-img {
max-width: 120px;
height: auto;
}
/* Hide desktop menu */
.nav-menu {
display: none;
}
/* Mobile Menu Styles */
.mobile-menu-toggle {
display: block;
background: none;
border: none;
cursor: pointer;
padding: 0.5rem;
z-index: 1001;
}
.hamburger {
display: flex;
flex-direction: column;
gap: 4px;
}
.hamburger span {
display: block;
width: 25px;
height: 3px;
background: var(--color-navy, #0A1832);
transition: all 0.3s ease;
}
/* Hamburger Animation */
.mobile-menu-toggle.active .hamburger span:nth-child(1) {
transform: rotate(45deg) translate(5px, 5px);
}
.mobile-menu-toggle.active .hamburger span:nth-child(2) {
opacity: 0;
}
.mobile-menu-toggle.active .hamburger span:nth-child(3) {
transform: rotate(-45deg) translate(7px, -6px);
}
/* Mobile Navigation Menu */
.nav-menu-mobile {
position: fixed;
top: 0;
right: -100%;
width: 80%;
max-width: 300px;
height: 100vh;
background: rgba(10, 24, 50, 0.98);
backdrop-filter: blur(10px);
transition: right 0.3s ease;
z-index: 1000;
padding: 4rem 2rem 2rem;
overflow-y: auto;
}
/* Close button inside mobile menu */
.mobile-menu-close {
position: absolute;
top: 1rem;
right: 1rem;
background: none;
border: none;
cursor: pointer;
padding: 0.5rem;
display: flex;
align-items: center;
justify-content: center;
width: 40px;
height: 40px;
border-radius: 50%;
transition: background 0.3s ease;
}
.mobile-menu-close:hover {
background: rgba(200, 168, 81, 0.15);
}
.mobile-menu-close svg {
width: 24px;
height: 24px;
stroke: var(--color-white, #fff);
stroke-width: 2;
}
.nav-menu-mobile.active {
right: 0;
}
.nav-menu-mobile ul {
list-style: none;
padding: 0;
margin: 0;
}
.nav-menu-mobile li {
margin-bottom: 1.5rem;
}
.nav-menu-mobile a {
color: #fff;
text-decoration: none;
font-size: 1.2rem;
display: block;
padding: 0.5rem 0;
transition: color 0.3s ease;
}
.nav-menu-mobile a:hover {
color: var(--color-gold, #C8A851);
}
/* Mobile Overlay */
.mobile-menu-overlay {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: rgba(0, 0, 0, 0.5);
opacity: 0;
visibility: hidden;
transition: all 0.3s ease;
z-index: 999;
}
.mobile-menu-overlay.active {
opacity: 1;
visibility: visible;
}
/* Sections Mobile */
.section-title {
font-size: 1.75rem;
}
.section-subtitle {
font-size: 1rem;
}
/* Cards and Grids Mobile */
.tool-grid {
grid-template-columns: 1fr;
gap: 1rem;
padding: 1rem;
}
.tool-card {
padding: 1.5rem;
}
/* Buttons Mobile - Touch Friendly */
button,
.btn,
.cta-button,
.lang-toggle {
min-height: 44px;
min-width: 44px;
padding: 0.75rem 1.5rem;
}
/* About Tabs Mobile */
.about-tabs {
flex-direction: column;
gap: 0.5rem;
}
.about-tab {
width: 100%;
padding: 0.75rem;
font-size: 0.9rem;
}
/* Products Section Mobile */
.products-grid {
grid-template-columns: 1fr;
padding: 1rem;
gap: 1.5rem;
}
.product-card {
padding: 1.5rem;
}
/* Product header mobile - override grid to stack icon above text */
.product-header {
display: flex !important;
flex-direction: column !important;
grid-template-columns: none !important;
padding: 1.5rem !important;
text-align: center;
align-items: center;
gap: 1rem;
}
.product-icon-wrapper {
margin-bottom: 0.5rem;
}
.product-title-wrapper {
display: flex;
flex-direction: column;
gap: 0.25rem;
align-items: center;
width: 100%;
text-align: center !important;
}
.product-title {
font-size: 1.1rem;
line-height: 1.2;
margin: 0;
text-align: center !important;
width: 100%;
}
.product-tagline {
font-size: 0.75rem;
margin: 0;
line-height: 1.2;
text-align: center !important;
width: 100%;
white-space: normal;
}
/* Specific fix for AccountForger tagline */
.product-card:nth-child(2) .product-tagline {
display: block;
margin: 0 auto;
white-space: nowrap; /* Verhindert Umbruch innerhalb der Zeilen */
}
/* Force line break only after "mit" */
.product-card:nth-child(2) .product-tagline::before {
content: "Zugang nur mit\A Berechtigung";
white-space: pre-line;
}
/* Hide original text */
.product-card:nth-child(2) .product-tagline {
font-size: 0;
}
.product-card:nth-child(2) .product-tagline::before {
font-size: 0.75rem;
}
/* Footer Mobile */
.footer-content {
flex-direction: column;
text-align: center;
gap: 2rem;
}
.footer-links {
flex-direction: column;
gap: 1rem;
}
/* About Section - Company Cards Mobile Fix */
.company-cards-wrapper {
width: 100% !important;
flex-direction: column;
gap: 1.5rem;
}
.company-card {
width: 100%;
padding: 1.5rem !important;
}
.company-card h4 {
font-size: 1.1rem;
}
.company-card p {
font-size: 0.9rem;
line-height: 1.6;
}
/* About panel layout mobile */
.about-panel {
padding: 1rem;
}
.panel-text {
max-width: 100%;
display: flex;
flex-direction: column;
}
/* Location section mobile - move to bottom */
.location-section {
width: 100% !important;
margin-left: 0 !important;
margin-top: 2rem;
order: 2; /* Move to bottom */
height: auto !important;
padding: 1.5rem;
background: rgba(10, 15, 28, 0.05);
border-radius: 20px;
}
.company-cards-wrapper {
order: 1; /* Keep at top */
}
.mini-germany-map {
max-width: 150px;
margin-bottom: 1rem;
}
.mini-germany-map img {
width: 100%;
height: auto;
}
.location-badge {
font-size: 0.9rem;
padding: 0.5rem 1rem;
}
}
/* Tablet Styles (481px - 768px) */
@media screen and (min-width: 481px) and (max-width: 768px) {
/* Typography */
html {
font-size: 15px;
}
.hero-title .main-title {
font-size: 2.5rem;
}
/* Videos already visible from mobile */
/* Tool Grid - 2 columns */
.tool-grid {
grid-template-columns: repeat(2, 1fr);
}
/* About Tabs - Horizontal with wrap */
.about-tabs {
flex-direction: row;
flex-wrap: wrap;
}
.about-tab {
flex: 1 1 calc(50% - 0.5rem);
}
}
/* Small Desktop (769px - 1024px) */
@media screen and (min-width: 769px) and (max-width: 1024px) {
/* Container widths */
.container {
max-width: 960px;
padding: 0 2rem;
}
/* Navigation adjustments */
.nav-menu {
gap: 1.5rem;
}
.nav-menu a {
font-size: 0.9rem;
}
/* Grid adjustments */
.tool-grid {
grid-template-columns: repeat(3, 1fr);
}
.products-grid {
grid-template-columns: repeat(2, 1fr);
}
}
/* Touch Device Optimizations */
@media (hover: none) and (pointer: coarse) {
/* Remove hover effects on touch devices */
.tool-card:hover,
.product-card:hover {
transform: none;
}
/* Larger touch targets */
a, button {
min-height: 44px;
display: inline-flex;
align-items: center;
}
}
/* Landscape Mobile Optimization */
@media screen and (max-width: 768px) and (orientation: landscape) {
.hero {
min-height: auto;
padding: 2rem 1rem;
}
.hero-title .main-title {
font-size: 1.75rem;
}
}
/* High Resolution Mobile Displays */
@media screen and (max-width: 480px) and (-webkit-min-device-pixel-ratio: 2) {
/* Sharper borders and shadows */
.tool-card,
.product-card {
border: 0.5px solid rgba(255, 255, 255, 0.1);
}
}
/* Performance Optimizations for Mobile */
@media screen and (max-width: 768px) {
/* Disable complex animations on mobile */
.animate-in,
.stagger-1,
.stagger-2,
.stagger-3 {
animation: none !important;
opacity: 1 !important;
transform: none !important;
}
/* Reduce particle effects */
#particleCanvas {
display: none;
}
/* Optimize images */
img {
image-rendering: -webkit-optimize-contrast;
}
}
/* Tablet and Small Desktop (768px - 1024px) */
@media screen and (min-width: 768px) and (max-width: 1024px) {
/* Navigation adjustments for tablets */
.nav-container {
padding: 1rem;
}
/* Keep centered logo but adjust size */
.logo-img {
height: 50px;
}
/* Adjust menu spacing */
.nav-menu {
gap: 1.5rem;
}
.nav-menu a {
font-size: 1rem;
}
/* Language toggle smaller on tablets */
.lang-toggle {
padding: 0.4rem 0.8rem;
font-size: 0.85rem;
}
}
/* Print Styles */
@media print {
.navbar,
.hero-video-container,
.scroll-indicator,
.mobile-menu-toggle {
display: none !important;
}
body {
background: white;
color: black;
}
}

502
css/products-modern.css Normale Datei
Datei anzeigen

@@ -0,0 +1,502 @@
/* Modern Products Section Design */
.products-section {
background: var(--color-navy);
position: relative;
padding: var(--space-4xl) 0;
overflow: hidden;
}
/* Animated Background */
.products-section::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background:
radial-gradient(circle at 20% 50%, rgba(19, 40, 68, 0.3) 0%, transparent 50%),
radial-gradient(circle at 80% 50%, rgba(19, 40, 68, 0.2) 0%, transparent 50%),
radial-gradient(circle at 50% 100%, rgba(200, 168, 81, 0.05) 0%, transparent 50%);
animation: backgroundShift 20s ease-in-out infinite;
}
@keyframes backgroundShift {
0%, 100% { transform: translate(0, 0) scale(1); }
33% { transform: translate(-20px, -20px) scale(1.1); }
66% { transform: translate(20px, -10px) scale(0.95); }
}
/* Section Title */
.products-section .section-title {
color: #ffffff;
font-size: 3.5rem;
text-transform: uppercase;
letter-spacing: 3px;
margin-bottom: 20px;
position: relative;
display: inline-block;
animation: titleGlow 3s ease-in-out infinite;
}
@keyframes titleGlow {
0%, 100% { text-shadow: 0 0 15px rgba(200, 168, 81, 0.3); }
50% { text-shadow: 0 0 25px rgba(200, 168, 81, 0.5), 0 0 40px rgba(200, 168, 81, 0.2); }
}
.products-section .section-subtitle {
color: rgba(255, 255, 255, 0.7);
font-size: 1.3rem;
margin-bottom: 80px;
}
/* Products Container */
.products-container {
max-width: 1400px;
margin: 0 auto;
padding: 0 20px;
position: relative;
z-index: 2;
}
/* Products Grid */
.products-grid {
display: flex;
flex-direction: column;
align-items: center;
gap: 30px;
margin-bottom: 60px;
}
/* Product Card */
.product-card {
background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(245, 245, 245, 0.95));
border: 1px solid rgba(200, 168, 81, 0.3);
border-radius: var(--radius-lg);
padding: 0;
position: relative;
overflow: visible;
transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
cursor: pointer;
width: 90%;
max-width: 900px;
display: flex;
flex-direction: column;
backdrop-filter: blur(10px);
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}
.product-card::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: linear-gradient(135deg, transparent 0%, rgba(15, 114, 181, 0.05) 100%);
opacity: 0;
transition: opacity 0.5s;
border-radius: 20px;
}
.product-card:hover::before {
opacity: 1;
}
.product-card:hover {
transform: translateY(-6px);
background: linear-gradient(135deg, rgba(255, 255, 255, 1), rgba(250, 250, 250, 1));
border-color: var(--color-gold);
box-shadow:
0 20px 40px rgba(0, 0, 0, 0.3),
0 0 40px rgba(200, 168, 81, 0.1);
}
/* Product Header */
.product-header {
padding: 40px 40px 30px;
background: linear-gradient(135deg, rgba(10, 24, 50, 0.1) 0%, transparent 50%);
border-bottom: 1px solid rgba(200, 168, 81, 0.2);
display: grid;
grid-template-columns: 80px 1fr;
align-items: center;
gap: 25px;
}
.product-icon-wrapper {
width: 80px;
height: 80px;
position: relative;
display: flex;
align-items: center;
justify-content: center;
flex-shrink: 0;
}
.product-icon-bg {
position: absolute;
width: 100%;
height: 100%;
background: linear-gradient(135deg, var(--color-navy), var(--color-gold));
border-radius: var(--radius-lg);
opacity: 0.1;
transition: all 0.5s;
}
.product-card:hover .product-icon-bg {
opacity: 0.25;
transform: rotate(5deg) scale(1.05);
background: linear-gradient(135deg, var(--color-navy), var(--color-gold-dark));
}
.product-icon {
position: relative;
z-index: 1;
width: 50px;
height: 50px;
filter: brightness(0) saturate(100%) invert(8%) sepia(13%) saturate(4290%) hue-rotate(189deg) brightness(95%) contrast(97%);
transition: all 0.5s;
}
.product-card:hover .product-icon {
transform: scale(1.1);
filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(0%) hue-rotate(0deg) brightness(100%) contrast(100%);
}
.product-title-wrapper {
display: flex;
flex-direction: column;
gap: 5px;
align-items: center;
text-align: center;
padding-right: 105px;
}
.product-title {
color: #0A1832;
font-size: 1.8rem;
font-weight: 700;
margin: 0;
transition: all 0.3s;
}
/* Specific styling for product titles */
.product-title[data-translate="productAccountForgerTitle"],
.product-title[data-translate="productOsintMonitorTitle"] {
color: #0A1832;
}
.product-card:hover .product-title {
color: var(--color-navy);
}
.product-tagline {
color: rgba(0, 0, 0, 0.6);
font-size: 0.9rem;
text-transform: uppercase;
letter-spacing: 2px;
font-weight: 500;
margin: 0;
}
/* Product Body */
.product-body {
padding: 30px 40px;
flex-grow: 1;
display: flex;
flex-direction: column;
}
.product-description {
color: rgba(0, 0, 0, 0.7);
line-height: 1.8;
margin-bottom: 30px;
flex-grow: 1;
}
/* Product Features */
.product-features {
list-style: none;
padding: 0;
margin: 0 0 30px 0;
}
.product-features li {
color: rgba(255, 255, 255, 0.7);
padding: 8px 0;
padding-left: 30px;
position: relative;
transition: all 0.3s;
}
.product-features li::before {
content: '▸';
position: absolute;
left: 0;
color: var(--color-gold);
font-size: 1.2rem;
transition: all 0.3s;
}
.product-card:hover .product-features li {
color: rgba(255, 255, 255, 0.9);
transform: translateX(5px);
}
.product-card:hover .product-features li::before {
color: var(--color-gold-light);
transform: translateX(3px);
}
/* Product Footer */
.product-footer {
padding: 30px 40px;
background: rgba(10, 24, 50, 0.05);
border-top: 1px solid rgba(200, 168, 81, 0.2);
display: flex;
justify-content: space-between;
align-items: center;
}
.product-status {
display: flex;
align-items: center;
gap: 10px;
}
.status-dot {
width: 8px;
height: 8px;
background: #00ff00;
border-radius: 50%;
animation: pulse 2s infinite;
}
@keyframes pulse {
0%, 100% { opacity: 1; transform: scale(1); }
50% { opacity: 0.5; transform: scale(1.2); }
}
.status-text {
color: rgba(255, 255, 255, 0.6);
font-size: 0.9rem;
}
/* Learn More Button */
.product-learn-more {
background: var(--color-gold);
border: 2px solid var(--color-gold);
color: var(--color-navy);
padding: 10px 25px;
border-radius: 50px;
cursor: pointer;
transition: all 0.3s;
font-size: 0.95rem;
font-weight: 600;
text-transform: uppercase;
letter-spacing: 1px;
position: relative;
overflow: hidden;
}
.product-learn-more::before {
content: '';
position: absolute;
top: 50%;
left: 50%;
width: 0;
height: 0;
background: var(--color-navy);
transform: translate(-50%, -50%);
transition: all 0.5s;
border-radius: 50px;
}
.product-learn-more:hover::before {
width: 100%;
height: 100%;
}
.product-learn-more:hover {
color: var(--color-gold);
border-color: var(--color-gold);
transform: translateY(-2px);
box-shadow: 0 10px 30px rgba(200, 168, 81, 0.3);
}
.product-learn-more span {
position: relative;
z-index: 1;
}
/* Tools Grid Styling - Inside Product Body */
.product-body .tools-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 15px;
margin-top: 20px;
max-height: 0;
overflow: hidden;
opacity: 0;
transition: max-height 0.6s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.4s ease-in-out;
visibility: hidden;
}
.product-body .tools-grid.expanded {
max-height: 2000px;
opacity: 1;
visibility: visible;
}
/* Responsive grid adjustment */
@media (max-width: 768px) {
.product-body .tools-grid {
grid-template-columns: 1fr;
}
}
@media (min-width: 769px) and (max-width: 1024px) {
.product-body .tools-grid {
grid-template-columns: repeat(2, 1fr);
}
}
.tools-grid .tool-card {
background: rgba(0, 0, 0, 0.03);
border-radius: 12px;
padding: 20px;
transition: all 0.3s;
border: 1px solid rgba(0, 0, 0, 0.1);
}
.tools-grid .tool-card:hover {
transform: translateY(-3px);
background: rgba(0, 0, 0, 0.05);
border-color: rgba(200, 168, 81, 0.3);
box-shadow: 0 5px 15px rgba(10, 24, 50, 0.1);
}
.tools-grid .tool-icon {
width: 60px;
height: 60px;
margin-bottom: 15px;
display: flex;
align-items: center;
justify-content: center;
background: linear-gradient(135deg, rgba(15, 114, 181, 0.15), rgba(0, 64, 110, 0.1));
border-radius: 15px;
}
.tools-grid .tool-icon img {
width: 35px;
height: 35px;
filter: brightness(0) saturate(100%) invert(52%) sepia(82%) saturate(723%) hue-rotate(178deg) brightness(108%) contrast(92%);
}
.tools-grid h4 {
color: var(--color-navy);
font-size: 1.2rem;
margin-bottom: 15px;
font-weight: 600;
}
.tools-grid .tool-features ul {
list-style: none;
padding: 0;
}
.tools-grid .tool-features li {
color: rgba(0, 0, 0, 0.7);
padding: 5px 0;
font-size: 0.9rem;
position: relative;
padding-left: 20px;
line-height: 1.5;
}
.tools-grid .tool-features li::before {
content: '▸';
position: absolute;
left: 0;
color: var(--color-gold);
font-weight: bold;
}
/* Responsive Design */
@media (max-width: 968px) {
.products-grid {
grid-template-columns: 1fr;
}
.product-card.featured {
grid-column: span 1;
}
.products-section .section-title {
font-size: 2.5rem;
}
}
/* Floating Tech Particles */
.tech-particles {
position: absolute;
width: 100%;
height: 100%;
top: 0;
left: 0;
overflow: hidden;
pointer-events: none;
}
.particle {
position: absolute;
background: rgba(200, 168, 81, 0.3);
border-radius: 50%;
pointer-events: none;
}
.particle:nth-child(1) {
width: 3px;
height: 3px;
top: 10%;
left: 20%;
animation: float1 15s infinite;
}
.particle:nth-child(2) {
width: 2px;
height: 2px;
top: 70%;
left: 80%;
animation: float2 20s infinite;
}
.particle:nth-child(3) {
width: 4px;
height: 4px;
top: 40%;
left: 60%;
animation: float3 18s infinite;
}
@keyframes float1 {
0%, 100% { transform: translate(0, 0); opacity: 0; }
10% { opacity: 1; }
90% { opacity: 1; }
100% { transform: translate(100px, -100px); opacity: 0; }
}
@keyframes float2 {
0%, 100% { transform: translate(0, 0); opacity: 0; }
10% { opacity: 1; }
90% { opacity: 1; }
100% { transform: translate(-100px, -150px); opacity: 0; }
}
@keyframes float3 {
0%, 100% { transform: translate(0, 0); opacity: 0; }
10% { opacity: 1; }
90% { opacity: 1; }
100% { transform: translate(50px, -120px); opacity: 0; }
}

437
css/section-transitions.css Normale Datei
Datei anzeigen

@@ -0,0 +1,437 @@
/* Modern Section Transitions & Dividers */
/* Simple fade transition between sections */
.section-fade {
position: relative;
opacity: 0;
transform: translateY(30px);
transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}
.section-fade.visible {
opacity: 1;
transform: translateY(0);
}
/* Subtle gradient overlay at section edges */
.section-gradient-top {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100px;
background: linear-gradient(to bottom, rgba(255,255,255,1) 0%, rgba(255,255,255,0) 100%);
pointer-events: none;
z-index: 1;
}
.section-gradient-bottom {
position: absolute;
bottom: 0;
left: 0;
width: 100%;
height: 100px;
background: linear-gradient(to top, rgba(244,244,244,1) 0%, rgba(244,244,244,0) 100%);
pointer-events: none;
z-index: 1;
}
/* Animated Gradient Divider */
.gradient-divider {
position: relative;
height: 200px;
margin: -100px 0;
background: linear-gradient(
135deg,
transparent 0%,
rgba(15, 114, 181, 0.03) 25%,
rgba(15, 114, 181, 0.08) 50%,
rgba(15, 114, 181, 0.03) 75%,
transparent 100%
);
z-index: 5;
overflow: hidden;
}
.gradient-divider::before {
content: '';
position: absolute;
top: 0;
left: -100%;
width: 200%;
height: 100%;
background: linear-gradient(
90deg,
transparent,
rgba(15, 114, 181, 0.2),
transparent
);
animation: shimmerDivider 8s infinite;
}
@keyframes shimmerDivider {
0% { transform: translateX(-100%); }
100% { transform: translateX(100%); }
}
/* Diagonal Section Transitions */
.diagonal-section {
position: relative;
padding: 120px 0 80px;
margin-top: -50px;
clip-path: polygon(0 50px, 100% 0, 100% 100%, 0 100%);
}
.diagonal-section-reverse {
position: relative;
padding: 120px 0 80px;
margin-top: -50px;
clip-path: polygon(0 0, 100% 50px, 100% 100%, 0 100%);
}
/* Blob Divider */
.blob-divider {
position: absolute;
bottom: -150px;
left: 0;
width: 100%;
height: 300px;
z-index: 5;
pointer-events: none;
}
.blob-shape {
position: absolute;
width: 100%;
height: 100%;
background: linear-gradient(135deg, var(--color-blue), var(--color-blue-hover));
opacity: 0.1;
border-radius: 40% 60% 60% 40% / 60% 30% 70% 40%;
animation: morphBlob 20s ease-in-out infinite;
}
@keyframes morphBlob {
0%, 100% {
border-radius: 40% 60% 60% 40% / 60% 30% 70% 40%;
transform: translate(0, 0) scale(1);
}
33% {
border-radius: 60% 40% 30% 70% / 60% 70% 30% 40%;
transform: translate(-30px, -20px) scale(1.1);
}
66% {
border-radius: 30% 70% 70% 30% / 30% 60% 40% 70%;
transform: translate(30px, 20px) scale(0.9);
}
}
/* Particle Bridge */
.particle-bridge {
position: absolute;
width: 100%;
height: 200px;
bottom: -100px;
left: 0;
z-index: 8;
overflow: hidden;
}
.particle {
position: absolute;
width: 4px;
height: 4px;
background: var(--color-blue);
border-radius: 50%;
opacity: 0.6;
}
@keyframes floatParticle {
0% {
transform: translateY(100px) translateX(0);
opacity: 0;
}
10% {
opacity: 0.6;
}
90% {
opacity: 0.6;
}
100% {
transform: translateY(-100px) translateX(100px);
opacity: 0;
}
}
/* Curved Section */
.curved-section {
position: relative;
padding-top: 100px;
margin-top: -80px;
}
.curved-section::before {
content: '';
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 80px;
background: inherit;
border-radius: 0 0 50% 50% / 0 0 100% 100%;
transform: scaleX(1.5);
}
/* Glass Transition */
.glass-transition {
position: relative;
margin: 50px 0;
padding: 40px 0;
background: linear-gradient(
135deg,
rgba(255, 255, 255, 0.1) 0%,
rgba(255, 255, 255, 0.05) 100%
);
backdrop-filter: blur(10px);
-webkit-backdrop-filter: blur(10px);
border-top: 1px solid rgba(15, 114, 181, 0.1);
border-bottom: 1px solid rgba(15, 114, 181, 0.1);
}
/* Zigzag Border */
.zigzag-top {
position: relative;
padding-top: 40px;
}
.zigzag-top::before {
content: '';
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 30px;
background: linear-gradient(
135deg,
transparent 33.33%,
var(--color-blue) 33.33%,
var(--color-blue) 66.66%,
transparent 66.66%
);
background-size: 30px 60px;
opacity: 0.1;
}
/* Flowing Lines */
.flow-lines {
position: absolute;
width: 100%;
height: 200px;
bottom: -100px;
left: 0;
overflow: hidden;
z-index: 5;
}
.flow-line {
position: absolute;
height: 2px;
background: linear-gradient(90deg, transparent, var(--color-blue), transparent);
animation: flowLine 6s infinite;
}
.flow-line:nth-child(1) {
top: 20%;
animation-delay: 0s;
width: 60%;
}
.flow-line:nth-child(2) {
top: 40%;
animation-delay: 1s;
width: 80%;
}
.flow-line:nth-child(3) {
top: 60%;
animation-delay: 2s;
width: 70%;
}
.flow-line:nth-child(4) {
top: 80%;
animation-delay: 3s;
width: 90%;
}
@keyframes flowLine {
0% {
transform: translateX(-100%);
opacity: 0;
}
50% {
opacity: 1;
}
100% {
transform: translateX(200%);
opacity: 0;
}
}
/* Reveal Sections with Mask */
.section-reveal {
position: relative;
overflow: hidden;
}
.section-reveal::before {
content: '';
position: absolute;
top: 0;
left: -100%;
width: 100%;
height: 100%;
background: linear-gradient(
90deg,
transparent,
rgba(255, 255, 255, 0.4),
transparent
);
animation: revealMask 2s ease-out forwards;
}
@keyframes revealMask {
to {
left: 100%;
}
}
/* Geometric Pattern Divider */
.geometric-divider {
position: relative;
height: 100px;
margin: 40px 0;
background-image:
repeating-linear-gradient(
45deg,
transparent,
transparent 10px,
rgba(15, 114, 181, 0.05) 10px,
rgba(15, 114, 181, 0.05) 20px
),
repeating-linear-gradient(
-45deg,
transparent,
transparent 10px,
rgba(15, 114, 181, 0.05) 10px,
rgba(15, 114, 181, 0.05) 20px
);
}
/* Animated Border */
.animated-border {
position: relative;
padding: var(--space-4xl) 0;
}
.animated-border::before,
.animated-border::after {
content: '';
position: absolute;
left: 0;
width: 100%;
height: 2px;
background: linear-gradient(
90deg,
transparent,
var(--color-blue) 20%,
var(--color-blue) 80%,
transparent
);
}
.animated-border::before {
top: 0;
animation: borderSlide 4s infinite;
}
.animated-border::after {
bottom: 0;
animation: borderSlide 4s infinite reverse;
}
@keyframes borderSlide {
0%, 100% {
transform: translateX(-100%);
}
50% {
transform: translateX(100%);
}
}
/* Section Fade Transitions */
.fade-section {
opacity: 0;
transform: translateY(50px);
transition: all 1s cubic-bezier(0.4, 0, 0.2, 1);
}
.fade-section.visible {
opacity: 1;
transform: translateY(0);
}
/* Parallax Background Sections */
.parallax-section {
position: relative;
min-height: 500px;
display: flex;
align-items: center;
justify-content: center;
overflow: hidden;
}
.parallax-bg {
position: absolute;
top: -20%;
left: 0;
width: 100%;
height: 120%;
background-image: linear-gradient(135deg, rgba(15, 114, 181, 0.05) 0%, transparent 100%);
background-attachment: fixed;
background-position: center;
background-repeat: no-repeat;
background-size: cover;
will-change: transform;
}
/* Split Color Section */
.split-section {
position: relative;
overflow: hidden;
}
.split-section::before {
content: '';
position: absolute;
top: -50%;
left: -50%;
width: 200%;
height: 200%;
background: linear-gradient(
45deg,
transparent 48%,
rgba(15, 114, 181, 0.05) 49%,
rgba(15, 114, 181, 0.05) 51%,
transparent 52%
);
animation: rotateSplit 20s linear infinite;
}
@keyframes rotateSplit {
0% {
transform: rotate(0deg);
}
100% {
transform: rotate(360deg);
}
}