/**
 * Slogans Frontend Styles
 * Beautiful batch container for displaying slogans
 */

.slogans-container {
    background: linear-gradient(to right, rgba(102, 126, 234, 0.03) 0%, transparent 100%);
    border-radius: 0;
    padding: 25px 30px;
    margin: 40px 0;
    box-shadow: none;
    color: #333333;
    position: relative;
    overflow: visible;
    border-left: 4px solid rgba(102, 126, 234, 0.3);
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    min-height: 100px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

.slogans-container:hover {
    border-left-color: rgba(102, 126, 234, 0.6);
    background: linear-gradient(to right, rgba(102, 126, 234, 0.05) 0%, transparent 100%);
    transform: translateX(5px);
}

.slogans-container::before {
    display: none;
}

.slogans-container:hover {
    transform: none;
    box-shadow: none;
}

.slogans-theme {
    font-size: 20px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
    color: rgba(102, 126, 234, 0.95);
    display: flex;
    align-items: center;
    gap: 10px;
    line-height: 1.4;
    position: relative;
    padding: 0;
    background: transparent;
    border-radius: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

.slogans-theme-prefix {
    font-size: 14px;
    font-weight: 400;
    text-transform: none;
    letter-spacing: normal;
    color: rgba(0, 0, 0, 0.6);
}

.slogans-theme::before {
    content: '📖';
    font-size: 24px;
    line-height: 1;
    display: inline-block;
    opacity: 0.8;
    vertical-align: middle;
    margin-top: -6px;
}

.slogans-text {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: -8px;
    font-weight: 300;
    color: rgba(0, 0, 0, 0.9);
    position: relative;
    z-index: 1;
    font-style: italic;
    padding: 20px 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

.slogans-text::before {
    content: '"';
    font-size: 100px;
    line-height: 1;
    position: absolute;
    left: -10px;
    top: -15px;
    opacity: 0.1;
    font-family: Georgia, serif;
    color: rgba(102, 126, 234, 0.25);
    font-weight: 400;
}


.slogans-author {
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    color: rgba(102, 126, 234, 0.9);
    position: relative;
    z-index: 1;
    display: inline;
    padding-left: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

.slogans-source {
    font-size: 13px;
    margin-top: 8px;
    opacity: 0.7;
    color: rgba(0, 0, 0, 0.6);
    position: relative;
    z-index: 1;
    font-style: normal;
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.slogans-source-author {
    font-weight: 400;
    color: rgba(0, 0, 0, 0.6);
}

.slogans-buchtitel-separator {
    font-size: 14px;
    color: rgba(0, 0, 0, 0.6);
}

.slogans-buchtitel-wrapper {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    position: relative;
}

.slogans-buchtitel {
    font-size: 14px;
    font-weight: 300;
    color: rgba(0, 0, 0, 0.6);
    font-style: normal;
    cursor: text;
    user-select: text;
}

.slogans-copy-btn {
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 2px 4px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    opacity: 0.5;
    transition: opacity 0.2s ease;
    color: rgba(0, 0, 0, 0.6);
    line-height: 1;
    vertical-align: middle;
}

.slogans-copy-btn:hover {
    opacity: 1;
    color: #ffffff;
    background: rgba(102, 126, 234, 0.8);
    border-radius: 3px;
}

.slogans-copy-btn:active {
    transform: scale(0.95);
}

.slogans-copy-btn svg {
    width: 14px;
    height: 14px;
    display: block;
}

.slogans-copy-tooltip {
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    margin-bottom: 5px;
    padding: 4px 8px;
    background: rgba(0, 0, 0, 0.8);
    color: #ffffff;
    font-size: 12px;
    border-radius: 4px;
    white-space: nowrap;
    pointer-events: none;
    z-index: 1000;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    animation: fadeInOut 2s ease-in-out;
}

@keyframes fadeInOut {
    0% {
        opacity: 0;
        transform: translateX(-50%) translateY(5px);
    }
    20% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
    80% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
    100% {
        opacity: 0;
        transform: translateX(-50%) translateY(-5px);
    }
}

.slogans-isbn {
    font-size: 14px;
    font-weight: 300;
    color: rgba(0, 0, 0, 0.6);
    font-style: normal;
}

.slogans-jahr {
    color: rgba(0, 0, 0, 0.5);
    margin-left: 4px;
}

.slogans-quelle {
    color: rgba(0, 0, 0, 0.6);
}

/* Hide on tablets and smartphones */
@media (max-width: 1024px) {
    .slogans-container {
        display: none !important;
    }
}

/* Alternative color scheme - can be customized */
.slogans-container.alt-style {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.slogans-container.blue-style {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.slogans-container.green-style {
    background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
}

}


