/* Novičke Styles */

@font-face {
    font-family: 'Waldorf_PC';
    src: url('/font/Waldorf_PC TrueType/WALDA___.TTF') format('truetype');
    font-weight: normal;
    font-style: normal;
}

.novicke-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

.novicke-header {
    text-align: center;
    margin-bottom: 3rem;
}

.novicke-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #86b472;
    margin-bottom: 1rem;
    font-family: 'Waldorf_PC', sans-serif;
}

.novicke-description {
    font-size: 1.125rem;
    color: hsl(20, 15%, 50%);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* PDF Viewer Styles */
.pdf-viewer-container {
    margin-bottom: 3rem;
    border-radius: 0.75rem;
    overflow: hidden;
    background: white;
    border: 1px solid hsl(30, 20%, 90%);
}

.pdf-iframe {
    width: 100%;
    height: 80vh;
    min-height: 600px;
    border: none;
    display: block;
}

.pdf-error {
    padding: 3rem;
    text-align: center;
    color: hsl(20, 15%, 50%);
    background: hsl(45, 50%, 95%);
}

.pdf-error p {
    font-size: 1.125rem;
    margin: 0;
}

/* Flipbook Viewer Styles */
.flipbook-viewer-container {
    margin-bottom: 3rem;
    border-radius: 0.75rem;
    overflow: hidden;
    background: white;
    border: 1px solid hsl(30, 20%, 90%);
}

.flipbook-iframe {
    width: 100%;
    height: 80vh;
    min-height: 600px;
    border: none;
    display: block;
}

.flipbook-error {
    padding: 3rem;
    text-align: center;
    color: hsl(20, 15%, 50%);
    background: hsl(45, 50%, 95%);
}

.flipbook-error p {
    font-size: 1.125rem;
    margin: 0;
}

/* Breadcrumb Styles (reused from gallery) */
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
    padding: 1rem 2rem;
    font-size: 0.875rem;
    color: hsl(20, 15%, 50%);
}

.breadcrumb a {
    color: hsl(115, 25%, 65%);
    text-decoration: none;
    transition: color 0.15s ease;
}

.breadcrumb a:hover {
    color: hsl(115, 25%, 55%);
}

.breadcrumb-separator {
    color: hsl(20, 15%, 50%);
    margin: 0 0.25rem;
}

/* Footer Card Styles (consistent with gallery) */
.card {
    background: hsl(45, 50%, 95%);
    border: 1px solid hsl(30, 20%, 90%);
}

.bg-card {
    background: hsl(45, 50%, 95%);
}


.rounded-2xl {
    border-radius: 1rem;
}

.p-8 {
    padding: 2rem;
}

.text-center {
    text-align: center;
}

.mt-12 {
    margin-top: 3rem;
}

.card-title {
    font-weight: 600;
    color: #86b472;
    margin-bottom: 0.5rem;
}

.text-lg {
    font-size: 1.125rem;
}

.mb-2 {
    margin-bottom: 0.5rem;
}

.card-description {
    color: hsl(20, 15%, 50%);
    margin: 0.25rem 0;
}

.card-description em {
    font-style: italic;
}

/* Responsive Design */
@media (max-width: 768px) {
    .novicke-container {
        padding: 1rem;
    }
    
    .novicke-title {
        font-size: 2rem;
    }
    
    .pdf-iframe {
        height: 70vh;
        min-height: 500px;
    }
    
    .flipbook-iframe {
        height: 70vh;
        min-height: 500px;
    }
    
    .breadcrumb {
        padding: 0.5rem 1rem;
        flex-wrap: wrap;
    }
}

@media (max-width: 480px) {
    .novicke-title {
        font-size: 1.75rem;
    }
    
    .pdf-iframe {
        height: 60vh;
        min-height: 400px;
    }
    
    .flipbook-iframe {
        height: 60vh;
        min-height: 400px;
    }
    
    .p-8 {
        padding: 1.5rem;
    }
}
