@font-face {
    font-family: OH;
    src: url(assets/fonts/orthodoxHerbertian.ttf);
}
@font-face {
    font-family: EH;
    src: url(assets/fonts/expandedHerbertian.ttf);
}
:root {
    --bg-color: #271300;
    --text-primary: #fff2cb;
    --text-secondary: #e7d8ae;
    --accent-color: #fff2cb;
}

* {
    box-sizing: border-box;
}

body {
    background-color: var(--bg-color);
    color: var(--text-primary);

    font-family: "OH", sans-serif;

    margin: 0;
    padding: 0;
    letter-spacing: 0.1em;
}

.home-body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    padding: 20px;
}

.quote-container {
    width: 100%;
    max-width: 800px;
    margin-bottom: 80px;
    z-index: 1;
}

h1.quote-text {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 30px;
    font-weight: normal;
    text-transform: uppercase;
    color: var(--text-primary);
}
h1.quote-text.long-quote {
    font-size: 3rem;
    line-height: 1.2;
}

h1.quote-text.longer-quote {
    font-size: 2rem;
    line-height: 1.1;
}
.quote-container.extra-wide {
    max-width: 1200px;
}
.quote-author {
    font-size: 1.8rem;
    color: var(--accent-color);
    margin-bottom: 12px;
    letter-spacing: 2px;
}

.quote-source {
    font-family: "OH", sans-serif;
    font-size: 0.9rem;
    color: var(--text-secondary);
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.punct {
    font-family: "EH", serif;
    font-weight: normal;
}

.footer {
    position: absolute;
    bottom: 30px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 10px;
    font-size: 0.8rem;
    color: var(--text-secondary);
}

.footer-item {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: var(--text-secondary);
    transition: color 0.2s;
    font-family: "EH", sans-serif;
}

.footer-item:hover {
    color: var(--accent-color);
}

.footer-icon {
    width: 16px;
    height: 16px;
    fill: currentColor;
}

.separator {
    color: var(--text-secondary);
    font-family: monospace;
    margin: 0;
}

@media (max-width: 700px) {
    h1.quote-text {
        font-size: 2rem;
    }
    .quote-author {
        font-size: 1.2rem;
    }
    .footer {
        text-align: center;
        flex-direction: column;
        gap: 15px;
        bottom: 20px;
        align-items: center;
    }
    h1.quote-text.long-quote {
        font-size: 1.4rem;
        line-height: 1.2;
    }
    h1.quote-text.longer-quote {
        font-size: 1rem;
        line-height: 1.4;
    }
    .desktop-only {
        display: none !important;
    }
}
