/*
 * zamok.ee — Print Stylesheet
 * Скрывает навигацию, параллакс и neon-эффекты при печати/PDF
 */

@media print {
    /* Remove fixed-nav body offset for print */
    body { padding-top: 0 !important; }

    /* Hero: remove negative margin-top */
    .section-hero { margin-top: 0 !important; }

    /* Скрыть интерактивные элементы */
    .site-nav,
    .nav-burger,
    .lang-switcher,
    .cookie-banner,
    .hero-scroll,
    .map-wrapper,
    .map-touch-hint,
    .comment-form,
    .comments-form-col,
    .btn-neon,
    .gallery-grid a:hover img {
        display: none !important;
    }

    /* Hero — убрать фон, оставить текст */
    .section-hero {
        height: auto !important;
        min-height: 0 !important;
        background-image: none !important;
        background-color: #fff !important;
        display: block !important;
        padding: 2rem 0 !important;
    }

    .section-hero:before,
    .section-hero:after {
        display: none !important;
    }

    .hero-content {
        position: static !important;
    }

    .hero-content h1 {
        color: #000 !important;
        text-shadow: none !important;
        font-size: 2rem !important;
    }

    .hero-subtitle {
        color: #333 !important;
        text-shadow: none !important;
    }

    /* Reset neon effects */
    * {
        text-shadow: none !important;
        box-shadow: none !important;
        -webkit-box-shadow: none !important;
    }

    /* Dark sections — white background */
    .section-dark {
        background-color: #f5f5f5 !important;
        color: #000 !important;
    }

    .section-dark h2,
    .section-dark h3,
    .section-dark h4,
    .section-dark .section-subtitle,
    .section-dark .glow-title {
        color: #1a1a1a !important;
    }

    .section-dark p,
    .section-dark li {
        color: #333 !important;
    }

    /* Neon cards — simple borders */
    .neon-card {
        border: 1px solid #ccc !important;
        background: #fff !important;
    }

    /* Body */
    body {
        background: #fff !important;
        color: #000 !important;
        font-size: 11pt;
    }

    a {
        color: #000 !important;
        text-decoration: underline;
    }

    /* Show full URLs for links */
    a[href]:after {
        content: ' (' attr(href) ')';
        font-size: 9pt;
        color: #555;
    }

    /* Keep images */
    .gallery-grid {
        display: block !important;
    }

    .gallery-grid a {
        display: inline-block !important;
        margin: 4px;
        page-break-inside: avoid;
    }

    /* Page breaks */
    .section {
        page-break-inside: avoid;
    }

    .timeline-item {
        page-break-inside: avoid;
    }

    /* Timeline — linear for print */
    .timeline:before { display: none; }

    .timeline-item {
        width: 100% !important;
        margin-left: 0 !important;
        text-align: left !important;
        padding: 0 0 1rem 1rem !important;
        border-left: 2px solid #9D4EDD;
        margin-bottom: 1rem !important;
    }

    .timeline-item:before { display: none !important; }

    /* Footer */
    .site-footer {
        background: #fff !important;
        border-top: 1px solid #ccc !important;
        color: #333 !important;
    }

    .footer-copy,
    .footer-links a,
    .footer-osm {
        color: #333 !important;
    }
}
