/* Responsive Breakpoints */

/* Laptop / Small Desktop (1024px to 1440px) */
@media (max-width: 1440px) {
    .section {
        padding: 4rem 2rem;
    }
}

/* Tablet Landscape */
@media (max-width: 1024px) {
    .hero {
        flex-direction: column;
        padding-top: 120px;
        text-align: center;
        gap: 2rem;
    }
    
    .hero-actions, .hero-stats {
        justify-content: center;
    }
    
    .grid-4, .grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
}

/* Mobile & Small Tablet */
@media (max-width: 768px) {
    .nav-links {
        display: none; /* simple burger menu drop alternative can be added to JS */
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    h2.section-title {
        font-size: 2rem;
    }
    
    .grid-4, .grid-3 {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-actions {
        flex-direction: column;
    }
    
    .hero-stats {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
}
