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

body {
    /* Using a cleaner mono stack */
    font-family: 'SFMono-Regular', Consolas, 'Liberation Mono', Menlo, monospace; 
    line-height: 1.6;
    color: #a89984; /* Soft beige/grey for main text */
    background-color: #1d2021; /* Deep charcoal (easier on eyes) */
    max-width: 850px;
    margin: 0 auto;
    padding: 40px 20px;
}

/* Typography */
h1 {
    font-size: 1.8rem;
    font-weight: bold;
    color: #b8bb26; /* Muted olive/green for name */
}

.subtitle {
    color: #83a598; /* Muted blue-green for role */
    font-size: 1rem;
    margin-bottom: 10px;
}

h2 {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #fabd2f; /* Muted amber/gold for section headers */
    margin-bottom: 15px;
    border-bottom: 1px solid #3c3836;
    padding-bottom: 5px;
}

/* Header & Hero */
header {
    margin-bottom: 40px;
    border-left: 2px solid #b8bb26;
    padding-left: 15px;
}

.hero {
    font-size: 0.95rem;
    margin-bottom: 50px;
    max-width: 700px;
    color: #d5c4a1; /* Slightly brighter for the intro */
}

/* Responsive Grid */
.grid-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

@media (max-width: 600px) {
    .grid-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

/* Lists & Links */
section {
    margin-bottom: 40px;
}

.link-list {
    list-style: none;
}

.link-list li {
    margin-bottom: 10px;
}

.link-list a {
    color: #8ec07c; /* Soft mint green for links */
    text-decoration: none;
    border-bottom: 1px solid transparent;
}

.link-list a:hover {
    color: #b8bb26;
    border-bottom: 1px solid #b8bb26;
}

.tag {
    font-size: 0.7rem;
    background: #3c3836;
    padding: 2px 6px;
    color: #a89984;
    margin-left: 5px;
    border-radius: 3px;
}

/* Visual Assets */
.qr-code {
    max-width: 130px;
    height: auto;
    filter: invert(0.9) sepia(0.2); /* Softens the white background of a QR */
    opacity: 0.6;
}

/* Footer */
footer {
    margin-top: 60px;
    padding-top: 20px;
    border-top: 1px solid #3c3836;
    font-size: 0.8rem;
    color: #665c54;
}