/* Remove hero image glow */
.hero-image img {
    box-shadow: none !important;
    filter: none !important;
}

.hero-image {
    box-shadow: none !important;
}

/* Ensure dark theme everywhere */
body, main {
    background: #1a1d29 !important;
}

/* Mobile Navigation Improvements */
@media (max-width: 768px) {
    .navbar {
        padding: 0.5rem 0;
    }

    .nav-container {
        flex-wrap: wrap;
        gap: 1rem;
    }

    /* Fix logo positioning on mobile */
    .nav-left {
        display: flex;
        justify-content: center;
        width: 100%;
        margin-bottom: 0.5rem;
    }

    .logo {
        display: flex;
        align-items: center;
        justify-content: center;
    }

        .logo img {
            height: 35px !important;
            max-width: 200px;
            object-fit: contain;
        }

    .nav-links {
        width: 100%;
        justify-content: center;
        flex-wrap: wrap;
        gap: 0.75rem;
    }

        .nav-links a {
            font-size: 0.9rem;
        }

    .container {
        padding: 0 1rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem !important;
    }

    .hero-subtitle {
        font-size: 1rem !important;
    }

    .btn-large {
        padding: 0.75rem 1.25rem !important;
        font-size: 0.95rem !important;
    }

    /* Fix hero image positioning on mobile - move more to the right */
    .hero-image {
        display: flex;
        justify-content: flex-end !important;
        padding-right: 1rem;
    }

    .hero-image img {
        margin-left: auto;
        margin-right: 0 !important;
    }

    /* Fix documentation lists cutting off on mobile */
    .docs-content ul,
    .docs-content ol {
        padding-left: 1.5rem !important;
        margin-bottom: 1rem !important;
        overflow-x: visible !important;
        white-space: normal !important;
    }

    .docs-content ul li,
    .docs-content ol li {
        margin-bottom: 0.75rem !important;
        line-height: 1.6 !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
    }
}
