/* Responsive Queries for Index */

/* Large Desktop */
@media (min-width: 1200px) {
    .hero-content {
        max-width: 700px;
        padding: 3rem;
    }
    
    .hero-logo {
        max-width: 320px;
    }
    
    .action-buttons {
        gap: 2rem;
    }
    
    .menu-btn {
        padding: 1.5rem 3rem;
        font-size: 1.2rem;
        min-width: 200px;
    }
    
    .apps-container {
        max-width: 1400px;
    }
    
    .app-image {
        min-width: 280px;
    }
    
    .app-content {
        padding: 2rem;
    }
    
    .app-title h3 {
        font-size: 1.75rem;
    }
    
    .app-description {
        font-size: 1.25rem;
    }
}

/* Tablet */
@media (max-width: 768px) {    
    .hero-content {
        padding: 1.5rem;
    }
    
    .logo-container {
        margin-bottom: 2.5rem;
    }
    
    .hero-logo {
        max-width: 220px;
    }
    
    .action-buttons {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
    
    .menu-btn {
        width: 100%;
        max-width: 280px;
        padding: 1rem 2rem;
        font-size: 1rem;
    }
    
    .apps-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 0.5rem;
    }
    
    .app-card {
        min-height: 300px;
    }
    
    .app-image {
        min-width: 140px;
        width: 35%;
    }
    
    .app-image img {
        height: 85%;
        max-width: 95%;
        max-height: 230px;
    }
    
    .app-content {
        padding: 1rem;
    }
    
    .app-icon {
        width: 45px;
        height: 45px;
        margin-right: 0.75rem;
    }
    
    .app-title h3 {
        font-size: 1.5rem;
    }
    
    .app-subtitle {
        font-size: 1rem;
    }
    
    .app-description {
        font-size: 1.125rem;
        margin-bottom: 1.25rem;
        line-height: 1.6;
    }
    
    .contact .form {
        padding: 2rem;
    }
    
    footer ul {
        text-align: center;
    }
    
    footer li {
        display: block;
        margin: 0.5rem 0;
    }
}

/* Mobile */
@media (max-width: 480px) {    
    .hero-content {
        padding: 1rem;
    }
    
    .logo-container {
        margin-bottom: 2rem;
    }
    
    .hero-logo {
        max-width: 180px;
    }
    
    .menu-btn {
        padding: 0.875rem 1.5rem;
        font-size: 0.95rem;
        min-width: 160px;
    }
    
    .apps-container {
        padding: 0;
        gap: 2rem;
    }
    
    .app-card {
        min-height: 280px;
    }
    
    .app-image {
        min-width: 120px;
        width: 32%;
    }
    
    .app-image img {
        height: 80%;
        max-width: 90%;
        max-height: 210px;
    }
    
    .app-icon {
        width: 42px;
        height: 42px;
        margin-right: 0.625rem;
    }
    
    .app-title h3 {
        font-size: 1.5rem;
        line-height: 1.2;
    }
    
    .app-subtitle {
        font-size: 1.0625rem;
    }
    
    .app-description {
        font-size: 1.1875rem;
        margin-bottom: 1.125rem;
        line-height: 1.5;
    }
}

/* Small Mobile */
@media screen and (max-width: 320px) {
    .hero-logo {
        max-width: 160px;
    }
    
    .menu-btn {
        padding: 0.75rem 1.25rem;
        min-width: 140px;
        font-size: 0.875rem;
    }
    
    .action-buttons {
        gap: 0.75rem;
    }
}
