/* Reparieren der runden Ecken und des Farbverlaufs */
.rounded-xl {
border-radius: 0.75rem;
}

.bg-gradient-to-r.from-blue-900\/80.to-purple-900\/80 {
background: linear-gradient(to right, rgba(30, 58, 138, 0.8), rgba(88, 28, 135, 0.8));
}

.backdrop-blur-sm {
    backdrop-filter: blur(4px);
}

/* Animationen */
.fade-in-up {
    animation: fadeInUp 0.8s ease forwards;
    opacity: 0;
}

.animation-delay-200 {
    animation-delay: 0.2s;
}

.animation-delay-400 {
    animation-delay: 0.4s;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Moderne CTA Buttons */
.cta-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.875rem 1.75rem;
    background: linear-gradient(to right, #4568dc, #7839c5); /* Neuer Farbverlauf blau-lila */
    color: white;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 0.5rem;
    box-shadow: 0 10px 15px -3px rgba(100, 96, 217, 0.3), 0 4px 6px -2px rgba(120, 57, 197, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    text-transform: none;
    letter-spacing: 0.025em;
    z-index: 10;
}

.cta-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, #3a58c8, #6731b0); /* Dunklerer Farbverlauf für Hover */
    z-index: -1;
    transition: opacity 0.3s ease;
    opacity: 0;
}

.cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 20px -3px rgba(100, 96, 217, 0.4), 0 8px 8px -2px rgba(120, 57, 197, 0.3);
}

.cta-primary:hover::before {
    opacity: 1;
}

.cta-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.875rem 1.75rem;
    background-color: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
    border: 1.5px solid rgba(255, 255, 255, 0.7);
    color: white;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 0.5rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    text-transform: none;
    letter-spacing: 0.025em;
}

.cta-secondary:hover {
    background-color: rgba(255, 255, 255, 0.9);
    color: #3182ce;
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

/* Service-Cards Animation */
.service-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

/* GRUNDEINSTELLUNGEN FÜR DEN BROWSER-RESET */
body, html {
    margin: 0; /* Entfernt alle globalen Außenabstände */
    padding: 0; /* Entfernt alle globalen Innenabstände */
    width: 100%; /* Stellt sicher, dass der Body die volle Breite hat */
    overflow-x: hidden; /* Verhindert horizontales Scrollen */
}

/* Header inklusive voller Breite */
header {
    width: 100%; /* Volle Breite des Viewports */
    height: 100vh; /* Höhe des Viewports */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-size: cover; /* Hintergrundbild skalieren */
    background-position: center; /* Hintergrund positionieren */
    background-repeat: no-repeat; /* Kein wiederholendes Bild */
    position: relative;
    color: #f7f7f7; /* Leichtes Grau-Blau, angenehm für Auge */
}

/* Responsive Anpassungen */
@media (max-width: 768px) {
    .cta-primary, .cta-secondary {
        width: 100%;
        justify-content: center;
        text-align: center;
    }
}