/* static/css/developer_contact.css */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

:root {
    --dev-bg: #0c0c0d;
    --dev-primary: #8A2BE2; /* Blue-Violet */
    --dev-secondary: #00F5D4; /* Bright Teal */
    --dev-text: #EAEAEA;
    --dev-text-muted: #a0a0a0;
}

body.dev-contact-page {
    background-color: var(--dev-bg);
    font-family: 'Poppins', sans-serif;
    color: var(--dev-text);
    margin: 0;
    padding: 0;
    overflow: hidden; /* Hide scrollbars from the main page */
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
}

#particles-js {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
}

.contact-card-container {
    position: relative;
    z-index: 2;
    padding: 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.contact-card {
    width: 100%;
    max-width: 450px;
    background: rgba(23, 23, 23, 0.6);
    backdrop-filter: blur(15px) saturate(180%);
    -webkit-backdrop-filter: blur(15px) saturate(180%);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.125);
    padding: 2.5rem;
    text-align: center;
    animation: fadeIn 1.5s ease-out forwards;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.profile-pic {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 4px solid var(--dev-primary);
    margin: 0 auto 1.5rem auto;
    object-fit: cover;
    display: block;
}

.dev-name {
    font-size: 2.25rem;
    font-weight: 700;
    letter-spacing: 1px;
    background: linear-gradient(90deg, var(--dev-primary), var(--dev-secondary));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin: 0;
    line-height: 1.2;
}

.dev-title {
    font-size: 1rem;
    font-weight: 300;
    color: var(--dev-text-muted);
    margin-bottom: 2.5rem;
}

.contact-links {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    text-decoration: none;
    color: var(--dev-text);
    background-color: rgba(255,255,255, 0.05);
    padding: 1rem;
    border-radius: 12px;
    border: 1px solid transparent;
    transition: all 0.3s ease;
}

.contact-link:hover {
    background-color: rgba(255,255,255, 0.1);
    border-color: var(--dev-secondary);
    transform: translateY(-5px);
}

.contact-link svg {
    width: 28px;
    height: 28px;
    stroke-width: 1.5;
    transition: all 0.3s ease;
}

.contact-link:hover svg {
    stroke: var(--dev-secondary);
    transform: rotate(-10deg);
}

.link-text {
    text-align: left;
}

.link-text span {
    display: block;
}

.link-label {
    font-weight: 600;
    font-size: 1.1rem;
}

.link-value {
    font-size: 0.9rem;
    color: var(--dev-text-muted);
}
