/* Responsive Styles for DeepSOC.Co */

/* Tablets and smaller desktops */
@media screen and (max-width: 992px) {
    h1 {
        font-size: 2.2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    h3 {
        font-size: 1.3rem;
    }
    
    .hero-content h2 {
        font-size: 2.5rem;
    }
    
    .hero-content h3 {
        font-size: 1.5rem;
    }
    
    .hero .container {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-content {
        max-width: 100%;
        margin-bottom: var(--spacing-xl);
    }
    
    .cta-buttons {
        justify-content: center;
    }
    
    .hero-image {
        justify-content: center;
    }
    
    .cybersecurity-graphic {
        height: 300px;
    }
}

/* Mobile devices */
@media screen and (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.6rem;
    }
    
    h3 {
        font-size: 1.2rem;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background-color: var(--primary-color);
        padding: var(--spacing-xxl) var(--spacing-lg);
        transition: right var(--transition-normal);
        z-index: 1001;
    }
    
    nav.active {
        right: 0;
    }
    
    nav ul {
        flex-direction: column;
    }
    
    nav ul li {
        margin: 0 0 var(--spacing-lg) 0;
    }
    
    .hero-content h2 {
        font-size: 2rem;
    }
    
    .hero-content h3 {
        font-size: 1.3rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: var(--spacing-sm);
    }
    
    .feature-grid {
        grid-template-columns: 1fr;
    }
    
    .mission-content p,
    .vision-content p {
        font-size: 1rem;
    }
    
    .contact-brief p {
        font-size: 1rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
        text-align: center;
    }
    
    .footer-contact p {
        justify-content: center;
    }
    
    .social-icons {
        justify-content: center;
    }
}

/* Small mobile devices */
@media screen and (max-width: 480px) {
    .container {
        width: 95%;
        padding: 0 var(--spacing-sm);
    }
    
    .hero {
        padding: var(--spacing-xl) 0;
    }
    
    .hero-content h2 {
        font-size: 1.8rem;
    }
    
    .hero-content h3 {
        font-size: 1.2rem;
    }
    
    .cybersecurity-graphic {
        height: 200px;
    }
    
    .features,
    .mission,
    .vision,
    .contact-brief {
        padding: var(--spacing-xl) 0;
    }
    
    .section-title {
        margin-bottom: var(--spacing-lg);
    }
}