﻿body {
    background-color: #D1BE9D;
    color: #D1BE9D;
    margin: 0;
    font-family: Arial, sans-serif;
}

/* Основен контейнер */
.work-container {
    display: flex;
    align-items: flex-start;
    max-width: 1200px;
    margin: 50px auto;
    padding: 0 20px;
    gap: 30px;
    box-sizing: border-box;
}

/* Карта с произведението */
.work-page {
    flex: 1;
    min-width: 0;
    background-color: #64513B;
    padding: 35px 40px;
    border-radius: 12px;
    box-sizing: border-box;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.18);
}

/* Заглавие */
.work-title-container {
    margin-bottom: 30px;
}

.work-title {
    margin: 0;
    padding: 0;
    font-size: 40px;
    line-height: 1.2;
    font-weight: 700;
    text-align: left;
}

/* Текст на произведението */
.work-page pre {
    margin: 0;
    background-color: transparent;
    color: #D1BE9D;
    white-space: pre-wrap;
    overflow-wrap: break-word;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 25px;
    line-height: 1.6;
    text-align: left;
}

/* Автор */
.work-author {
    margin: 35px 0 0 0;
    text-align: right;
    font-style: italic;
    font-size: 18px;
}

    .work-author a {
        color: #D1BE9D;
        text-decoration: none;
    }

        .work-author a:hover {
            text-decoration: underline;
        }

/* Footer */
.work-footer {
    margin-top: 25px;
}

.share-container {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Share бутон */
.share-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    padding: 0;
    background-color: #D1BE9D;
    color: #64513B;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    cursor: pointer;
    transition: transform 0.15s ease, background-color 0.15s ease;
}

    .share-btn:hover {
        transform: translateY(-2px);
        background-color: #dfcfb4;
    }

    .share-btn:active {
        transform: translateY(0);
    }

#shareMessage {
    font-size: 16px;
    color: #D1BE9D;
}

/* YouTube */
.youtube-video {
    flex: 0 0 480px;
    max-width: 480px;
}

    .youtube-video iframe {
        display: block;
        width: 100%;
        aspect-ratio: 16 / 9;
        height: auto;
        border: none;
        border-radius: 12px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.18);
    }


/* TABLET */
@media (max-width: 1000px) {
    .work-container {
        flex-direction: column;
    }

    .youtube-video {
        flex: none;
        width: 100%;
        max-width: 100%;
    }
}


/* MOBILE */
@media (max-width: 780px) {
    .work-container {
        margin: 25px auto;
        padding: 0 12px;
        gap: 20px;
    }

    .work-page {
        width: 100%;
        padding: 25px 20px;
        border-radius: 10px;
    }

    .work-title-container {
        margin-bottom: 24px;
    }

    .work-title {
        font-size: 30px;
    }

    .work-page pre {
        font-size: 19px;
        line-height: 1.55;
    }

    .work-author {
        margin-top: 30px;
        font-size: 16px;
    }

    .work-footer {
        margin-top: 22px;
    }

    .youtube-video iframe {
        border-radius: 10px;
    }
}


/* МНОГО МАЛКИ ТЕЛЕФОНИ */
@media (max-width: 420px) {
    .work-container {
        padding: 0 8px;
    }

    .work-page {
        padding: 22px 16px;
    }

    .work-title {
        font-size: 27px;
    }

    .work-page pre {
        font-size: 18px;
    }
}
