/* 
 * Visual Gadka - Responsive Stylesheet
 * Aluguer de equipamentos de realidade virtual em Portugal
 */

/* ---------- MEDIA QUERIES ---------- */

/* Large Screens */
@media screen and (max-width: 1200px) {
    .container {
        padding: 0 var(--space-lg);
    }
    
    .hero-content h1 {
        font-size: 3rem;
    }
}

/* Medium Screens - Tablets */
@media screen and (max-width: 992px) {
    :root {
        --h1-size: 2.8rem;
        --h2-size: 2.2rem;
        --h3-size: 1.5rem;
    }
    
    .hero .container {
        flex-direction: column;
        text-align: center;
        gap: var(--space-xl);
    }
    
    .hero-content {
        padding-right: 0;
    }
    
    .hero-content p {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .equipment-slide {
        flex-direction: column;
    }
    
    .about-content {
        flex-direction: column;
        gap: var(--space-xl);
    }
    
    .contact-container {
        flex-direction: column;
    }
}

/* Small Screens - Mobile */
@media screen and (max-width: 768px) {
    :root {
        --h1-size: 2.5rem;
        --h2-size: 2rem;
        --h3-size: 1.3rem;
        --space-xxl: 4rem;
    }
    
    header .container {
        height: 70px;
    }
    
    .logo img {
        height: 40px;
    }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        flex-direction: column;
        background-color: white;
        width: 100%;
        height: calc(100vh - 70px);
        padding: var(--space-lg);
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
        transition: 0.3s;
        z-index: 1000;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        margin: var(--space-md) 0;
        width: 100%;
        text-align: center;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }
    
    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }
    
    .hero {
        padding-top: 100px;
    }
    
    .hero .container {
        min-height: 550px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
    }
    
    .newsletter-form .form-group {
        flex-direction: column;
    }
    
    .newsletter-form input[type="email"] {
        border-radius: var(--border-radius);
        margin-bottom: var(--space-sm);
    }
    
    .newsletter-form button {
        border-radius: var(--border-radius);
        width: 100%;
    }
    
    .about-stats {
        flex-direction: column;
        gap: var(--space-md);
    }
    
    .thank-you-buttons {
        flex-direction: column;
        gap: var(--space-md);
    }
    
    .thank-you-buttons .btn {
        width: 100%;
    }
    
    .suggested-articles {
        flex-direction: column;
        gap: var(--space-xl);
    }
    
    .cookie-buttons {
        flex-direction: column;
    }
    
    .cookie-buttons button {
        width: 100%;
    }
}

/* Extra Small Screens */
@media screen and (max-width: 480px) {
    :root {
        --h1-size: 2.2rem;
        --h2-size: 1.8rem;
        --h3-size: 1.2rem;
        --space-xxl: 3rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: var(--space-md);
    }
    
    .hero-buttons .btn {
        width: 100%;
    }
    
    .section-header h2 {
        font-size: var(--h2-size);
    }
    
    .footer-content {
        flex-direction: column;
        gap: var(--space-lg);
    }
    
    .footer-links {
        flex-direction: column;
        gap: var(--space-lg);
    }
}
