/* Sidebar No-Scroll Fix */
/* This file ensures that all sidebars across the website do not scroll */

.sidenav {
    overflow: hidden !important;
    overflow-y: hidden !important;
    overflow-x: hidden !important;
}

/* Ensure the nav-links container handles overflow properly */
.nav-links {
    max-height: calc(100vh - 300px); /* Reserve space for contact section */
    overflow: hidden;
}

/* If content is too long, we'll adjust the layout instead of scrolling */
@media (max-height: 700px) {
    .sidenav {
        padding-top: 80px; /* Reduce top padding on shorter screens */
    }
    
    .nav-links {
        max-height: calc(100vh - 250px);
        gap: 15px; /* Reduce gap between nav items */
    }
    
    .nav-links a {
        font-size: 1rem; /* Slightly smaller font */
        padding: 8px 0; /* Reduce padding */
    }
    
    .sidenav-contact {
        padding: 30px 40px; /* Reduce contact section padding */
    }
}

@media (max-height: 600px) {
    .sidenav {
        padding-top: 60px;
    }
    
    .nav-links {
        max-height: calc(100vh - 220px);
        gap: 10px;
    }
    
    .nav-links a {
        font-size: 0.9rem;
        padding: 6px 0;
    }
    
    .sidenav-contact {
        padding: 20px 40px;
    }
    
    .sidenav-contact-info {
        gap: 10px;
        margin-bottom: 15px;
    }
    
    .sidenav-social {
        margin-bottom: 15px;
    }
}
