/*
 * Professional Component Styles
 * Header, Footer, Breadcrumbs, Share Box
 * @package Satellite
 */

/* ===========================================
   CSS VARIABLES (Design Tokens)
   =========================================== */
:root {
    /* Primary Colors */
    --sat-primary: #e67e22;
    --sat-primary-dark: #d35400;
    --sat-primary-light: #fff5eb;

    /* Secondary Colors */
    --sat-secondary: #e53e3e;
    --sat-secondary-dark: #c53030;

    /* Neutral Colors */
    --sat-text-primary: #1a202c;
    --sat-text-secondary: #4a5568;
    --sat-text-muted: #718096;
    --sat-text-light: #a0aec0;

    /* Backgrounds */
    --sat-bg-white: #ffffff;
    --sat-bg-light: #f7fafc;
    --sat-bg-gray: #edf2f7;
    --sat-bg-dark: #1a202c;
    --sat-bg-darker: #171923;

    /* Borders */
    --sat-border-light: #e2e8f0;
    --sat-border-dark: rgba(255, 255, 255, 0.1);

    /* Shadows */
    --sat-shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --sat-shadow-md: 0 4px 15px rgba(0, 0, 0, 0.1);
    --sat-shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.15);
    --sat-shadow-primary: 0 4px 15px rgba(230, 126, 34, 0.4);

    /* Spacing */
    --sat-radius-sm: 6px;
    --sat-radius-md: 8px;
    --sat-radius-lg: 12px;
    --sat-radius-xl: 16px;

    /* Transitions */
    --sat-transition: 0.3s ease;
    --sat-transition-fast: 0.2s ease;

    /* Z-Index Scale */
    --sat-z-dropdown: 100;
    --sat-z-sticky: 1000;
    --sat-z-overlay: 10000;
    --sat-z-loader: 99999;
}

/* ===========================================
   TOP BAR
   =========================================== */
