/* Nova Landing Page - Fitness/Gaming/NYC Aesthetic */

:root {
    /* Nova's Color Palette - Energetic, Modern, NYC Vibes */
    --primary-color: #FF1493; /* Hot Pink - Energy */
    --secondary-color: #00D4FF; /* Cyan - Tech/Gaming */
    --accent-color: #FFD700; /* Gold - Premium */
    --bg-dark: #0a0a0a;
    --bg-card: rgba(20, 20, 20, 0.85);
    --text-primary: #ffffff;
    --text-secondary: #b0b0b0;
    --gradient-primary: linear-gradient(135deg, #FF1493 0%, #FF6B9D 100%);
    --gradient-secondary: linear-gradient(135deg, #00D4FF 0%, #0099CC 100%);
    --shadow-glow: 0 0 30px rgba(255, 20, 147, 0.3);
}

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

body {
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Background Container */
.background-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #0a0a0a 100%);
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(255, 20, 147, 0.1) 0%, transparent 70%);
}

/* Main Container */
.container {
    max-width: 680px;
    margin: 0 auto;
    padding: 40px 20px;
    position: relative;
    z-index: 1;
}

/* Profile Section */
.profile-section {
    text-align: center;
    margin-bottom: 40px;
    animation: fadeInUp 0.8s ease-out;
}

.profile-image {
    width: 160px;           /* Größe des Avatars */
    height: 160px;
    margin: 0 auto 24px;    /* zentriert + Abstand nach unten */
    border-radius: 50%;
    overflow: hidden;
    padding: 4px;
    background: var(--gradient-primary);
    border: 4px solid rgba(255, 255, 255, 0.15);
    box-shadow: var(--shadow-glow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.profile-image:hover {
    transform: scale(1.05);
    box-shadow: 0 0 40px rgba(255, 20, 147, 0.5);
}

.profile-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;   /* sauberer Zuschnitt */
    display: block;
    border-radius: 50%;
}

.name {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 1px;
}

.tagline {
    font-size: 1rem;
    color: var(--secondary-color);
    margin-bottom: 15px;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.bio {
    font-size: 1rem;
    color: var(--text-secondary);
    max-width: 500px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Links Section */
.links-section {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 40px;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.link-button {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px 24px;
    background: var(--bg-card);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    text-decoration: none;
    color: var(--text-primary);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.link-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.link-button:hover::before {
    left: 100%;
}

.link-button:hover {
    transform: translateY(-4px);
    border-color: var(--primary-color);
    box-shadow: 0 8px 24px rgba(255, 20, 147, 0.3);
}

.link-button.primary {
    background: var(--gradient-primary);
    border-color: var(--primary-color);
    box-shadow: var(--shadow-glow);
}

.link-button.primary:hover {
    box-shadow: 0 8px 32px rgba(255, 20, 147, 0.5);
    transform: translateY(-6px) scale(1.02);
}

.icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.link-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    flex-grow: 1;
}

.link-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 4px;
}

.link-subtitle {
    font-size: 0.85rem;
    color: var(--text-secondary);
    font-weight: 300;
}

.link-button.primary .link-subtitle {
    color: rgba(255, 255, 255, 0.9);
}

.extra-links {
    text-align: center;
    margin: 40px 0 20px;
    opacity: 0.7;
}

.extra-links a {
    color: #ff66c4;
    text-decoration: none;
    font-weight: 500;
}

.extra-links a:hover {
    opacity: 1;
}

/* Tools Section */
.tools-section {
    margin-bottom: 50px;
    padding: 35px 25px;
    background: rgba(20, 20, 20, 0.6);
    border-radius: 16px;
    border: 2px solid rgba(255, 20, 147, 0.3);
    backdrop-filter: blur(10px);
    animation: fadeInUp 0.8s ease-out 0.5s both;
}

.section-title {
    font-size: 1.8rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 15px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.tools-intro {
    text-align: center;
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 35px;
    line-height: 1.6;
}

.tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 16px;
}

.tool-card {
    background: var(--bg-card);
    padding: 24px 18px;
    border-radius: 12px;
    text-align: center;
    text-decoration: none;
    color: var(--text-primary);
    border: 2px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.tool-card:hover {
    transform: translateY(-6px) scale(1.02);
    border-color: var(--primary-color);
    box-shadow: 0 8px 24px rgba(255, 20, 147, 0.4);
    background: rgba(30, 30, 30, 0.9);
}

.tool-icon {
    font-size: 2.8rem;
    margin-bottom: 12px;
    filter: drop-shadow(0 2px 8px rgba(255, 20, 147, 0.3));
}

.tool-name {
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.tool-desc {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.4;
}

.tool-card.featured {
    background: var(--gradient-primary);
    border-color: var(--primary-color);
    color: white;
}

.tool-card.featured .tool-name {
    color: white;
}

.tool-card.featured .tool-desc {
    color: rgba(255, 255, 255, 0.9);
}

.tool-card.featured:hover {
    box-shadow: 0 10px 32px rgba(255, 20, 147, 0.6);
    transform: translateY(-8px) scale(1.03);
}

/* Footer */
.footer {
    text-align: center;
    padding: 30px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.footer p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-color);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 30px 16px;
    }

    .name {
        font-size: 2rem;
    }

    .profile-image {
        width: 120px;
        height: 120px;
    }

    .link-button {
        padding: 18px 20px;
        gap: 16px;
    }

    .icon {
        font-size: 1.75rem;
    }

    .link-title {
        font-size: 1rem;
    }

    .link-subtitle {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .name {
        font-size: 1.75rem;
    }

    .tagline {
        font-size: 0.9rem;
    }

    .bio {
        font-size: 0.95rem;
    }

    .link-button {
        padding: 16px 18px;
    }
}

/* Loading State */
.loading {
    opacity: 0;
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}

