/* 1980s Console Aesthetic Stylesheet */

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

html {
    scroll-behavior: smooth;
}

body {
    background-color: #000000;
    color: #00FF00;
    font-family: "Courier New", "IBM Plex Mono", monospace;
    line-height: 1.6;
    font-size: 16px;
    padding: 20px;
}

/* Typography */
h1, h2, h3 {
    font-weight: bold;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    border-bottom: 2px solid #00FF00;
    padding-bottom: 0.5rem;
}

h2 {
    font-size: 1.8rem;
    margin-top: 2rem;
    color: #00AA00;
}

p {
    margin-bottom: 1rem;
}

/* Links */
a {
    color: #00FF00;
    text-decoration: underline;
    transition: color 0.2s ease;
}

a:hover, a:focus {
    color: #00AA00;
    outline: 2px solid #00FF00;
    outline-offset: 2px;
}

a:focus {
    outline: 2px solid #00FF00;
}

/* Sections */
header {
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #00FF00;
}

header .tagline {
    font-size: 0.9rem;
    color: #00AA00;
    font-style: italic;
}

main {
    max-width: 800px;
    margin: 0 auto 2rem;
}

section {
    margin-bottom: 2rem;
}

section#about {
    padding: 1rem;
    border-left: 2px solid #00FF00;
    border-right: 2px solid #00FF00;
    margin-bottom: 1rem;
}

section#services ul {
    list-style: none;
    margin: 1rem 0;
    padding-left: 1.5rem;
}

section#services li {
    margin-bottom: 0.8rem;
    padding-left: 1.5rem;
    position: relative;
}

section#services li::before {
    content: "> ";
    position: absolute;
    left: 0;
    color: #00AA00;
}

footer {
    border-top: 2px solid #00FF00;
    padding-top: 1rem;
    margin-top: 2rem;
    text-align: center;
}

section#contact {
    margin-top: 1rem;
}

section#contact strong {
    color: #00AA00;
}

/* Responsive Design */
@media (max-width: 768px) {
    body {
        padding: 16px;
        font-size: 14px;
    }

    h1 {
        font-size: 1.8rem;
    }

    h2 {
        font-size: 1.4rem;
    }

    main {
        margin: 0 auto 1rem;
    }

    section {
        margin-bottom: 1.5rem;
    }
}

@media (max-width: 480px) {
    body {
        padding: 12px;
        font-size: 13px;
        line-height: 1.5;
    }

    h1 {
        font-size: 1.5rem;
        border-bottom: 1px solid #00FF00;
    }

    h2 {
        font-size: 1.2rem;
    }

    section#about {
        border-left: 1px solid #00FF00;
        border-right: 1px solid #00FF00;
    }

    footer {
        border-top: 1px solid #00FF00;
    }
}

/* Accessibility: Print Styles */
@media print {
    body {
        background-color: white;
        color: black;
    }

    a {
        color: blue;
        text-decoration: underline;
    }

    h1, h2 {
        border-color: black;
        color: black;
    }
}
