:root {
    --primary-dark: #1a2942;
    --primary-purple: #9747FF;
    --primary-green: #7fff00;
    --primary-blue: #00d4ff;
    --text-light: #ffffff;
    --text-dark: #333333;
    --primary-green-dark: #4BA817;
    --subtitle-color: #B8B8B8;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--primary-dark);
    color: var(--text-light);
    line-height: 1.6;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    /* Volle Bildschirmhöhe nutzen */
    margin: 0;
}

main {
    flex: 1;
    /* Hauptinhalt füllt den verfügbaren Platz */
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section {
    padding: 0;
    margin: 0;
}

.section-title {
    font-size: 2.2rem;
    margin: 0;
    text-align: center;
    background: linear-gradient(45deg, #0066FF, var(--primary-blue));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content,
.references-grid,
.card {
    animation: fadeIn 0.8s ease-out forwards;
}

/* ---------------- card */
.card {
    /* background: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease;
    height: 100%; */
}

.card:hover {
    transform: translateY(-5px);
}

.card:nth-child(2) {
    animation-delay: 0.3s;
}

.card:nth-child(3) {
    animation-delay: 0.6s;
}

.card ul {
    list-style: none;
    margin-top: 1rem;
}

.card ul li {
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 1.5rem;
}

.card ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--primary-blue);
}

.move {
    background: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease;
}

.move:hover {
    transform: translateY(-5px);
}

/* ----------------  */
.icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-blue);
}

/* Additional styles for subpages */
.card-description {
    margin-top: 1rem;
    opacity: 0.9;
    line-height: 1.6;
}

.section-subtitle {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--primary-blue);
}



/* Über uns */
.about-content {
    margin-bottom: 4rem;
}

.value-item {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.value-item:hover {
    transform: translateY(-5px);
}

.value-item h4 {
    margin: 1rem 0;
    color: var(--primary-blue);
}

.value-item p {
    opacity: 0.9;
}

.card .icon {
    font-size: 2.5rem;
    color: var(--primary-blue);
    margin-bottom: 1rem;
    display: block;
}

.textAlignCenter {
    text-align: center;
}

/* Karriere */
.contact-address {
    background: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: 10px;
    margin: 1.5rem 0;
}

.contact-address p {
    margin: 0;
    line-height: 1.6;
}

.card-karriere {
    background: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease;
    height: 100%;
}

/* Datenschutz */
.external-link {
    color: #ffffff;
}

.external-link:hover {
    color: #00d4ff;
}
