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

/* Body */
body {
    background-color: #0f172a; /* deep navy */
    color: #f1f5f9; /* soft white */
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
}

/* Container */
.container {
    max-width: 700px;
    padding: 2rem;
    text-align: center;
}

/* Name */
h1 {
    font-size: 2.8rem;
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
}

/* Tagline */
.tagline {
    color: #38bdf8; /* subtle blue accent */
    margin-bottom: 2rem;
    font-weight: 500;
}

/* About */
.about {
    margin-bottom: 2rem;
    line-height: 1.6;
    font-size: 1.05rem;
    opacity: 0.9;
}

/* Links */
.links a {
    display: inline-block;
    margin: 0 1rem;
    padding: 0.6rem 1.2rem;
    border: 1px solid #38bdf8;
    color: #38bdf8;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.links a:hover {
    background-color: #38bdf8;
    color: #0f172a;
}

/* Headshot */
.headshot {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    display: block;
    margin: 0 auto 1rem auto;
    border: 3px solid #38bdf8;
    object-fit: cover;
}

/* Social Media */
.social-media {
    margin: 2rem 0;
}

.social-media a {
    display: inline-block;
    margin: 0 0.5rem;
    transition: transform 0.3s ease;
}

.social-media a img {
    width: 32px;
    height: 32px;
    filter: invert(92%) sepia(8%) saturate(0%) hue-rotate(177deg) brightness(102%) contrast(102%); /* white icons */
}

.social-media a:hover {
    transform: scale(1.2);
}

/* Footer */
footer {
    margin-top: auto;
    padding: 1rem;
    text-align: center;
    font-size: 0.9rem;
    color: #94a3b8; /* lighter grey */
}
