/* Общие стили */
body {
    margin: 0;
    font-family: "Georgia", serif;
    background: #f9f3e8;
    color: #3d2f27;
}

header {
    background: #3d2f27;
    color: #f9f3e8;
    display: flex;
    justify-content: space-between;
    padding: 20px 40px;
    align-items: center;
}

header nav a {
    color: #f9f3e8;
    margin-left: 20px;
    text-decoration: none;
    font-size: 18px;
}

header nav a.active {
    font-weight: bold;
    text-decoration: underline;
}

header nav a:hover {
    color: #d8c09a;
}

.logo {
    font-size: 20px; /* уменьшили размер логотипа */
    font-weight: bold;
    letter-spacing: 1px;
}

.content {
    padding: 60px 40px;
    max-width: 900px;
    margin: auto;
}

.button, .button-small {
    display: inline-block;
    background: #a0784a;
    color: white;
    padding: 12px 25px;
    text-decoration: none;
    font-size: 18px;
    border-radius: 6px;
    transition: 0.3s;
}

.button:hover, .button-small:hover {
    background: #8b673d;
    transform: translateY(-2px);
}

.button-small {
    font-size: 16px;
    padding: 8px 18px;
}

.story-card, .video-card {
    background: #fff6e5;
    padding: 20px;
    margin: 20px 0;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

footer {
    text-align: center;
    padding: 20px;
    margin-top: 40px;
    background: #3d2f27;
    color: #f9f3e8;
}
