/* Responsive Stylesheet for A3IM Website */

/* Tablet Devices */
@media (max-width: 992px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .section-title h2 {
        font-size: 2.2rem;
    }
    
    .cta h2 {
        font-size: 2.2rem;
    }
    
    .feature-card {
        padding: 1.5rem;
    }
    
    .charter-box {
        padding: 2rem;
    }
}

/* Mobile Devices */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background-color: white;
        flex-direction: column;
        padding: 1rem 0;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
        z-index: 100;
    }
    
    .nav-links.active {
        display: flex;
    }
    
    .nav-links li {
        margin: 0;
        text-align: center;
        padding: 1rem 0;
    }
    
    .mobile-menu {
        display: block;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .btn {
        display: block;
        width: 80%;
        margin: 1rem auto;
    }
    
    .btn-secondary {
        margin-left: auto;
    }
    
    .section-title h2 {
        font-size: 2rem;
    }
    
    .principles li {
        flex-direction: column;
    }
    
    .principles .number {
        margin-bottom: 1rem;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    .page-content {
        padding: 2rem 5%;
    }
    
    .resource-card {
        margin-bottom: 1.5rem;
    }
    
    .charter-box {
        padding: 1.5rem;
    }
    
    section {
        padding: 3rem 5%;
    }
}

/* Small Mobile Devices */
@media (max-width: 480px) {
    .logo {
        font-size: 1.5rem;
    }
    
    .logo-icon {
        width: 30px;
        height: 30px;
        font-size: 0.8rem;
    }
    
    .hero h1 {
        font-size: 1.8rem;
    }
    
    .section-title h2 {
        font-size: 1.8rem;
    }
    
    .btn {
        width: 90%;
        padding: 0.7rem 1.5rem;
    }
    
    .footer-content {
        flex-direction: column;
    }
    
    .footer-links {
        width: 100%;
        margin-bottom: 1.5rem;
    }
    
    .modal-content {
        padding: 1.5rem;
        margin: 0 1rem;
    }
    
    .charter-box {
        padding: 1rem;
    }
    
    .resource-img {
        height: 150px;
    }
}
