/*CSS for responsive Stuff for phone bros (Or people with extremely small displays i guess)*/

@media (max-width: 800px) {
    #main-content {
        padding: 0;
        padding-top: 60px; 
        background: rgba(0, 0, 0, 0.5);
    }

    .vj-card {
        display: block;
        width: 100vw;
        background: transparent;
        border: none;
        box-shadow: none;
    }

    .vj-card p {
        margin-top: 0;
        margin-bottom: 0.75rem; 
        line-height: 1.4;
        text-shadow: 0 1px 4px rgba(0, 0, 0, 1), 0 0 10px rgba(0, 0, 0, 0.5);
        color: #fff;
        opacity: 1;
    }

    .card-portrait {
        width: 100%;
        height: 50vh;
        object-fit: cover;
        object-position: top center;
        mask-image: linear-gradient(
            to bottom, 
            transparent 0%, 
            black 3%,
            black 85%,   
            transparent 100% 
        );
        -webkit-mask-image: linear-gradient(
            to bottom, 
            transparent 0%, 
            black 3%, 
            black 85%, 
            transparent 100%
        );
    }

    .card-content {
        padding: 1.5rem;
        margin-top: -14vh;
        background: linear-gradient(
            to top,
            rgba(0, 0, 0, 1) 0%,
            rgba(0, 0, 0, 0.9) 50%,
            rgba(0, 0, 0, 0.4) 80%,
            rgba(0, 0, 0, 0) 100%
        );
        position: relative;
        z-index: 2;
    }

    .nav-custom ul {
        flex-wrap: nowrap;
        gap: 1rem;
    }

    .nav-link {
        white-space: nowrap;
        font-size: 1rem;
        padding: 0.5rem;
    }

    .card-content h1 { display: none; }

    .social-item {
        padding: 0.5rem 0.5rem;
        gap: 0;
    }

    .social-handle {
        font-size: 1.6rem;
        letter-spacing: 0.5px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .social-list {
        margin-top: 0.5rem;
        gap: 0.5rem;
    }
}