/* me.md - Landing page for @cympfh */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600&display=swap');

html, body {
    margin: 0;
    padding: 0;
    height: 100%;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: url(../img/symphony.png);
    color: #333;
    min-height: 100vh;
}

h1 {
    font-size: 3rem;
    font-weight: 600;
    margin-bottom: 3rem;
    text-align: center;
    letter-spacing: 0.05em;
    color: #333;
}

.icons {
    display: flex;
    gap: 3rem;
    justify-content: center;
    align-items: center;
    margin-bottom: 4rem;
}

.icon-link {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #333;
    transition: transform 0.3s ease, opacity 0.3s ease;
    width: 6rem;
    height: 6rem;
    border-radius: 1rem;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.icon-link:hover {
    transform: translateY(-5px);
    opacity: 0.9;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.icon {
    width: 3rem;
    height: 3rem;
}

.icon-link img.icon {
    width: 6rem;
    height: 6rem;
}

.interests {
    text-align: center;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 1rem;
    border: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.heart-icon {
    width: 2rem;
    height: 2rem;
    color: #e74c3c;
}

.interest-links {
    display: flex;
    gap: 2rem;
    justify-content: center;
    align-items: center;
}

.interest-item {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 0.75rem;
    background: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, background 0.3s ease;
    text-decoration: none;
}

.interest-item:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.9);
}

.interest-icon {
    width: 2rem;
    height: 2rem;
    color: #555;
}

.interest-item:hover .interest-icon {
    color: #667eea;
}

/* Responsive design */
@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    .icons {
        gap: 2rem;
        margin-bottom: 3rem;
    }

    .icon-link {
        padding: 1rem;
    }

    .icon {
        width: 2.5rem;
        height: 2.5rem;
    }

    .interests {
        padding: 1.5rem;
        margin: 0 1rem;
    }

    .interest-links {
        gap: 1.5rem;
    }

    .interest-item {
        width: 3rem;
        height: 3rem;
    }
}
