/* Responsive Design for GAMEVO */

/* Tablet Devices (768px and below) */
@media (max-width: 768px) {
    .navbar-container {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem;
    }

    .nav-menu {
        width: 100%;
        gap: 1rem;
        flex-wrap: wrap;
        justify-content: center;
    }

    .search-box {
        width: 100%;
        max-width: 300px;
    }

    .search-input {
        width: 100%;
    }

    .hero-section {
        padding: 2rem 1rem;
        min-height: 400px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.5rem;
    }

    .products-container {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1.5rem;
        padding: 1rem;
    }

    .product-image {
        height: 200px;
    }

    .features-header h2 {
        font-size: 1.5rem;
    }

    .features-header p {
        font-size: 0.9rem;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .feature-card {
        padding: 1.5rem;
    }

    .social-grid {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
        gap: 2rem;
    }

    .social-icon {
        width: 100px;
        height: 100px;
    }

    .social-card h4 {
        font-size: 0.95rem;
    }
}

/* Mobile Devices (480px and below) */
@media (max-width: 480px) {
    .navbar {
        padding: 0.5rem 0;
    }

    .navbar-container {
        padding: 0.5rem;
    }

    .logo-text {
        font-size: 1.2rem;
    }

    .nav-link {
        font-size: 0.8rem;
    }

    .nav-link-page {
        font-size: 0.8rem;
    }

    .nav-menu {
        gap: 0.5rem;
    }

    .search-box {
        display: none;
    }

    .hero-title {
        font-size: 1.5rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .hero-highlight {
        padding: 1.5rem 1rem;
    }

    .hero-highlight h3 {
        font-size: 1.3rem;
    }

    .hero-highlight p {
        font-size: 0.9rem;
    }

    .products-container {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .product-image {
        height: 180px;
    }

    .product-info h4 {
        font-size: 1rem;
    }

    .features-header h2 {
        font-size: 1.3rem;
    }

    .features-header p {
        font-size: 0.85rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .feature-card {
        padding: 1.2rem;
    }

    .feature-icon {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }

    .feature-card h3 {
        font-size: 1rem;
    }

    .feature-card p {
        font-size: 0.85rem;
    }

    .social-section {
        padding: 2rem 1rem;
    }

    .social-section h2 {
        font-size: 1.5rem;
    }

    .social-section h3 {
        font-size: 1.2rem;
    }

    .social-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .social-icon {
        width: 80px;
        height: 80px;
    }

    .social-card h4 {
        font-size: 0.9rem;
    }

    .footer-content p {
        font-size: 0.8rem;
    }
}

/* Large Screens (1200px and above) */
@media (min-width: 1200px) {
    .products-container {
        grid-template-columns: repeat(4, 1fr);
    }
}
