/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Figtree', sans-serif;
    background-color: #f8fafc;
}

/* Navigation styles */
.nav-container {
    background-color: white;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    padding: 1rem 2rem;
}

.nav-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    height: 50px;
}

.logo img {
    height: 100%;
    width: auto;
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: #1a202c;
    font-weight: 600;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #4a5568;
}

/* Main content styles */
.main-content {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 0 2rem;
} 

.nav-container {
    @apply bg-white shadow-lg;
}

.nav-logo {
    @apply h-24 w-auto transition-transform duration-300 hover:scale-105;
}

/* Modern Timeline Animations */
.timeline-animation {
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

/* Modern Timeline Layout */
.timeline-container {
    position: relative;
    padding: 6rem 0;
}

.timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, #6366f1, #3b82f6);
    box-shadow: 0 0 15px rgba(99, 102, 241, 0.3);
}

.timeline-item {
    margin: 3rem 0;
    opacity: 1;
    transform: none;
    transition: all 0.4s ease;
}

.timeline-item-right {
    margin-left: 50%;
    padding-left: 4rem;
}

.timeline-item-left {
    margin-right: 50%;
    padding-right: 4rem;
    text-align: right;
}

/* Modern Card Styles */
.timeline-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1.5rem;
    padding: 2.5rem;
    transition: all 0.4s ease;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.timeline-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.hero-section {
    @apply bg-gradient-to-br from-indigo-600 via-blue-700 to-purple-800 text-white min-h-screen flex items-center;
    background-size: 400% 400%;
    animation: gradient 15s ease infinite;
}

@keyframes gradient {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.section-container {
    @apply max-w-7xl mx-auto px-6 sm:px-8 lg:px-12;
}

.service-card {
    @apply bg-white/10 backdrop-blur-lg rounded-2xl p-8 transition-all duration-300 hover:transform hover:scale-105;
}

.contact-form-input {
    @apply rounded-xl border-gray-200 bg-white/5 backdrop-blur-sm shadow-lg focus:border-indigo-500 focus:ring-indigo-500;
}

.primary-button {
    @apply bg-gradient-to-r from-indigo-500 to-blue-600 text-white px-8 py-4 rounded-xl hover:from-indigo-600 hover:to-blue-700 transition-all duration-300 shadow-lg hover:shadow-xl;
}

/* Füge diese Styles zu deiner bestehenden CSS-Datei hinzu */
