/* Базовые настройки страницы */
body {
    background-color: #fdfcf0; /* Цвет старой бумаги */
    color: #2c2c2c;
    font-family: "Georgia", serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center; /* Центрирует всё содержимое по горизонтали */
}

/* Навигация */
nav {
    margin: 20px 0;
    padding: 10px;
    border-bottom: 1px double #d1cfb7;
    width: 80%;
    max-width: 800px;
    text-align: center;
    display: flex;
    justify-content: space-between;
}

nav a {
    text-decoration: none;
    color: #8b4513;
    font-size: 0.9em;
    text-transform: uppercase;
    letter-spacing: 1px;
}

nav a:hover {
    color: #cd853f;
}

/* Основной контейнер */
main {
    width: 90%;
    max-width: 800px;
    background: #fff;
    padding: 40px;
    box-shadow: 0 0 15px rgba(0,0,0,0.05);
    border: 1px solid #eee;
    display: flex;
    flex-direction: column;
    align-items: center; /* Центрирует внутренние секции */
}

/* Общие настройки для блоков контента */
.content-block {
    width: 100%;
    margin-bottom: 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Метки орфографии (бледные надписи) */
.orthography-label {
    font-size: 0.75em;
    color: #999;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 15px;
    letter-spacing: 2px;
    border-bottom: 1px double #eee;
    width: 60%;
}

/* Стили заголовков */
.poem-title-old {
    font-weight: normal;
    font-style: italic;
    text-align: center;
    font-size: 1.9em;
    color: #1a1a1a;
    margin-bottom: 5px;
}

.poem-title-modern {
    font-family: "Arial", sans-serif;
    font-weight: bold;
    text-align: center;
    font-size: 1.6em;
    color: #333;
    margin-bottom: 20px;
}

/* Оформление года (красиво и по центру) */
.poem-year {
    text-align: center;
    font-style: italic;
    color: #777;
    margin-top: 0;
    margin-bottom: 30px;
    font-size: 1.1em;
}

/* Текст стихотворения: блок центрирован, но текст внутри выровнен по левому краю */
.poem-text {
    display: inline-block;
    text-align: left;
    font-size: 1.2em;
    line-height: 1.7;
    color: #1a1a1a;
    white-space: pre-line;
    max-width: fit-content;
}

/* Место написания */
.location {
    margin-top: 20px;
    font-style: italic;
    color: #666;
    text-align: right;
    width: 100%;
    max-width: 400px;
}

/* Разделитель между блоками */
hr {
    border: 0;
    height: 1px;
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0));
    margin: 40px 0;
    width: 80%;
}

/* Футер и цитирование */
footer {
    margin-top: 40px;
    padding: 30px;
    text-align: center;
    font-size: 0.9em;
    color: #555;
    width: 100%;
    max-width: 800px;
}

.cite-box {
    background: #f4f4f4;
    padding: 20px;
    border-left: 4px solid #8b4513;
    text-align: left;
    font-family: sans-serif;
    line-height: 1.4;
}

/* Для страницы оглавления (index.html) */
.poem-list {
    list-style: none;
    padding: 0;
    width: 100%;
}

.poem-list li {
    padding: 10px 0;
    border-bottom: 1px dashed #eee;
    display: flex;
    justify-content: space-between;
}

.poem-list a {
    text-decoration: none;
    color: #222;
    font-weight: bold;
}

.poem-list .index-year {
    color: #888;
    font-style: italic;
}