/* Specifični stilovi za stranicu knjige */
.book-container {
    max-width: 820px; /* Malo šire za lakše čitanje dugog teksta */
    text-align: left; /* Prirodnije za čitanje od centriranog teksta */
}

.book-header {
    text-align: center;
    margin-bottom: 50px;
}

.book-title {
    font-size: 3.2rem;
    line-height: 1.1;
    margin-top: 10px;
}

.book-subtitle {
    font-size: 1.25rem;
    color: var(--text-muted);
    max-width: 500px;
    margin: 20px auto 0;
}

.book-content {
    margin-bottom: 60px;
}

.manuscript-quote {
    font-family: var(--font-heading);
    font-style: italic;
    font-size: 1.4rem;
    color: var(--accent);
    border-left: 3px solid var(--accent);
    padding-left: 30px;
    margin: 40px 0;
    line-height: 1.5;
}

.text-block p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--text-main);
    margin-bottom: 24px;
}

/* Kontejner mora biti relative da bi se traka mogla pozicionirati unutar njega */
.book-cover-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    margin: 60px auto;
    max-width: 320px; /* Mora odgovarati širini slike */
    overflow: hidden; /* Reže dijelove trake koji idu izvan okvira slike */
    border-radius: 4px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.7);
}

.book-cover {
    width: 100%;
    height: auto;
    display: block;
    border: 1px solid var(--border);
    transition: transform 0.4s ease;
}

/* Stil trake (Ribbon) */
.ribbon {
    position: absolute;
    top: 24px;
    right: -60px;
    width: 220px;
    background: var(--accent);
    color: var(--bg-main);
    text-align: center;
    font-size: 0.75rem;
    font-weight: 800;
    padding: 8px 0;
    transform: rotate(45deg);
    z-index: 2;
    letter-spacing: 1px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
    text-transform: uppercase;
}

/* Hover efekt na cijeli kontejner */
.book-cover-wrapper:hover .book-cover {
    transform: scale(1.03);
}

.cta-wrapper {
    display: flex;
    gap: 15px;
    margin-top: 30px;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 25px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.25s ease;
}

.cta:not(.cta-pdf) {
    background: var(--accent);
    color: #052e2b;
    border: 1px solid var(--accent);
}

.cta-pdf {
    background: transparent;
    border: 1px solid var(--accent);
    color: var(--accent);
}

.cta-pdf:hover {
    background: rgba(94, 234, 212, 0.1);
    box-shadow: 0 4px 12px rgba(94, 234, 212, 0.2);
}

@media (max-width: 480px) {
    .cta-wrapper .cta {
        width: 100%;
        justify-content: center;
    }
}

.about-author {
    margin: 60px 0;
    padding: 30px;
    background: rgba(255, 255, 255, 0.02); /* Vrlo diskretna pozadina */
    border-radius: 12px;
    border: 1px solid var(--border);
}

.author-bio p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-muted); /* Lagano utišan tekst u odnosu na glavni opis */
    margin-bottom: 15px;
}

.author-bio p:last-child {
    margin-bottom: 0;
}

/* Prilagodba naslova unutar sekcije autor */
.about-author .section-title {
    margin-top: 0;
    margin-bottom: 20px;
    font-size: 0.9rem;
    letter-spacing: 2px;
    color: var(--accent);
}

.book-preview {
    text-align: center;
    margin-top: 20px;
}

.book-preview .small-text {
    font-size: 0.9rem;
    color: #555;
}
