Add CSS, JS and asset files (without videos)
Dieser Commit ist enthalten in:
612
css/about-modern.css
Normale Datei
612
css/about-modern.css
Normale Datei
@ -0,0 +1,612 @@
|
||||
/* Modern About Section Redesign */
|
||||
|
||||
/* About Section Background */
|
||||
.about-section {
|
||||
background: linear-gradient(135deg, #ffffff 0%, #f8fafb 100%);
|
||||
position: relative;
|
||||
overflow: hidden;
|
||||
padding: 100px 0;
|
||||
}
|
||||
|
||||
.about-section::before {
|
||||
content: '';
|
||||
position: absolute;
|
||||
top: -50%;
|
||||
right: -20%;
|
||||
width: 60%;
|
||||
height: 60%;
|
||||
background: radial-gradient(circle, rgba(15, 114, 181, 0.05) 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: #666;
|
||||
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: linear-gradient(135deg, #0f72b5, #00406e);
|
||||
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: #ffffff;
|
||||
transform: scale(1.05);
|
||||
box-shadow: 0 8px 20px rgba(15, 114, 181, 0.3);
|
||||
}
|
||||
|
||||
.about-tab:hover:not(.active) {
|
||||
color: #0f72b5;
|
||||
transform: translateY(-2px);
|
||||
background: rgba(15, 114, 181, 0.05);
|
||||
}
|
||||
|
||||
/* 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: linear-gradient(180deg, #0f72b5, #00406e);
|
||||
transform: scaleY(0);
|
||||
transition: transform 0.4s;
|
||||
}
|
||||
|
||||
.company-card:hover::before {
|
||||
transform: scaleY(1);
|
||||
}
|
||||
|
||||
.company-card:hover {
|
||||
transform: translateX(10px);
|
||||
box-shadow: 0 15px 50px rgba(15, 114, 181, 0.15);
|
||||
}
|
||||
|
||||
.company-card h4 {
|
||||
color: #0f72b5;
|
||||
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: linear-gradient(135deg, #0f72b5, #00406e);
|
||||
}
|
||||
|
||||
.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: linear-gradient(135deg, #0f72b5, #00406e);
|
||||
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(-10px) scale(1.02);
|
||||
box-shadow: 0 20px 60px rgba(15, 114, 181, 0.2);
|
||||
border-color: #0f72b5;
|
||||
}
|
||||
|
||||
.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: linear-gradient(135deg, #0f72b5, #00406e);
|
||||
}
|
||||
|
||||
.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: linear-gradient(180deg, #0f72b5, #00406e);
|
||||
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(20px);
|
||||
box-shadow: 0 10px 40px rgba(15, 114, 181, 0.15);
|
||||
}
|
||||
|
||||
.competency-number {
|
||||
font-size: 3rem;
|
||||
font-weight: 700;
|
||||
background: linear-gradient(135deg, #0f72b5, #00406e);
|
||||
-webkit-background-clip: text;
|
||||
-webkit-text-fill-color: transparent;
|
||||
background-clip: text;
|
||||
opacity: 1;
|
||||
}
|
||||
|
||||
/* Why IntelSight - 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(-5px);
|
||||
box-shadow: 0 15px 40px rgba(15, 114, 181, 0.15);
|
||||
border-color: rgba(15, 114, 181, 0.3);
|
||||
}
|
||||
|
||||
.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: linear-gradient(135deg, #0f72b5, #00406e);
|
||||
}
|
||||
|
||||
.why-card:hover .why-icon img {
|
||||
filter: brightness(0) saturate(100%) invert(100%);
|
||||
}
|
||||
|
||||
.why-card h4 {
|
||||
font-size: 1.6rem;
|
||||
margin-bottom: 20px;
|
||||
color: #0f72b5;
|
||||
text-align: center;
|
||||
font-weight: 700;
|
||||
text-transform: uppercase;
|
||||
letter-spacing: 0.5px;
|
||||
}
|
||||
|
||||
.why-card p {
|
||||
color: #666;
|
||||
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(15, 114, 181, 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(15, 114, 181, 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(15, 114, 181, 0.5));
|
||||
}
|
||||
50% {
|
||||
filter: drop-shadow(0 0 25px rgba(15, 114, 181, 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: linear-gradient(135deg, #0f72b5, #00406e);
|
||||
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;
|
||||
}
|
||||
}
|
||||
371
css/animations-enhanced.css
Normale Datei
371
css/animations-enhanced.css
Normale Datei
@ -0,0 +1,371 @@
|
||||
/* 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);
|
||||
}
|
||||
|
||||
/* Premium Glow Effects */
|
||||
.glow-blue {
|
||||
box-shadow:
|
||||
0 0 20px rgba(15, 114, 181, 0.5),
|
||||
0 0 40px rgba(15, 114, 181, 0.3),
|
||||
0 0 60px rgba(15, 114, 181, 0.1);
|
||||
}
|
||||
|
||||
.text-glow {
|
||||
text-shadow:
|
||||
0 0 10px rgba(15, 114, 181, 0.8),
|
||||
0 0 20px rgba(15, 114, 181, 0.6),
|
||||
0 0 30px rgba(15, 114, 181, 0.4);
|
||||
}
|
||||
|
||||
/* 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 */
|
||||
@keyframes pulseGlow {
|
||||
0%, 100% {
|
||||
box-shadow:
|
||||
0 0 5px rgba(15, 114, 181, 0.5),
|
||||
0 0 10px rgba(15, 114, 181, 0.3);
|
||||
}
|
||||
50% {
|
||||
box-shadow:
|
||||
0 0 20px rgba(15, 114, 181, 0.8),
|
||||
0 0 30px rgba(15, 114, 181, 0.5),
|
||||
0 0 40px rgba(15, 114, 181, 0.3);
|
||||
}
|
||||
}
|
||||
|
||||
.pulse-glow {
|
||||
animation: pulseGlow 2s 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,
|
||||
#0f72b5,
|
||||
#00406e,
|
||||
#0f72b5,
|
||||
#1e90ff
|
||||
);
|
||||
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;
|
||||
}
|
||||
|
||||
/* Typewriter Effect */
|
||||
@keyframes typewriter {
|
||||
from { width: 0; }
|
||||
to { width: 100%; }
|
||||
}
|
||||
|
||||
@keyframes blink {
|
||||
50% { border-color: transparent; }
|
||||
}
|
||||
|
||||
.typewriter {
|
||||
overflow: hidden;
|
||||
white-space: nowrap;
|
||||
border-right: 3px solid #0f72b5;
|
||||
animation:
|
||||
typewriter 3s steps(40) forwards,
|
||||
blink 0.75s step-end infinite;
|
||||
}
|
||||
|
||||
/* Morphing Blob Background */
|
||||
@keyframes morph {
|
||||
0% { border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%; }
|
||||
50% { border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%; }
|
||||
100% { border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%; }
|
||||
}
|
||||
|
||||
.blob {
|
||||
background: linear-gradient(45deg, #0f72b5, #00406e);
|
||||
animation: morph 8s ease-in-out infinite;
|
||||
filter: blur(40px);
|
||||
opacity: 0.7;
|
||||
}
|
||||
|
||||
/* Card Hover Effects */
|
||||
.card-hover-lift {
|
||||
transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
|
||||
}
|
||||
|
||||
.card-hover-lift:hover {
|
||||
transform: translateY(-10px) scale(1.02);
|
||||
box-shadow:
|
||||
0 20px 40px rgba(0, 0, 0, 0.15),
|
||||
0 0 20px rgba(15, 114, 181, 0.3);
|
||||
}
|
||||
|
||||
/* 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);
|
||||
}
|
||||
|
||||
/* Glitch Effect */
|
||||
@keyframes glitch {
|
||||
0%, 100% {
|
||||
text-shadow:
|
||||
0.05em 0 0 rgba(255, 0, 0, 0.75),
|
||||
-0.05em -0.025em 0 rgba(0, 255, 0, 0.75),
|
||||
0.025em 0.05em 0 rgba(0, 0, 255, 0.75);
|
||||
}
|
||||
14% {
|
||||
text-shadow:
|
||||
0.05em 0 0 rgba(255, 0, 0, 0.75),
|
||||
-0.05em -0.025em 0 rgba(0, 255, 0, 0.75),
|
||||
0.025em 0.05em 0 rgba(0, 0, 255, 0.75);
|
||||
}
|
||||
15% {
|
||||
text-shadow:
|
||||
-0.05em -0.025em 0 rgba(255, 0, 0, 0.75),
|
||||
0.025em 0.025em 0 rgba(0, 255, 0, 0.75),
|
||||
-0.05em -0.05em 0 rgba(0, 0, 255, 0.75);
|
||||
}
|
||||
49% {
|
||||
text-shadow:
|
||||
-0.05em -0.025em 0 rgba(255, 0, 0, 0.75),
|
||||
0.025em 0.025em 0 rgba(0, 255, 0, 0.75),
|
||||
-0.05em -0.05em 0 rgba(0, 0, 255, 0.75);
|
||||
}
|
||||
50% {
|
||||
text-shadow:
|
||||
0.025em 0.05em 0 rgba(255, 0, 0, 0.75),
|
||||
0.05em 0 0 rgba(0, 255, 0, 0.75),
|
||||
0 -0.05em 0 rgba(0, 0, 255, 0.75);
|
||||
}
|
||||
99% {
|
||||
text-shadow:
|
||||
0.025em 0.05em 0 rgba(255, 0, 0, 0.75),
|
||||
0.05em 0 0 rgba(0, 255, 0, 0.75),
|
||||
0 -0.05em 0 rgba(0, 0, 255, 0.75);
|
||||
}
|
||||
}
|
||||
|
||||
.glitch {
|
||||
animation: glitch 1s linear infinite;
|
||||
}
|
||||
|
||||
/* 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 */
|
||||
@keyframes shimmer {
|
||||
0% {
|
||||
background-position: -1000px 0;
|
||||
}
|
||||
100% {
|
||||
background-position: 1000px 0;
|
||||
}
|
||||
}
|
||||
|
||||
.shimmer {
|
||||
background: linear-gradient(
|
||||
90deg,
|
||||
rgba(255, 255, 255, 0) 0%,
|
||||
rgba(255, 255, 255, 0.3) 50%,
|
||||
rgba(255, 255, 255, 0) 100%
|
||||
);
|
||||
background-size: 1000px 100%;
|
||||
animation: shimmer 2s infinite;
|
||||
}
|
||||
|
||||
/* Orbit Animation */
|
||||
@keyframes orbit {
|
||||
from { transform: rotate(0deg) translateX(100px) rotate(0deg); }
|
||||
to { transform: rotate(360deg) translateX(100px) rotate(-360deg); }
|
||||
}
|
||||
|
||||
.orbit {
|
||||
animation: orbit 20s linear infinite;
|
||||
}
|
||||
|
||||
/* Perspective Tilt */
|
||||
.tilt-card {
|
||||
transform-style: preserve-3d;
|
||||
transition: transform 0.5s;
|
||||
}
|
||||
|
||||
.tilt-card:hover {
|
||||
transform: perspective(1000px) rotateX(10deg) rotateY(-10deg) scale(1.05);
|
||||
}
|
||||
|
||||
/* Neon Glow Text */
|
||||
.neon-text {
|
||||
color: #fff;
|
||||
text-shadow:
|
||||
0 0 7px #fff,
|
||||
0 0 10px #fff,
|
||||
0 0 21px #fff,
|
||||
0 0 42px #0f72b5,
|
||||
0 0 82px #0f72b5,
|
||||
0 0 92px #0f72b5,
|
||||
0 0 102px #0f72b5,
|
||||
0 0 151px #0f72b5;
|
||||
}
|
||||
|
||||
/* Water Ripple Effect */
|
||||
@keyframes ripple {
|
||||
0% {
|
||||
transform: scale(0);
|
||||
opacity: 1;
|
||||
}
|
||||
100% {
|
||||
transform: scale(4);
|
||||
opacity: 0;
|
||||
}
|
||||
}
|
||||
|
||||
.ripple::before {
|
||||
content: '';
|
||||
position: absolute;
|
||||
border: 1px solid #0f72b5;
|
||||
border-radius: 50%;
|
||||
animation: ripple 1s ease-out;
|
||||
}
|
||||
2715
css/animations.css
Normale Datei
2715
css/animations.css
Normale Datei
Datei-Diff unterdrückt, da er zu groß ist
Diff laden
41
css/fonts.css
Normale Datei
41
css/fonts.css
Normale Datei
@ -0,0 +1,41 @@
|
||||
/* Local Font Definitions - DSGVO-compliant */
|
||||
|
||||
@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');
|
||||
}
|
||||
1496
css/main.css
Normale Datei
1496
css/main.css
Normale Datei
Datei-Diff unterdrückt, da er zu groß ist
Diff laden
496
css/products-modern.css
Normale Datei
496
css/products-modern.css
Normale Datei
@ -0,0 +1,496 @@
|
||||
/* Modern Products Section Design */
|
||||
|
||||
.products-section {
|
||||
background: #001f3f;
|
||||
position: relative;
|
||||
padding: 120px 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(15, 114, 181, 0.1) 0%, transparent 50%),
|
||||
radial-gradient(circle at 80% 50%, rgba(0, 64, 110, 0.1) 0%, transparent 50%),
|
||||
radial-gradient(circle at 50% 100%, rgba(15, 114, 181, 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 20px rgba(15, 114, 181, 0.5); }
|
||||
50% { text-shadow: 0 0 40px rgba(15, 114, 181, 0.8), 0 0 60px rgba(15, 114, 181, 0.4); }
|
||||
}
|
||||
|
||||
.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(15, 114, 181, 0.3);
|
||||
border-radius: 20px;
|
||||
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(-10px) scale(1.02);
|
||||
background: linear-gradient(135deg, rgba(255, 255, 255, 1), rgba(250, 250, 250, 1));
|
||||
border-color: rgba(15, 114, 181, 0.5);
|
||||
box-shadow:
|
||||
0 30px 60px rgba(0, 0, 0, 0.4),
|
||||
0 0 80px rgba(15, 114, 181, 0.15),
|
||||
inset 0 0 20px rgba(15, 114, 181, 0.03);
|
||||
}
|
||||
|
||||
/* Product Header */
|
||||
.product-header {
|
||||
padding: 40px 40px 30px;
|
||||
background: linear-gradient(135deg, rgba(15, 114, 181, 0.15) 0%, transparent 50%);
|
||||
border-bottom: 1px solid rgba(15, 114, 181, 0.25);
|
||||
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, #0f72b5, #00406e);
|
||||
border-radius: 20px;
|
||||
opacity: 0.1;
|
||||
transition: all 0.5s;
|
||||
}
|
||||
|
||||
.product-card:hover .product-icon-bg {
|
||||
opacity: 0.2;
|
||||
transform: rotate(10deg) scale(1.1);
|
||||
}
|
||||
|
||||
.product-icon {
|
||||
position: relative;
|
||||
z-index: 1;
|
||||
width: 50px;
|
||||
height: 50px;
|
||||
filter: brightness(0) saturate(100%) invert(42%) sepia(82%) saturate(723%) hue-rotate(178deg) brightness(98%) contrast(92%);
|
||||
transition: all 0.5s;
|
||||
}
|
||||
|
||||
.product-card:hover .product-icon {
|
||||
transform: scale(1.1);
|
||||
filter: brightness(0) saturate(100%) invert(42%) sepia(82%) saturate(723%) hue-rotate(178deg) brightness(108%) contrast(92%);
|
||||
}
|
||||
|
||||
.product-title-wrapper {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
gap: 5px;
|
||||
align-items: center;
|
||||
text-align: center;
|
||||
padding-right: 105px;
|
||||
}
|
||||
|
||||
.product-title {
|
||||
color: #1a1a1a;
|
||||
font-size: 1.8rem;
|
||||
font-weight: 700;
|
||||
margin: 0;
|
||||
transition: all 0.3s;
|
||||
}
|
||||
|
||||
.product-card:hover .product-title {
|
||||
color: #0f72b5;
|
||||
}
|
||||
|
||||
.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: #0f72b5;
|
||||
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: #1e90ff;
|
||||
transform: translateX(3px);
|
||||
}
|
||||
|
||||
/* Product Footer */
|
||||
.product-footer {
|
||||
padding: 30px 40px;
|
||||
background: rgba(15, 114, 181, 0.08);
|
||||
border-top: 1px solid rgba(15, 114, 181, 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: transparent;
|
||||
border: 2px solid #0f72b5;
|
||||
color: #0f72b5;
|
||||
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: linear-gradient(135deg, #0f72b5, #00406e);
|
||||
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: #ffffff;
|
||||
border-color: transparent;
|
||||
transform: translateY(-2px);
|
||||
box-shadow: 0 10px 30px rgba(15, 114, 181, 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(15, 114, 181, 0.3);
|
||||
box-shadow: 0 5px 15px rgba(15, 114, 181, 0.15);
|
||||
}
|
||||
|
||||
.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: #1a1a1a;
|
||||
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: #1e90ff;
|
||||
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(15, 114, 181, 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
437
css/section-transitions.css
Normale Datei
@ -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, #0f72b5, #00406e);
|
||||
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: #0f72b5;
|
||||
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%,
|
||||
#0f72b5 33.33%,
|
||||
#0f72b5 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, #0f72b5, 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: 80px 0;
|
||||
}
|
||||
|
||||
.animated-border::before,
|
||||
.animated-border::after {
|
||||
content: '';
|
||||
position: absolute;
|
||||
left: 0;
|
||||
width: 100%;
|
||||
height: 2px;
|
||||
background: linear-gradient(
|
||||
90deg,
|
||||
transparent,
|
||||
#0f72b5 20%,
|
||||
#0f72b5 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);
|
||||
}
|
||||
}
|
||||
In neuem Issue referenzieren
Einen Benutzer sperren