/* Responsive Design */

/* Large screens (max-width: 1200px) */
@media (max-width: 1200px) {
    :root {
        --container-padding: 2rem;
    }
    
    .hero-title {
        font-size: var(--text-4xl);
    }
}

/* Tablets (max-width: 992px) */
@media (max-width: 992px) {
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-image {
        order: -1;
    }
    
    .hero-image .image-placeholder {
        height: 300px;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-12);
    }
    
    h1 {
        font-size: var(--text-4xl);
    }
    
    h2 {
        font-size: var(--text-3xl);
    }
}

/* Small tablets (max-width: 768px) */
@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background-color: var(--white);
        flex-direction: column;
        padding: var(--space-8);
        box-shadow: var(--shadow-lg);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all var(--transition-base);
        gap: var(--space-4);
    }
    
    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .nav-link {
        padding: var(--space-3) 0;
        width: 100%;
        text-align: center;
    }
    
    .hero-title {
        font-size: var(--text-3xl);
    }
    
    .hero-subtitle {
        font-size: var(--text-lg);
    }
    
    section {
        padding: var(--space-12) 0;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: var(--space-4);
        text-align: center;
    }
}

/* Mobile phones (max-width: 576px) */
@media (max-width: 576px) {
    :root {
        --container-padding: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: var(--space-3);
    }
    
    .btn {
        width: 100%;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: var(--space-8);
    }
    
    .hero-title {
        font-size: var(--text-2xl);
    }
    
    .logo-text {
        display: none;
    }
    
    h2 {
        font-size: var(--text-2xl);
    }
    
    h3 {
        font-size: var(--text-xl);
    }
}

/* Print styles */
@media print {
    .navbar,
    .footer,
    .hero-buttons,
    .menu-toggle {
        display: none !important;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.5;
    }
    
    .container {
        max-width: 100%;
        padding: 0;
    }
    
    a {
        color: #000 !important;
        text-decoration: underline;
    }
    
    .hero {
        padding: 0 !important;
    }
    
    section {
        padding: 1cm 0 !important;
        break-inside: avoid;
    }
}

