/* css/responsive.css */

/* Tablet & Smaller */
@media screen and (max-width: 992px) {
    .section-title {
        font-size: 2.5rem;
    }
    
    .hero-title {
        font-size: 8vw;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: var(--space-md);
    }
    
    .about-image-wrapper {
        max-width: 600px;
        margin: 0 auto;
    }
    
    .stats-container {
        flex-direction: column;
        gap: var(--space-sm);
        text-align: center;
    }
    
    .timeline {
        flex-direction: column;
        align-items: flex-start;
        padding-left: 20px;
        border-left: 2px solid rgba(255,255,255,0.1);
    }
    
    .timeline-item {
        flex-direction: row;
        margin-bottom: 20px;
    }
    
    .timeline-line {
        display: none;
    }
    
    .node {
        margin-left: -31px;
        background: var(--color-bg);
    }
    
    .form-row {
        flex-direction: column;
        gap: var(--space-sm);
    }
}

/* Mobile Devices */
@media screen and (max-width: 768px) {
    body {
        cursor: auto; /* Disable custom cursor on touch devices */
    }
    .cursor-dot, .cursor-glow {
        display: none !important;
    }
    
    .navbar {
        padding: var(--space-sm);
    }
    
    .nav-links, .navbar .btn-primary {
        display: none;
    }
    
    .hamburger {
        display: flex;
    }
    
    .hero-cta {
        flex-direction: column;
        gap: 15px;
    }
    
    .hero-cta a {
        width: 100%;
        text-align: center;
    }
    
    .section-padding {
        padding: var(--space-lg) 0;
    }
    
    .marquee-track {
        font-size: 1.8rem;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 10px;
    }
    
    .cards-grid {
        grid-template-columns: 1fr;
    }
    
    .modal-content {
        padding: var(--space-md);
        margin: 0 15px;
    }
}
