/* Import Fonts */
@import url("https://fonts.googleapis.com/css2?family=Pixelify+Sans:wght@400;500;600;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@300;400;500&display=swap");
@import url("https://fonts.googleapis.com/css2?family=M+PLUS+Rounded+1c&display=swap");

/* --- Root Variables --- */
:root {
    --bg: #090c11;
    --fg: #ffffff;
    --accent: #7aa2f7;
    --muted: #727272;
    --border: #a3b1c6;
    --surface: #ffffff00;
}

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

html {
    font-family: JetBrains Mono, monospace;
    font-size: 14px;
    line-height: 1.6;
    background-color: var(--bg);
    background-image: radial-gradient(circle, #31353a 1px, transparent 1px);
    background-size: 20px 20px;
    color: var(--fg);
    text-align: center;
}

body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 1rem;
}

/* --- Text Styles --- */
.text-highlight {
    color: #7aa2f7;
    font-family: "Pixelify Sans", monospace;
    font-weight: bold;
}

.text-red {
    color: #ff7f57;
    font-family: JetBrains Mono, monospace;
    font-weight: bold;
}

.text-green {
    color: #5dff57;
    font-family: JetBrains Mono, monospace;
    font-weight: bold;
}

.text-orange {
    color: #ffb657;
    font-family: JetBrains Mono, monospace;
    font-weight: bold;
}

/* --- Container --- */
.container {
    width: 100%;
    max-width: 1200px;
    background: var(--surface);
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* --- Showcase Box --- */
.showcase-box {
    width: 300px;
    background: #ffffff22;
    border: 1px solid #7aa2f7;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 15px rgba(0,0,0,0.1);
    transition: transform 0.2s, box-shadow 0.2s;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0.5rem auto;
    text-align: center;
}

.showcase-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(0,0,0,0.2);
}

.showcase-banner {
    width: 80%;
    height: 90px;
    object-fit: cover;
    margin: 0.25rem auto;
}

.contact-icon {
    width: 50px;
    height: auto;
    display: block;
    margin: 0.25rem auto;
}

.showcase-content {
    padding: 0.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
}

.showcase-title {
    font-family: "Pixelify Sans", monospace;
    font-size: 1.25rem;
    color: #ffffff;
    margin: 0.25rem 0;
}

.showcase-desc {
    font-family: "JetBrains Mono", monospace;
    font-size: 0.9rem;
    color: #c7c7c7;
    margin: 0.25rem 0;
}

.showcase-btn {
    display: inline-block;
    text-align: center;
    padding: 0.35rem 0.75rem;
    font-family: "JetBrains Mono", monospace;
    font-weight: 500;
    color: #ffffff;
    background-color: #7aa2f7;
    border-radius: 6px;
    text-decoration: none;
    transition: background-color 0.2s;
    margin-top: 0.25rem;
}

.showcase-btn:hover {
    background-color: #5c8ae8;
}

/* --- Headings --- */
h1, h2, h3, h4, h5, h6 {
    font-family: "M PLUS Rounded 1c", sans-serif;
    font-weight: 500;
    color: var(--fg);
    text-align: center;
    margin: 0.5rem 0;
}

h1 { font-size: 2.2rem; }
h2 { font-size: 1.8rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.3rem; }
h5 { font-size: 1.1rem; }
h6 { font-size: 1rem; }

/* --- Paragraphs --- */
p {
    margin: 0.25rem auto;
    color: var(--muted);
    max-width: 800px;
}

/* --- Links --- */
a {
    color: var(--accent);
    text-decoration: none;
    transition: color 0.2s;
}

a:hover {
    color: var(--fg);
    text-decoration: underline;
}

/* --- Navigation --- */
nav {
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--border);
}

nav ul {
    list-style: none;
    display: flex;
    gap: 1rem;
    justify-content: center;
}

nav a {
    color: var(--muted);
    transition: color 0.2s;
}

nav a:hover {
    color: var(--fg);
}

/* --- Footer --- */
footer {
    margin-top: 1.5rem;
    padding-top: 0.5rem;
    border-top: 1px solid var(--border);
    text-align: center;
    color: var(--muted);
    font-size: 0.9rem;
}

/* --- Responsive --- */
@media (max-width: 768px) {
    body {
        padding: 0.5rem;
    }

    nav ul {
        gap: 0.5rem;
        flex-wrap: wrap;
    }
}
