/* ═══════════════════════════════════════════════════════════════
   ABOUT ME - SOPHISTICATED PROFESSIONAL BRANDING
   Editorial Document Aesthetic
   ═══════════════════════════════════════════════════════════════ */

/* ─────────────────────────────────────────────────────────────
   RESET & BASE FOUNDATION
   ───────────────────────────────────────────────────────────── */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    background-color: #FCFCFC;
    color: #1a1a1a;
    line-height: 1.7;
    font-size: 17px;
    letter-spacing: -0.003em;
}

/* ─────────────────────────────────────────────────────────────
   NAVIGATION
   ───────────────────────────────────────────────────────────── */

.nav-bar {
    background-color: #FFFFFF;
    border-bottom: 1px solid #E8E8E8;
    padding: 1.75rem 3rem;
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(10px);
    background-color: rgba(252, 252, 252, 0.95);
}

.home-link {
    color: #1a1a1a;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.01em;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.home-link::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: #1a1a1a;
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.home-link:hover {
    color: #333;
}

.home-link:hover::after {
    width: 100%;
}

/* ─────────────────────────────────────────────────────────────
   MAIN CONTAINER
   ───────────────────────────────────────────────────────────── */

.container {
    max-width: 780px;
    margin: 0 auto;
    padding: 5rem 2.5rem;
}

/* ─────────────────────────────────────────────────────────────
   PROFILE HEADER - EDITORIAL MASTHEAD
   ───────────────────────────────────────────────────────────── */

.profile-header {
    margin-bottom: 5rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid #E8E8E8;
    text-align: center;
}

.profile-image {
    margin-bottom: 2.5rem;
}

.profile-image img {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    object-fit: cover;
    border: 1px solid #E8E8E8;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.profile-image img:hover {
    transform: scale(1.02);
}

.profile-intro h1 {
    font-family: 'Georgia', 'Garamond', 'Times New Roman', serif;
    font-size: 3.5rem;
    font-weight: 400;
    color: #000000;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
    line-height: 1.1;
}

.tagline {
    font-size: 1.1rem;
    color: #666;
    font-weight: 400;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    font-size: 0.85rem;
}

/* ─────────────────────────────────────────────────────────────
   PROFESSIONAL LINKS BAR
   ───────────────────────────────────────────────────────────── */

.professional-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #F0F0F0;
}

.link-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    color: #1a1a1a;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.01em;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.link-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid #E8E8E8;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background-color: #FFFFFF;
}

.link-item:hover .link-icon {
    border-color: #1a1a1a;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.link-item:hover {
    color: #000;
}

/* ─────────────────────────────────────────────────────────────
   SECTION TYPOGRAPHY
   ───────────────────────────────────────────────────────────── */

section {
    margin-bottom: 4.5rem;
}

section h2 {
    font-family: 'Georgia', 'Garamond', 'Times New Roman', serif;
    font-size: 2rem;
    font-weight: 500;
    color: #000000;
    margin-bottom: 2rem;
    letter-spacing: -0.015em;
    line-height: 1.2;
}

section p {
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
    color: #2a2a2a;
    line-height: 1.75;
    text-align: left;
}

.placeholder-text {
    color: #999;
    font-style: italic;
    font-size: 1rem;
}

/* ─────────────────────────────────────────────────────────────
   ABOUT SECTION - ENHANCED READABILITY
   ───────────────────────────────────────────────────────────── */

.about-section p {
    line-height: 1.8;
}

.about-section p:last-of-type {
    margin-bottom: 0;
}

/* ─────────────────────────────────────────────────────────────
   SKILLS GRID
   ───────────────────────────────────────────────────────────── */

.skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.skill-item {
    padding: 1.5rem;
    border: 1px solid #E8E8E8;
    border-radius: 2px;
    background-color: #FFFFFF;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.skill-item:hover {
    border-color: #CCCCCC;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.skill-item h3 {
    font-size: 1rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
    letter-spacing: -0.01em;
}

.skill-item p {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 0;
    line-height: 1.5;
}

/* ─────────────────────────────────────────────────────────────
   FOOTER
   ───────────────────────────────────────────────────────────── */

.page-footer {
    background-color: #1a1a1a;
    color: #FFFFFF;
    text-align: center;
    padding: 3rem 2rem;
    margin-top: 6rem;
    font-size: 0.85rem;
    letter-spacing: 0.02em;
}

.page-footer p {
    margin: 0;
    opacity: 0.8;
}

/* ─────────────────────────────────────────────────────────────
   RESPONSIVE DESIGN
   ───────────────────────────────────────────────────────────── */

@media (max-width: 768px) {
    .nav-bar {
        padding: 1.25rem 1.5rem;
    }

    .container {
        padding: 3rem 1.5rem;
    }

    .profile-header {
        margin-bottom: 3.5rem;
    }

    .profile-image img {
        width: 120px;
        height: 120px;
    }

    .profile-intro h1 {
        font-size: 2.5rem;
    }

    .tagline {
        font-size: 0.8rem;
    }

    .professional-links {
        gap: 1.25rem;
    }

    .link-item {
        font-size: 0.75rem;
    }

    .link-icon {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }

    section h2 {
        font-size: 1.6rem;
    }

    section p {
        font-size: 1rem;
    }

    .skills-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .profile-intro h1 {
        font-size: 2rem;
    }

    .profile-image img {
        width: 100px;
        height: 100px;
    }

    .container {
        padding: 2rem 1.25rem;
    }

    section h2 {
        font-size: 1.4rem;
    }

    .professional-links {
        flex-direction: column;
        gap: 1rem;
    }
}

/* ─────────────────────────────────────────────────────────────
   PRINT STYLES - RESUME READY
   ───────────────────────────────────────────────────────────── */

@media print {
    body {
        background-color: white;
        color: black;
    }

    .nav-bar,
    .page-footer {
        display: none;
    }

    .container {
        max-width: 100%;
        padding: 0;
        margin: 0;
    }

    section {
        page-break-inside: avoid;
        margin-bottom: 2rem;
    }

    .profile-header {
        page-break-after: avoid;
    }

    .link-icon {
        border-color: #000;
    }

    a {
        color: black;
        text-decoration: none;
    }
}