.top-bar {
    background: linear-gradient(135deg, #1a202c 0%, #2d3748 100%);
    color: #fff;
    padding: 0.5rem 0;
    font-size: 0.85rem;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.topbar-left {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.topbar-date {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    opacity: 0.9;
}

.topbar-right {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.topbar-social .social-icons {
    display: flex;
    gap: 0.5rem;
}

.topbar-social .social-icon {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    color: #fff;
    transition: all 0.3s ease;
}

.topbar-social .social-icon:hover {
    background: #e67e22;
    transform: translateY(-2px);
}

.topbar-social .social-icon svg {
    width: 14px;
    height: 14px;
}

/* ===========================================
   HEADER
   =========================================== */
.site-header {
    background: #fff;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    position: relative;
    z-index: 1000;
}

.site-header .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1rem;
}

.header-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
    gap: 2rem;
}

/* Logo */
.site-branding {
    flex-shrink: 0;
}

.site-logo img {
    max-height: 50px;
    width: auto;
}

.site-title-wrap {
    display: flex;
    flex-direction: column;
}

.site-title {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 700;
}

.site-title a {
    color: #1a202c;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.site-title:hover a {
    color: #e67e22;
}

.site-icon {
    font-size: 1.75rem;
}

.site-description {
    margin: 0;
    font-size: 0.85rem;
    color: #718096;
}

/* Navigation */
.main-navigation {
    flex: 1;
    display: flex;
    justify-content: center;
}

.primary-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 0.25rem;
}

.primary-menu li {
    position: relative;
}

.primary-menu>li>a {
    display: block;
    padding: 0.75rem 1rem;
    color: #2d3748;
    text-decoration: none;
    font-weight: 500;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.primary-menu>li>a:hover,
.primary-menu>li.current-menu-item>a {
    background: #f7fafc;
    color: #e67e22;
}

/* Dropdown */
.primary-menu .sub-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    background: #fff;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    border-radius: 8px;
    padding: 0.5rem 0;
    list-style: none;
    z-index: 100;
}

.primary-menu li:hover>.sub-menu {
    display: block;
    animation: fadeInDown 0.3s ease;
}

.primary-menu .sub-menu a {
    display: block;
    padding: 0.75rem 1.25rem;
    color: #2d3748;
    text-decoration: none;
    transition: all 0.2s ease;
}

.primary-menu .sub-menu a:hover {
    background: #f7fafc;
    color: #e67e22;
    padding-left: 1.5rem;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.hamburger {
    display: flex;
    flex-direction: column;
    gap: 5px;
    width: 24px;
}

.hamburger span {
    display: block;
    height: 2px;
    background: #1a202c;
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.header-search-toggle,
.dark-mode-toggle {
    background: #f7fafc;
    border: none;
    width: 42px;
    height: 42px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #4a5568;
}

.header-search-toggle:hover,
.dark-mode-toggle:hover {
    background: #e67e22;
    color: #fff;
}

/* Sticky Header */
.sticky-header {
    position: sticky;
    top: 0;
    transition: all 0.3s ease;
}

.sticky-header.scrolled {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
}

.sticky-header.scrolled .header-wrapper {
    padding: 0.5rem 0;
}

/* Search Overlay */
.search-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.search-overlay.active {
    opacity: 1;
    visibility: visible;
}

.search-overlay-content {
    width: 90%;
    max-width: 700px;
    position: relative;
}

.search-overlay-form {
    display: flex;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.search-overlay-form input {
    flex: 1;
    padding: 1.25rem 1.5rem;
    border: none;
    font-size: 1.25rem;
    outline: none;
}

.search-overlay-form button {
    padding: 1.25rem 2rem;
    background: #e67e22;
    border: none;
    color: #fff;
    cursor: pointer;
    transition: background 0.3s ease;
}

.search-overlay-form button:hover {
    background: #d35400;
}

.search-close {
    position: absolute;
    top: -60px;
    right: 0;
    background: none;
    border: none;
    color: #fff;
    font-size: 2.5rem;
    cursor: pointer;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.search-close:hover {
    opacity: 1;
}

/* ===========================================
   BREADCRUMBS
   =========================================== */
.breadcrumbs-wrapper {
    background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
    padding: 1rem 0;
    border-bottom: 1px solid #e2e8f0;
}

.breadcrumbs {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem;
    list-style: none;
    margin: 0;
    padding: 0;
    font-size: 0.9rem;
}

.breadcrumb-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.breadcrumb-item:not(:last-child)::after {
    content: '›';
    color: #a0aec0;
    font-size: 1.2em;
    margin-left: 0.5rem;
}

.breadcrumb-item a {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    color: #4a5568;
    text-decoration: none;
    padding: 0.35rem 0.75rem;
    background: #fff;
    border-radius: 6px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.breadcrumb-item a:hover {
    color: #e67e22;
    border-color: #e67e22;
    background: #fff5eb;
}

.breadcrumb-item.current span {
    color: #e67e22;
    font-weight: 600;
}

.breadcrumb-icon {
    font-size: 0.9em;
}

/* ===========================================
   SHARE BOX
   =========================================== */
.share-box {
    background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
    border-radius: 16px;
    padding: 1.5rem;
    margin: 2rem 0;
    border: 1px solid #e2e8f0;
}

.share-box-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.25rem;
}

.share-icon {
    font-size: 1.5rem;
}

.share-title {
    font-weight: 700;
    font-size: 1.1rem;
    color: #1a202c;
}

.share-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 1.25rem;
}

.share-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.share-btn svg {
    flex-shrink: 0;
}

.share-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* Share Button Colors */
.share-facebook {
    background: #1877f2;
    color: #fff;
}

.share-twitter {
    background: #1da1f2;
    color: #fff;
}

.share-whatsapp {
    background: #25d366;
    color: #fff;
}

.share-telegram {
    background: #0088cc;
    color: #fff;
}

.share-linkedin {
    background: #0077b5;
    color: #fff;
}

.share-copy {
    background: #4a5568;
    color: #fff;
}

.share-facebook:hover {
    background: #166fe5;
}

.share-twitter:hover {
    background: #1a91da;
}

.share-whatsapp:hover {
    background: #20bd5a;
}

.share-telegram:hover {
    background: #007ab8;
}

.share-linkedin:hover {
    background: #006299;
}

.share-copy:hover {
    background: #2d3748;
}

.share-btn.copied {
    background: #38a169 !important;
}

/* Share URL Box */
.share-url-box {
    display: flex;
    gap: 0.5rem;
    background: #fff;
    border-radius: 10px;
    padding: 0.5rem;
    border: 1px solid #e2e8f0;
}

.share-url-input {
    flex: 1;
    padding: 0.75rem 1rem;
    border: none;
    background: transparent;
    font-size: 0.9rem;
    color: #4a5568;
    outline: none;
}

.share-url-copy {
    padding: 0.75rem 1.25rem;
    background: #e67e22;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.share-url-copy:hover {
    background: #d35400;
}

/* ===========================================
   FOOTER
   =========================================== */
.site-footer {
    background: linear-gradient(180deg, #1a202c 0%, #171923 100%);
    color: #a0aec0;
    margin-top: 3rem;
}

/* Footer Widgets */
.footer-widgets {
    padding: 4rem 0 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-widgets-grid {
    display: grid;
    gap: 2rem;
}

.footer-widgets-grid.columns-2 {
    grid-template-columns: repeat(2, 1fr);
}

.footer-widgets-grid.columns-3 {
    grid-template-columns: repeat(3, 1fr);
}

.footer-widgets-grid.columns-4 {
    grid-template-columns: repeat(4, 1fr);
}

.footer-widget-column .widget-title {
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid #e67e22;
    display: inline-block;
}

.footer-widget-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-widget-column ul li {
    margin-bottom: 0.75rem;
}

.footer-widget-column ul li a {
    color: #a0aec0;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-widget-column ul li a:hover {
    color: #e67e22;
    padding-left: 0.5rem;
}

.footer-widget-column ul li a::before {
    content: '›';
    opacity: 0;
    transition: opacity 0.3s ease;
}

.footer-widget-column ul li a:hover::before {
    opacity: 1;
}

/* Footer Bottom */
.footer-bottom {
    padding: 1.5rem 0;
}

.footer-bottom-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.footer-copyright {
    font-size: 0.9rem;
}

.footer-copyright a {
    color: #e67e22;
    text-decoration: none;
}

.footer-copyright a:hover {
    text-decoration: underline;
}

/* Footer Social */
.footer-social .social-icons {
    display: flex;
    gap: 0.75rem;
}

.footer-social .social-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: #fff;
    transition: all 0.3s ease;
}

.footer-social .social-icon:hover {
    background: #e67e22;
    transform: translateY(-3px);
}

.footer-social .social-icon svg {
    width: 18px;
    height: 18px;
}

/* Footer Menu */
.footer-navigation .footer-menu {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-menu a {
    color: #a0aec0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-menu a:hover {
    color: #e67e22;
}

/* ===========================================
   BACK TO TOP
   =========================================== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #e67e22 0%, #d35400 100%);
    color: #fff;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(230, 126, 34, 0.4);
    z-index: 999;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(230, 126, 34, 0.5);
}

/* ===========================================
   PAGE LOADER
   =========================================== */
.page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #1a202c;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    transition: opacity 0.5s ease;
}

.page-loader.loaded {
    opacity: 0;
    pointer-events: none;
}

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

.loader-spinner {
    width: 50px;
    height: 50px;
    border: 3px solid rgba(255, 255, 255, 0.1);
    border-top-color: #e67e22;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 1rem;
}

.loader-text {
    font-size: 2rem;
    animation: pulse 1.5s ease-in-out infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }
}

/* ===========================================
   SOCIAL ICONS
   =========================================== */
.social-icons {
    display: flex;
    gap: 0.5rem;
}

.social-icon {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.social-icon svg {
    width: 18px;
    height: 18px;
}

.social-icons-small .social-icon {
    width: 28px;
    height: 28px;
}

.social-icons-small .social-icon svg {
    width: 14px;
    height: 14px;
}

/* Social Colors */
.social-facebook {
    background: #1877f2;
    color: #fff;
}

.social-twitter {
    background: #1da1f2;
    color: #fff;
}

.social-instagram {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    color: #fff;
}

.social-youtube {
    background: #ff0000;
    color: #fff;
}

.social-telegram {
    background: #0088cc;
    color: #fff;
}

.social-whatsapp {
    background: #25d366;
    color: #fff;
}

.social-tiktok {
    background: #000;
    color: #fff;
}

.social-linkedin {
    background: #0077b5;
    color: #fff;
}

.social-icon:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* ===========================================
   RESPONSIVE DESIGN
   =========================================== */
@media (max-width: 1024px) {
    .primary-menu {
        display: none;
    }

    .menu-toggle {
        display: flex;
        align-items: center;
        gap: 0.5rem;
    }

    .main-navigation.toggled .primary-menu {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #fff;
        padding: 1rem;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        border-top: 1px solid #e2e8f0;
    }

    .main-navigation.toggled .sub-menu {
        position: static;
        box-shadow: none;
        padding-left: 1rem;
        display: none;
    }

    .footer-widgets-grid.columns-3,
    .footer-widgets-grid.columns-4 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .top-bar .container {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }

    .header-wrapper {
        flex-wrap: wrap;
    }

    .breadcrumbs {
        font-size: 0.85rem;
    }

    .share-buttons {
        justify-content: center;
    }

    .share-label {
        display: none;
    }

    .share-btn {
        padding: 0.75rem;
    }

    .footer-widgets-grid.columns-2,
    .footer-widgets-grid.columns-3,
    .footer-widgets-grid.columns-4 {
        grid-template-columns: 1fr;
    }

    .footer-bottom-wrapper {
        flex-direction: column;
        text-align: center;
    }

    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
    }
}

/* ===========================================
   RTL SUPPORT
   =========================================== */
[dir="rtl"] .primary-menu,
[dir="rtl"] .breadcrumbs,
[dir="rtl"] .share-buttons,
[dir="rtl"] .social-icons,
[dir="rtl"] .footer-menu {
    flex-direction: row-reverse;
}

[dir="rtl"] .topbar-left,
[dir="rtl"] .topbar-right {
    flex-direction: row-reverse;
}

[dir="rtl"] .breadcrumb-item:not(:last-child)::after {
    content: '‹';
    margin-left: 0;
    margin-right: 0.5rem;
}

[dir="rtl"] .primary-menu .sub-menu {
    left: auto;
    right: 0;
}

[dir="rtl"] .primary-menu .sub-menu a:hover {
    padding-left: 1.25rem;
    padding-right: 1.5rem;
}

[dir="rtl"] .footer-widget-column ul li a:hover {
    padding-left: 0;
    padding-right: 0.5rem;
}

[dir="rtl"] .footer-widget-column ul li a::before {
    content: '‹';
}

[dir="rtl"] .back-to-top {
    right: auto;
    left: 30px;
}

@media (max-width: 768px) {
    [dir="rtl"] .back-to-top {
        left: 20px;
        right: auto;
    }
}

/* ===========================================
   ACCESSIBILITY - FOCUS STATES
   =========================================== */
*:focus-visible {
    outline: 2px solid var(--sat-primary);
    outline-offset: 2px;
}

.skip-link:focus {
    position: fixed;
    top: 10px;
    left: 10px;
    z-index: var(--sat-z-overlay);
    padding: 1rem 2rem;
    background: var(--sat-primary);
    color: #fff;
    border-radius: var(--sat-radius-md);
    text-decoration: none;
    font-weight: 600;
}

.primary-menu>li>a:focus,
.share-btn:focus,
.social-icon:focus,
.header-search-toggle:focus,
.dark-mode-toggle:focus,
.menu-toggle:focus,
.back-to-top:focus {
    box-shadow: 0 0 0 3px rgba(230, 126, 34, 0.3);
}

/* High Contrast Mode Support */
@media (prefers-contrast: high) {

    .share-btn,
    .social-icon,
    .breadcrumb-item a {
        border: 2px solid currentColor;
    }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .back-to-top:hover,
    .share-btn:hover,
    .social-icon:hover {
        transform: none;
    }
}

/* ===========================================
   DARK MODE SUPPORT
   =========================================== */
@media (prefers-color-scheme: dark) {
    :root {
        --sat-bg-white: #1a202c;
        --sat-bg-light: #2d3748;
        --sat-bg-gray: #4a5568;
        --sat-text-primary: #f7fafc;
        --sat-text-secondary: #e2e8f0;
        --sat-text-muted: #a0aec0;
        --sat-border-light: #4a5568;
    }

    .site-header {
        background: var(--sat-bg-dark);
    }

    .site-title a,
    .primary-menu>li>a {
        color: var(--sat-text-primary);
    }

    .primary-menu .sub-menu {
        background: var(--sat-bg-dark);
        border: 1px solid var(--sat-border-light);
    }

    .primary-menu .sub-menu a {
        color: var(--sat-text-secondary);
    }

    .breadcrumbs-wrapper {
        background: var(--sat-bg-dark);
    }

    .breadcrumb-item a {
        background: var(--sat-bg-light);
        border-color: var(--sat-border-light);
        color: var(--sat-text-secondary);
    }

    .share-box {
        background: var(--sat-bg-dark);
        border-color: var(--sat-border-light);
    }

    .share-url-box {
        background: var(--sat-bg-light);
        border-color: var(--sat-border-light);
    }

    .share-url-input {
        color: var(--sat-text-primary);
    }

    .search-overlay-form {
        background: var(--sat-bg-dark);
    }

    .search-overlay-form input {
        background: var(--sat-bg-light);
        color: var(--sat-text-primary);
    }

    .header-search-toggle,
    .dark-mode-toggle {
        background: var(--sat-bg-light);
        color: var(--sat-text-secondary);
    }
}

/* ===========================================
   PRINT STYLES
   =========================================== */
@media print {

    .top-bar,
    .site-header,
    .breadcrumbs-wrapper,
    .share-box,
    .back-to-top,
    .footer-social,
    .footer-navigation,
    .search-overlay {
        display: none !important;
    }

    .site-footer {
        background: #fff;
        color: #000;
        padding: 1rem 0;
    }

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

    * {
        background: transparent !important;
        color: #000 !important;
        box-shadow: none !important;
        text-shadow: none !important;
    }

    a,
    a:visited {
        text-decoration: underline;
    }
}