@import url('https://fonts.googleapis.com/css2?family=GFS+Didot&display=swap');

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

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    color: #2d2d2d;
    background: #fff;
    line-height: 1.7;
    font-size: 16px;
}

header, main, footer {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Header */

header {
    padding-top: 64px;
    padding-bottom: 36px;
    border-bottom: 1px solid #e0e0e0;
}

h1 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.subtitle {
    font-size: 1.1rem;
    color: #555;
}

.subtitle a {
    color: #555;
    text-decoration: none;
}

.subtitle a:hover {
    color: #333;
    text-decoration: underline;
}

.location {
    color: #777;
    font-size: 0.95rem;
    margin-top: 2px;
}

.contact {
    margin-top: 8px;
}

.contact a {
    color: #1a6fb5;
    text-decoration: none;
}

.contact a:hover {
    text-decoration: underline;
}

/* Sections */

section {
    padding: 36px 0;
    border-bottom: 1px solid #e0e0e0;
}

h2 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 16px;
}

/* Certifications */

#certifications ul {
    list-style: none;
}

#certifications li {
    margin-bottom: 8px;
}

.verify-link {
    margin-left: 8px;
    font-size: 0.85rem;
    color: #1a6fb5;
    text-decoration: none;
}

.verify-link:hover {
    text-decoration: underline;
}

/* Skills */

#skills ul {
    list-style: none;
    color: #444;
}

#skills li {
    margin-bottom: 6px;
}

/* Experience */

.job {
    margin-bottom: 28px;
}

.job:last-child {
    margin-bottom: 0;
}

.job h3 {
    font-size: 1.05rem;
    font-weight: 600;
}

.job-meta {
    color: #777;
    font-size: 0.9rem;
    margin-bottom: 6px;
}

.job ul {
    padding-left: 20px;
    color: #444;
}

.job li {
    margin-bottom: 3px;
}

/* Footer */

footer {
    padding: 48px 24px;
    text-align: center;
    color: #999;
    font-size: 0.85rem;
}

.visitor-count {
    margin-bottom: 8px;
}

.wellfit-logo {
    height: 32px;
    margin-bottom: 4px;
}

.dedication {
    margin-top: 24px;
    font-family: 'GFS Didot', serif;
    font-size: 0.65rem;
    font-weight: 700;
    color: #d4d4d4;
    letter-spacing: 2px;
    opacity: 0.6;
}

.dedication a {
    color: inherit;
    text-decoration: none;
}

.dedication a:hover {
    opacity: 1;
    color: #bbb;
}

.note {
    font-size: 0.8rem;
    color: #bbb;
}

.note a {
    color: #bbb;
    text-decoration: none;
}

.note a:hover {
    color: #999;
    text-decoration: underline;
}

/* Print */

@media print {
    body {
        font-size: 12pt;
        color: #000;
    }

    header, main, footer {
        padding: 0;
        max-width: 100%;
    }

    header {
        padding-top: 0;
    }

    section {
        padding: 16px 0;
    }

    footer {
        display: none;
    }

    a {
        color: #000;
        text-decoration: none;
    }

    .verify-link {
        color: #000;
    }
}
