/* prof.css - Elite Tech Minimalist Layout */
:root {
    --bg: #0a0a0c;
    --text: #e4e4e7;
    --text-muted: #a1a1aa;
    --border: #27272a;
    --accent: #3b82f6; /* Subtle tech blue for crisp link underlines only */
    --card-bg: #121214;
}

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

html, body {
    width: 100%;
    background-color: var(--bg);
    color: var(--text);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    -webkit-font-smoothing: antialiased;
}
/* Add this subtle background grid blueprint to the body */
body { 
    background-color: #050507; /* Darker canvas background layer */
    /* Subtle 40px grid pattern lines overlay */
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.015) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.015) 1px, transparent 1px);
    background-size: 40px 40px; 
    color: #e4e4e7; 
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    -webkit-font-smoothing: antialiased;
    padding: 60px 40px;
    display: flex;
    justify-content: center;
    min-height: 100vh;
}

/* Updated premium About Me paragraph formatting */
.about-text-wrapper {
    display: flex;
    flex-direction: column;
    gap: 24px; /* Crisp gap separation between blocks */
    max-width: 800px; /* Locked down width for optimal tracking readability */
    margin: 16px 0;
}

.about-paragraph {
    font-size: 16px;
    line-height: 1.75; /* Elegant vertical baseline grid distribution */
    color: #a1a1aa; /* Muted zinc grey text exactly like the reference image */
    letter-spacing: -0.1px;
}

/* Highlighting the first few words for that professional bio anchor hook */
.about-paragraph .intro-hook {
    color: #f4f4f5;
    font-weight: 500;
}

.page-container {
    width: 100%;
    max-width: 1000px; /* Locked to standard clean readable layout grid */
    display: flex;
    flex-direction: column;
    gap: 32px;
}

/* Header Section */
.profile-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--border);
    padding-bottom: 24px;
}

.profile-title h1 {
    font-size: 28px;
    font-weight: 700;
    letter-spacing: -0.5px;
    color: #fff;
}

.profile-title p {
    font-size: 14px;
    color: var(--text-muted);
    margin-top: 4px;
}

/* About Section Setup (Profile picture next to text) */
.intro-section {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 32px;
    align-items: center;
}

.pfp-circle {
    width: 120px;
    height: 120px;
    background: #1c1c1f;
    border-radius: 50%;
    border: 1px solid var(--border);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 32px;
    color: var(--text-muted);
}

.about-text {
    font-size: 15px;
    line-height: 1.6;
    color: var(--text);
}

/* Premium Navigation Links Row */
.nav-bar {
    display: flex;
    gap: 12px;
    border-bottom: 1px solid var(--border);
    padding-bottom: 16px;
}

.nav-link {
    color: var(--text);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 6px;
    background: var(--card-bg);
    border: 1px solid var(--border);
    transition: all 0.2s ease;
}

.nav-link:hover {
    background: #1c1c1f;
    border-color: var(--text-muted);
}

/* Bottom Split Layout */
.content-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
    align-items: start;
}

/* Section Group Typo */
h2.section-heading {
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #fff;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Contact Form Module styling */
.form-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 24px;
}

.form-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 16px;
}

.form-field label {
    font-size: 12px;
    font-weight: 500;
    color: var(--text-muted);
}

.form-field input, .form-field textarea {
    background: #060608;
    border: 1px solid var(--border);
    border-radius: 6px;
    padding: 10px 14px;
    color: #fff;
    font-size: 14px;
    font-family: inherit;
    transition: border-color 0.2s ease;
}

.form-field input:focus, .form-field textarea:focus {
    border-color: var(--accent);
    outline: none;
}

.btn-primary {
    background: #fff;
    color: #000;
    border: none;
    border-radius: 6px;
    padding: 12px;
    font-size: 14px;
    font-weight: 600;
    width: 100%;
    cursor: pointer;
    transition: opacity 0.2s ease;
}

.btn-primary:hover {
    opacity: 0.9;
}

/* Right Status / Links Panel */
.right-panel {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.status-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 20px;
}

.status-indicator {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 600;
    color: #34d399; /* Subtle safe green dot entry */
    margin-bottom: 8px;
}

.status-indicator::before {
    content: "";
    width: 6px;
    height: 6px;
    background: currentColor;
    border-radius: 50%;
}

.status-card p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.5;
}

/* Clean Badges Link Flex List */
.platform-links {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.platform-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 6px;
    padding: 12px;
    color: var(--text);
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    text-align: center;
    transition: all 0.2s ease;
}

.platform-card:hover {
    border-color: var(--text-muted);
    background: #1c1c1f;
}

/* Responsive Scaling */
@media (max-width: 768px) {
    .intro-section { grid-template-columns: 1fr; text-align: center; justify-items: center; }
    .content-grid { grid-template-columns: 1fr; gap: 32px; }
    .profile-header { flex-direction: column; text-align: center; gap: 16px; }
}
