/* 90s Web Aesthetic - em0sh.com */

* {
    box-sizing: border-box;
}

body {
    font-family: "Monaco", "Lucida Console", "Courier New", monospace;
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    background-color: #f5f0e6;
    color: #1a1a1a;
    min-height: 100vh;
}

.container {
    max-width: 640px;
    margin: 40px auto;
    padding: 0 20px;
}

.window {
    background: #ffffff;
    border: 2px solid #1a1a1a;
    box-shadow: 4px 4px 0px #1a1a1a;
}

.window-titlebar {
    background: #1a1a1a;
    color: #f5f0e6;
    padding: 8px 12px;
    font-size: 12px;
    letter-spacing: 1px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.window-titlebar span {
    opacity: 0.7;
}

.window-buttons {
    display: flex;
    gap: 6px;
}

.window-btn {
    width: 12px;
    height: 12px;
    border: 1px solid #f5f0e6;
    font-size: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.window-content {
    padding: 24px;
}

h1 {
    font-size: 28px;
    font-weight: normal;
    margin: 0 0 8px 0;
    letter-spacing: 2px;
}

h2 {
    font-size: 12px;
    font-weight: normal;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 0 0 24px 0;
    color: #666;
}

h3 {
    font-size: 11px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 24px 0 12px 0;
    padding-bottom: 4px;
    border-bottom: 1px solid #1a1a1a;
}

hr {
    border: none;
    border-top: 1px solid #1a1a1a;
    margin: 16px 0;
}

p {
    margin: 0 0 12px 0;
}

a {
    color: #0000cc;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

a:visited {
    color: #551a8b;
}

.links-section {
    margin: 20px 0;
}

.links-section p {
    margin: 8px 0;
}

.tagline {
    margin-top: 24px;
    padding-top: 16px;
    border-top: 1px dashed #ccc;
    font-style: italic;
    color: #444;
}

/* Quote styling */
.quote {
    margin: 20px 0;
    padding: 16px;
    background: #faf8f4;
    border-left: 3px solid #1a1a1a;
}

.quote-text {
    margin-bottom: 8px;
}

.quote-author {
    font-size: 12px;
    color: #666;
}

/* List styling */
.list-section {
    text-align: left;
    margin: 16px 0;
}

.list-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.list-section li {
    padding: 4px 0;
    padding-left: 16px;
    position: relative;
}

.list-section li::before {
    content: ">";
    position: absolute;
    left: 0;
    color: #999;
}

/* Gallery/Project styling */
.project {
    margin: 32px 0;
    text-align: center;
}

.project-title {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.project img {
    max-width: 100%;
    height: auto;
    border: 2px solid #1a1a1a;
    box-shadow: 3px 3px 0px #1a1a1a;
}

/* Navigation/Footer */
.nav {
    margin-top: 32px;
    padding-top: 16px;
    border-top: 1px solid #1a1a1a;
}

.nav-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px 16px;
    font-size: 12px;
    text-transform: lowercase;
}

.nav-links a {
    color: #1a1a1a;
    padding: 4px 8px;
    border: 1px solid transparent;
}

.nav-links a:hover {
    border: 1px solid #1a1a1a;
    text-decoration: none;
}

.nav-links a.current {
    background: #1a1a1a;
    color: #f5f0e6;
}

.home-link {
    margin-top: 12px;
    text-align: center;
}

.home-link a {
    font-size: 11px;
    color: #666;
}

/* Footer badge */
.footer-badge {
    text-align: center;
    margin-top: 24px;
    font-size: 10px;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Status bar */
.status-bar {
    background: #e8e4dc;
    border-top: 1px solid #1a1a1a;
    padding: 6px 12px;
    font-size: 10px;
    color: #666;
    display: flex;
    justify-content: space-between;
}

/* Easter egg styling */
.easter-egg {
    font-size: 18px;
    color: #999;
    margin: 40px 0;
}
