/*
 * No Type Studio
 * Using Eczar for title, Geist for body text
 */

@font-face {
    font-family: 'Eczar';
    src: url('static/eczarvariable.ttf') format('truetype');
    font-weight: 100 900;
    font-style: normal;
    font-display: swap;
}

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

html {
    font-size: 16px;
}

body {
    background-color: #000000;
    color: #ffffff;
    font-family: "Geist", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
    font-size: 18px;
    line-height: 28px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

main {
    max-width: 540px;
    padding: 40px 24px;
}

/* Divider line - matches interfacecraft.dev */
.divider {
    width: 40px;
    height: 1px;
    background-color: #171717;
    margin-bottom: 32px;
}

header {
    margin-bottom: 50px;
}

h1 {
    font-family: 'Eczar', Georgia, serif;
    font-size: 50px;
    font-weight: 350;
    letter-spacing: 0;
    color: #ffffff;
    margin-bottom: 16px;
}

.tagline {
    font-size: 18px;
    color: #666666;
    line-height: 26px;
}

h2 {
    font-family: "Source Serif 4", Georgia, serif;
    font-size: 32px;
    font-weight: 400;
    letter-spacing: -0.5px;
    color: #171717;
    margin-bottom: 24px;
}

h3 {
    font-family: "Geist", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #171717;
    margin-top: 32px;
    margin-bottom: 12px;
}

.content {
    margin-bottom: 40px;
}

.content .divider {
    margin-top: 64px;
    margin-bottom: 32px;
}

p {
    margin-bottom: 16px;
    color: #cccccc;
}

p:last-child {
    margin-bottom: 0;
}

a {
    color: #ffffff;
    text-decoration: underline;
    text-decoration-color: rgba(255, 255, 255, 0.3);
    text-underline-offset: 2px;
}

a:hover {
    color: #cccccc;
    text-decoration-color: rgba(255, 255, 255, 0.5);
}

.updated {
    font-size: 14px;
    color: #888888;
    margin-top: 32px;
}

footer p {
    font-size: 14px;
    color: #888888;
}

/* Responsive adjustments */
@media (max-width: 600px) {
    main {
        padding: 60px 20px 80px;
    }

    h1 {
        font-size: 36px;
        letter-spacing: -0.75px;
    }

    h2 {
        font-size: 26px;
    }

    body {
        font-size: 16px;
        line-height: 26px;
    }
}
