/* ============================================
   GERELTJIN LLC - Responsive Stylesheet
   Mobile & Tablet Optimizations
   ============================================ */

/* Tablet (768px and below) */
@media (max-width: 768px) {

    /* Hamburger animation only */
    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
}

@media (max-width: 480px) {
    .hero-title { font-size: 2rem; }
    .hero-subtitle { font-size: 1rem; }
    .section-title { font-size: 1.75rem; }
    .logo img { height: 40px; }
    .logo-text { font-size: 1.25rem; }
    .language-select { font-size: 12px; }
    .feature-icon { font-size: 2.5rem; }
    :root {
        --spacing-lg: 3rem;
        --spacing-xl: 4rem;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .container { padding: 0 1.5rem; }
    .hero-title { font-size: 2.6rem; }
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-content { grid-template-columns: repeat(2, 1fr); }
    .cta-section h2 { font-size: 2.2rem; }
}

@media (min-width: 1400px) {
    .container { max-width: 1320px; }
    .hero-title { font-size: 4rem; }
}

/* Print Styles */
@media print {
    .header,
    .footer,
    .language-switcher,
    .mobile-menu-toggle,
    .hero-buttons,
    .cta-section {
        display: none;
    }
    
    body {
        font-size: 12pt;
        color: #000;
    }
    
    .section-title {
        page-break-after: avoid;
    }
}

/* Accessibility - Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Dark Mode Support (Optional) */
@media (prefers-color-scheme: dark) {
    /* Can add dark mode styles here if needed */
}
