/* Interaction 2 – Blur + depth: varying blur, hover to sharpen. Centered, no scroll. */
html,
body {
    margin: 0;
    padding: 0;
    height: 100%;
    overflow: hidden;
    font-family: "Adobe Jenson Pro", Georgia, serif;
    background-color: #1C1000;
    color: #fff;
}

.page-main {
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    box-sizing: border-box;
}

.poem-container {
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.25;
    font-size: clamp(1.05rem, 2.6vh, 1.55rem);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 40px;
    box-sizing: border-box;
}

.line {
    position: relative;
    margin: 0.35vh 0;
    color: #260B00;
    filter: blur(0.5px);
    transition: filter 15s ease;
}

.line:nth-child(2n) {
    filter: blur(1px);
}
.line:nth-child(3n) {
    filter: blur(1.5px);
}
.line:nth-child(5n) {
    filter: blur(2.1px);
}
.line:nth-child(7n) {
    filter: blur(1.2px);
}

.line:nth-child(4n) {
    filter: blur(1.2px);
}
.line:nth-child(6n) {
    filter: blur(2px);
}

.line:hover {
    filter: blur(0) !important;
    transition: filter 0.3s ease;
}

.nav-button {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    padding: 5px;
}

.nav-button:hover {
    opacity: 0.5;
}
