/* 
    Print styles for broszura.html 
    Format: A4 (210mm x 297mm)
*/

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,700;1,400&family=Inter:wght@400;600;700&display=swap');

:root {
    --color-gold: #D78A3A;
    --color-dark: #2E3A3A;
    --color-text: #333;
    --bg-cream: #FDFDFB;
}

* { box-sizing: border-box; -webkit-print-color-adjust: exact; }
body { font-family: 'Inter', sans-serif; line-height: 1.6; color: var(--color-text); background: #555; margin: 0; padding: 0; }

.page {
    width: 210mm;
    min-height: 297mm;
    padding: 20mm;
    margin: 20mm auto;
    background: var(--bg-cream);
    box-shadow: 0 0 20px rgba(0,0,0,0.5);
    position: relative;
    page-break-after: always;
}

@media print {
    @page { size: A4; margin: 0; }
    body { background: none; }
    .page { margin: 0; box-shadow: none; width: 210mm; height: 297mm; }
    .no-print { display: none; }
}

h1, h2, h3 { font-family: 'Playfair Display', serif; color: var(--color-dark); }

.cover { text-align: center; display: flex; flex-direction: column; justify-content: center; height: 250mm; }
.cover-img { width: 100%; height: 120mm; object-fit: cover; border-radius: 5px; margin-bottom: 20mm; border: 1px solid #ddd; }
.cover h1 { font-size: 42pt; margin: 0; line-height: 1.1; }
.cover p { font-size: 18pt; color: var(--color-gold); font-style: italic; margin-top: 10mm; }
.footer-logo { position: absolute; bottom: 20mm; left: 0; right: 0; font-family: 'Playfair Display', serif; font-weight: bold; font-size: 14pt; text-align: center; }

.section-title { font-size: 28pt; border-bottom: 3px solid var(--color-gold); padding-bottom: 5mm; margin-bottom: 10mm; }
.accent-box { background: rgba(215, 138, 58, 0.05); border-left: 5px solid var(--color-gold); padding: 15pt; margin: 20pt 0; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 20pt; margin-top: 20pt; }
.photo-card img { width: 100%; height: 50mm; object-fit: cover; border-radius: 5px; }
.photo-card figcaption { font-size: 9pt; color: #666; margin-top: 5pt; }

.cost-table { width: 100%; border-collapse: collapse; margin-top: 20pt; }
.cost-table th, .cost-table td { text-align: left; padding: 10pt; border-bottom: 1px solid #ddd; }
.cost-table th { background: var(--color-dark); color: #fff; }
.total-row { background: #f0f0f0; font-weight: bold; font-size: 14pt; }

.qr-placeholder { width: 40mm; height: 40mm; background: #fff; display: flex; align-items: center; justify-content: center; border: 2px solid var(--color-gold); margin: 0 auto; }

.btn-print {
    position: fixed; top: 20px; right: 20px; padding: 15px 30px;
    background: var(--color-gold); color: #fff; border: none; border-radius: 50px;
    font-weight: bold; cursor: pointer; z-index: 9999;
}
