/* 🌿 Общая стилизация */
body {

    font-family: 'Cormorant Garamond', serif;
    color: #5a4841;
    line-height: 1.6;
    font-size: 15px;
}

/* 🔗 Ссылки */
a {
    color: #aa6a6a;
    text-decoration: none;
    transition: color 0.3s ease-in-out, transform 0.2s ease-in-out;
}
a:hover {
    color: #7d4b4b;
    transform: scale(1.02);
}

/* 📄 Разделители */
hr {
    border: none;
    border-top: 2px dotted #d9bfbf;
    margin: 15px 0;
}

/* 📦 Контейнеры форума */
.bodyline, .forumline {
    background-color: rgba(255, 250, 246, 0.9);
    border: 2px solid #d9bfbf;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
    padding: 12px;
    margin-bottom: 20px;
}

/* 🧵 Табличные ячейки */
td.row1, td.row2 {
    background-color: #fff5f2;
}
td.row3 {
    background-color: #f6ece8;
}

th {
    background: linear-gradient(to right, #f9dede, #f7cfcf);
    font-family: 'Nunito Sans', sans-serif;
    font-size: 16px;
    color: #5a4841;
    padding: 10px;
    border-radius: 6px;
}

/* 🖋 Заголовки */
a.maintitle, h1, h2, h3 {
    font-family: 'Great Vibes', cursive;
    font-size: 26px;
    color: #7d4b4b;
    text-shadow: 1px 1px 1px rgba(0,0,0,0.06);
}

/* 📋 Цитаты и код */
.quote, .code {
    background-color: #fffaf5;
    border-left: 5px solid #aa6a6a;
    padding: 10px;
    margin: 10px 0;
    border-radius: 8px;
    font-style: italic;
}

/* 🧵 Поля ввода */
input, textarea, select {
    background-color: #fffaf5;
    border: 1px solid #d9bfbf;
    font-family: 'Cormorant Garamond', serif;
    font-size: 14px;
    padding: 6px;
    border-radius: 6px;
    transition: box-shadow 0.3s ease-in-out;
}
input:focus, textarea:focus {
    box-shadow: 0 0 5px #aa6a6a;
}

/* 🔘 Кнопки */
input.button {
    background-color: #f7cfcf;
    color: #5a4841;
    font-weight: bold;
    border-radius: 8px;
    padding: 6px 12px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}
input.button:hover {
    background-color: #e4b4b4;
}

/* 👤 Аватар гостей */
.guestavatar {
    background-color: #f7cfcf;
    color: #5a4841;
    font-size: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100px;
    height: 100px;
}

/* 🧭 Навигация */
.nav, a.nav {
    font-weight: bold;
    color: #aa6a6a;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ✨ Анимация появления */
.forumline {
    animation: fadeInUp 0.8s ease-in-out;
}
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}
