/* Print Styles for GSPS Website */

@media print {
    /* Reset */
    * {
        background: transparent !important;
        color: #000 !important;
        box-shadow: none !important;
        text-shadow: none !important;
    }
    
    /* Hide non-essential elements */
    .top-bar,
    .mobile-toggle,
    .hero-controls,
    .hero-dots,
    .btn,
    .social-links,
    .cta-section,
    .news-events,
    iframe,
    video,
    audio {
        display: none !important;
    }
    
    /* Page setup */
    @page {
        margin: 2cm;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.5;
    }
    
    /* Typography */
    h1 {
        font-size: 24pt;
        page-break-after: avoid;
    }
    
    h2 {
        font-size: 18pt;
        page-break-after: avoid;
    }
    
    h3 {
        font-size: 14pt;
        page-break-after: avoid;
    }
    
    p {
        orphans: 3;
        widows: 3;
    }
    
    /* Links */
    a {
        text-decoration: underline;
    }
    
    a[href^="http"]:after {
        content: " (" attr(href) ")";
        font-size: 10pt;
    }
    
    /* Images */
    img {
        max-width: 100% !important;
        page-break-inside: avoid;
    }
    
    /* Tables */
    table {
        border-collapse: collapse;
    }
    
    th, td {
        border: 1px solid #000;
        padding: 8px;
    }
    
    /* Avoid breaks */
    .stat-card,
    .feature-card,
    .gallery-item,
    .mission-card,
    .vision-card,
    .message-card {
        page-break-inside: avoid;
    }
    
    /* Leadership messages */
    .message-header {
        background: #f0f0f0 !important;
        color: #000 !important;
    }
    
    .message-image {
        border: 2px solid #000 !important;
    }
    
    .read-more-link {
        display: none !important;
    }
    
    /* Footer */
    .footer {
        page-break-before: always;
    }
    
    .footer-bottom {
        border-top: 1px solid #000;
        padding-top: 10px;
        margin-top: 20px;
    }
}
