/* Basislayout */
body {
    margin: 0;
    padding: 0;
    font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background: #050505;
    color: #f5f5f5;

    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: stretch;

    overflow-x: hidden;
    overflow-y: auto;
}

/* Subtil animierter Hintergrund */
.bg-gradient {
    position: fixed;
    width: 200%;
    height: 200%;
    background:
        radial-gradient(circle at 20% 20%, #262626 0, #050505 55%),
        radial-gradient(circle at 80% 80%, #161616 0, #050505 55%);
    z-index: -1;
}


/* Logo oben links */
.logo {
    position: fixed;
    top: 18px;
    left: 18px;
    z-index: 10;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.logo img {
    width: 44px;
    height: 44px;
    object-fit: contain;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid #ffffff1f;
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

/* Page Wrapper: hält Content mittig & Footer unten */
.page {
    flex: 1;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 56px 16px 28px;
    box-sizing: border-box;
}

/* Container */
.container {
    text-align: center;
    padding: 28px;
    width: min(520px, calc(100% - 32px));
    max-width: 520px;
}

/* Smooth Fade-in */
.fade-in {
    opacity: 0;
    transform: translateY(22px);
    animation: fadeInUp 1s ease forwards;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Typografie */
.title {
    font-size: clamp(2.4rem, 5vw, 3.4rem);
    font-weight: 500;
    letter-spacing: 0.18rem;
    margin: 0 0 8px;
    text-transform: uppercase;
}

.subtitle {
    font-size: 1.05rem;
    color: #c7c7c7;
    margin: 0 0 28px;
    letter-spacing: 0.09rem;
    text-transform: uppercase;
}

.text {
    font-size: 0.98rem;
    color: #d0d0d0;
    margin: 0 0 32px;
    line-height: 1.6;
}

.highlight {
    font-weight: 600;
}

/* Button-Gruppe */
.button-group {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
}

/* Buttons – präsent, aber nicht zu wuchtig */
.glow-button {
    padding: 12px 28px;
    font-size: 0.98rem;
    border-radius: 999px;
    border: 1px solid #ffffff33;
    cursor: pointer;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        background 0.25s ease,
        border-color 0.25s ease,
        color 0.25s ease;
    box-shadow: 0 0 0 rgba(0, 0, 0, 0);
}

/* Primärer Button (LinkedIn) */
.glow-button.primary {
    background: #ffffff18;
    color: #ffffff;
}

/* Sekundärer Button (Instagram) */
.glow-button.secondary {
    background: transparent;
    color: #e5e5e5;
}

/* Hover-Effekte */
.glow-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.55);
}

.glow-button.primary:hover {
    background: #ffffff26;
    border-color: #ffffff80;
}

.glow-button.secondary:hover {
    background: #ffffff12;
    border-color: #ffffff5c;
}

/* Active-Effekt */
.glow-button:active {
    transform: translateY(-1px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.45);
}

/* Footer */
.footer {
    width: 100%;
    padding: 16px 18px 22px;
    box-sizing: border-box;
    text-align: center;
    font-size: 0.82rem;
    color: #8b8b8b;
}

.footer-inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.footer-sep {
    opacity: 0.55;
}

.footer-link {
    color: #8b8b8b;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.2s ease, color 0.2s ease;
}

.footer-link:hover {
    color: #e5e5e5;
    border-color: #e5e5e5;
}

/* Responsiveness */
@media (max-width: 480px) {
    .page {
        padding: 72px 14px 22px;
    }

    .container {
        padding: 20px;
        border-radius: 22px;
    }

    .text {
        font-size: 0.95rem;
        margin-bottom: 28px;
    }

    .button-group {
        flex-direction: column;
        gap: 10px;
    }

    .glow-button {
        width: 100%;
        max-width: 280px;
        margin: 0 auto;
    }
}
