/* 
 * IJCRCST - Responsive Stylesheet
 */

/* Desktop (Large) */
@media (min-width: 992px) {
    .dropdown:hover .dropdown-menu {
        display: block;
        margin-top: 0;
    }
    
    .fade-down {
        animation: fadeDown 0.3s ease;
    }
    
    @keyframes fadeDown {
        from {
            opacity: 0;
            transform: translateY(10px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
}

/* Tablet & Smaller */
@media (max-width: 991px) {
    .hero-section {
        padding: 4rem 0;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-illustration {
        display: none; /* Hide complex illustration on mobile */
    }
    
    .quick-info-section {
        margin-top: 2rem;
    }
    
    .section-padding {
        padding: 3rem 0;
    }
    
    .process-timeline {
        flex-direction: column;
    }
    
    .process-timeline::before {
        top: 0;
        bottom: 0;
        left: 40px;
        width: 2px;
        height: auto;
    }
    
    .process-step {
        display: flex;
        text-align: left;
        margin-bottom: 2rem;
    }
    
    .step-icon {
        margin: 0 20px 0 0;
        width: 60px;
        height: 60px;
        font-size: 1.4rem;
        flex-shrink: 0;
    }
    
    .step-content {
        padding-top: 10px;
    }
}

/* Mobile Devices */
@media (max-width: 767px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .top-bar-right {
        display: none; /* Hide secondary links on very small screens */
    }
    
    .journal-tags .badge-subtle {
        display: block;
        margin-bottom: 5px;
        margin-right: 0;
    }
    
    .btn-submit-header {
        display: none; /* Moved to hamburger menu on mobile */
    }
    
    .cfp-header, .cfp-body {
        padding: 1.5rem;
    }
    
    .article-item {
        padding: 1rem;
    }
    
    .indexing-logos {
        gap: 1rem;
    }
    
    .indexing-logos img {
        max-height: 40px;
    }
}
