/* Responsive Styles */

/* Media Query: Max-width 1024px (Tablets / Small Desktop) */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 3.5rem;
    }
    
    .about-container {
        gap: 30px;
    }

    .videos-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Media Query: Max-width 768px (Mobile & Tablets) */
@media (max-width: 768px) {
    /* Navbar */
    .hamburger {
        display: flex;
        z-index: 1001;
    }
    .hamburger.active span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    .hamburger.active span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background-color: var(--color-bg-card);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: right var(--transition-normal);
        z-index: 1000;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.5);
    }
    .nav-links.active {
        right: 0;
    }
    .nav-link {
        font-size: 1.2rem;
        margin: 15px 0;
    }
    
    /* Hero */
    .hero-title {
        font-size: 2.5rem;
    }
    .hero-subtitle {
        font-size: 1.1rem;
    }
    .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    /* About */
    .about-container {
        flex-direction: column;
        text-align: center;
    }
    .stats-grid {
        grid-template-columns: 1fr;
    }
    .wings-badge {
        right: 50%;
        transform: translateX(50%);
        bottom: -15px;
        white-space: nowrap;
    }
    
    /* Timeline */
    .timeline::after {
        left: 31px;
    }
    .timeline-item {
        width: 100%;
        padding-left: 70px;
        padding-right: 25px;
    }
    .timeline-item.right {
        left: 0;
    }
    .timeline-item.left::after,
    .timeline-item.right::after {
        left: 21px;
    }
    
    /* Community */
    .social-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Footer */
    .footer-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}

/* Media Query: Max-width 480px (Small Mobile) */
@media (max-width: 480px) {
    .section {
        padding: 50px 0;
    }
    .section-title {
        font-size: 2rem;
    }
    
    .videos-grid {
        grid-template-columns: 1fr;
    }
    
    .social-grid {
        grid-template-columns: 1fr;
    }
    
    .wingstore-banner {
        padding: 30px 20px;
    }
    .code-display {
        flex-direction: column;
        gap: 10px;
    }
}
