

/* Wenn du weitere Schriftarten von Font Awesome einbindest, kannst du weitere @font-face-Regeln hinzufügen. */

@media (min-width: 1260px) {
    .responsive-half {
        width: max-content;
        max-width: 50%;
    }
}

:root {
    /* Hauptfarbe 75d8ee */
    --highlight-color-h: 201;    /* Farbton */
    --highlight-color-s: 85%;   /* Sättigung */
    --highlight-color-l: 50%;   /* Helligkeit */
    --highlight-color: hsl(var(--highlight-color-h), var(--highlight-color-s), var(--highlight-color-l));

    /* Platzhalter für 2. Farbe */
    --secondary-color-h: 0;     /* Farbton */
    --secondary-color-s: 0%;    /* Sättigung */
    --secondary-color-l: 50%;   /* Helligkeit */
}

body {
    font-family: 'Manrope-Regular', sans-serif;
}

h1 {
    font-family: 'LinLibertine', sans-serif;
    font-size: 1.875rem; /* text-3xl */
    font-weight: 700;     /* font-bold */
    margin-bottom: 1.5rem; /* mb-6 */
    text-align: left;    /* text-center */
}

h2 {
    font-family: 'LinLibertine', sans-serif;
    margin-bottom: 2rem;        /* mb-2 */
    font-size: 1.75rem;     /* entspricht text-3xl */
    font-weight: bold;       /* entspricht font-bold */
    text-align: center;      /* entspricht text-center */
    hyphens: none;           /* entspricht hyphens-none */
}

h3 {
    font-family: 'LinLibertine', sans-serif;
    font-size: 1.25rem;  /* text-xl */
    font-weight: 700;    /* font-bold */
    margin-bottom: 0.5rem; /* mb-2 */
}

@media (min-width: 768px) {
    h1 {
        font-size: 3.55rem;
        text-align: left;
    }

    h2 {
        font-size: 3rem;   /* text-2xl */
        text-align: center;
    }

    h3 {
        font-size: 1.25rem;  /* text-xl */

    }
}

.container-sidespacing {
    max-width: 1440px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 20px;
    padding-right: 20px;
}

.service-card {
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.1);
}

.benefit-card {
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(75, 85, 99, 0.3);
    transition: all 0.3s ease;
}

.benefit-card:hover {
    background: rgba(17, 24, 39, 0.9);
    border-color: rgba(99, 102, 241, 0.5);
    transform: translateY(-2px);
}

/* Webentwicklung */

.glassmorphism {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.gradient-bg {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.card-hover:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.enterprise-card {
    background: linear-gradient(135deg, #1e3a8a 0%, #3730a3 100%);
}

.checkmark {
    animation: checkmark 0.6s ease-in-out;
}

@keyframes checkmark {
    0% { transform: scale(0) rotate(45deg); }
    50% { transform: scale(1.2) rotate(45deg); }
    100% { transform: scale(1) rotate(45deg); }
}

.blur-bg {
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.text-shadow {
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

/* ----- */

/* Responsive Padding */
@media (min-width: 640px) {
    .container-fullhd {
        padding-left: 0rem;
        padding-right: 0rem;
    }
}

/* Responsive Padding */
@media (min-width: 968px) {
    .container-sidespacing {
        padding-left: 50px;
        padding-right: 50px;
    }
}

.automatic-hyphens {
    hyphens: auto;
    -webkit-hyphens: auto; /* Für ältere Webkit-Browser */
    -ms-hyphens: auto;     /* Für ältere IE-Versionen */
    word-wrap: break-word; /* Optional: für extrem lange Wörter */
}

ol li {
    margin-bottom: 16px; /* Abstand zwischen den Listenelementen */
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}
.animate-fadeInUp {
    animation: fadeInUp 1s ease-out forwards;
}
/* Loading Skeleton für Referenzen */
.skeleton {
    background-color: #e5e7eb;
    animation: pulse 1.5s infinite;
}
@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}