/* responsive.css - Responsive Styles for Enrique Trade Inc */

/* ===== Large Devices (Desktops, 1200px and up) ===== */
@media (max-width: 1200px) {
    .container {
        max-width: 960px;
    }
    
    h1 {
        font-size: 3rem;
    }
    
    h2 {
        font-size: 2.25rem;
    }
    
    .hero-title {
        font-size: 3rem;
    }
}

/* ===== Medium Devices (Tablets, 992px and up) ===== */
@media (max-width: 992px) {
    .container {
        max-width: 720px;
    }
    
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    h3 {
        font-size: 1.5rem;
    }
    
    /* Header & Navigation */
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 78px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 78px);
        background: var(--white);
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        padding-top: 60px;
        gap: 30px;
        transition: left 0.3s ease;
        box-shadow: var(--shadow-lg);
        z-index: 998;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-item {
        width: 100%;
        text-align: center;
    }
    
    .nav-link {
        display: block;
        padding: 15px;
        font-size: 1.2rem;
        border-bottom: 1px solid var(--light-gray);
    }
    
    .nav-link.active::after {
        display: none;
    }
    
    .cta-button {
        display: none;
    }
    
    /* Hero Section */
    .hero {
        min-height: 600px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.125rem;
    }
    
    /* About Page */
    .about-grid {
        grid-template-columns: 1fr;
    }
    
    .image-frame::before {
        display: none;
    }
    
    /* Services Page */
    .pricing-card.featured {
        transform: none;
    }
    
    /* Contact Page */
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    /* Process Steps */
    .process-step:not(:last-child)::after {
        display: none;
    }
}

/* ===== Small Devices (Landscape Phones, 768px and up) ===== */
@media (max-width: 768px) {
    .container {
        max-width: 540px;
        padding: 0 15px;
    }
    
    h1 {
        font-size: 2.25rem;
    }
    
    h2 {
        font-size: 1.75rem;
    }
    
    h3 {
        font-size: 1.25rem;
    }
    
    /* Section Padding */
    section {
        padding: 60px 0;
    }
    
    .section-padding {
        padding: 60px 0;
    }
    
    /* Hero Section */
    .hero {
        min-height: 500px;
        margin-top: 78px;
    }
    
    .hero-content {
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.25rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    /* Buttons */
    .btn-primary, .btn-secondary {
        padding: 14px 28px;
        font-size: 1rem;
    }
    
    /* Services Grid */
    .services-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    /* Process Steps */
    .process-steps {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    /* Features Grid */
    .features-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    /* Call to Action */
    .call-to-action {
        padding: 60px 0;
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    .cta-text {
        font-size: 1rem;
    }
    
    /* Footer */
    .footer {
        padding: 60px 0 0;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    /* Page Header */
    .page-header {
        padding: 100px 0 40px;
    }
    
    .page-title {
        font-size: 2.5rem;
    }
    
    /* About Page */
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
    
    /* Services Page */
    .service-detail-grid {
        gap: 40px;
    }
    
    .service-detail-card {
        padding: 30px;
    }
    
    .process-step-detailed {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .process-step-detailed:not(:last-child)::after {
        display: none;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    /* Portfolio Page */
    .portfolio-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .filter-buttons {
        gap: 10px;
    }
    
    .filter-btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    /* Testimonials */
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    /* Contact Page */
    .request-form {
        padding: 30px;
    }
    
    .form-section {
        padding: 20px;
    }
    
    /* Language Switcher */
    .language-switcher {
        top: 15px;
        right: 15px;
    }
}

/* ===== Extra Small Devices (Portrait Phones, 576px and up) ===== */
@media (max-width: 576px) {
    .container {
        padding: 0 15px;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    h3 {
        font-size: 1.125rem;
    }
    
    /* Header */
    .logo-title {
        font-size: 1.25rem;
    }
    
    .logo-subtitle {
        font-size: 0.75rem;
    }
    
    .logo-icon {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }
    
    /* Hero Section */
    .hero {
        min-height: 400px;
        margin-top: 70px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }
    
    .btn-primary, .btn-secondary {
        width: 100%;
        max-width: 300px;
    }
    
    /* Section Titles */
    .section-title {
        font-size: 1.75rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    /* Process Steps */
    .step-number {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }
    
    /* Stats */
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    /* Services Detail */
    .service-detail-title {
        font-size: 1.5rem;
    }
    
    .service-detail-icon {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }
    
    /* Process Detailed */
    .step-number-large {
        min-width: 60px;
        height: 60px;
        font-size: 24px;
    }
    
    /* Pricing */
    .price {
        font-size: 2.5rem;
    }
    
    /* Portfolio */
    .portfolio-media {
        height: 200px;
    }
    
    .portfolio-info {
        padding: 20px;
    }
    
    /* Testimonials */
    .testimonial-card {
        padding: 25px;
    }
    
    /* Contact Form */
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .contact-item {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .contact-icon {
        margin: 0 auto;
    }
    
    /* FAQ */
    .faq-question {
        padding: 20px;
    }
    
    .faq-question h3 {
        font-size: 1.125rem;
    }
    
    .faq-answer {
        padding: 0 20px;
    }
    
    /* Language Switcher */
    .language-switcher {
        top: 10px;
        right: 10px;
    }
    
    .lang-btn {
        padding: 6px 12px;
        font-size: 12px;
    }
}

/* ===== Very Small Devices (Phones, less than 400px) ===== */
@media (max-width: 400px) {
    /* Header */
    .logo {
        gap: 8px;
    }
    
    .logo-title {
        font-size: 1.125rem;
    }
    
    .logo-icon {
        width: 36px;
        height: 36px;
        font-size: 18px;
    }
    
    /* Hero Section */
    .hero-title {
        font-size: 1.75rem;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
    }
    
    /* Service Cards */
    .service-card {
        padding: 30px 20px;
    }
    
    /* Portfolio */
    .portfolio-grid {
        grid-template-columns: 1fr;
    }
    
    .portfolio-tags {
        flex-direction: column;
        align-items: flex-start;
    }
    
    /* Testimonials */
    .testimonial-text {
        font-size: 1rem;
    }
    
    /* Contact Form */
    .request-form {
        padding: 20px;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 12px 15px;
    }
}

/* ===== Print Styles ===== */
@media print {
    .header,
    .language-switcher,
    .hero-video-container,
    .call-to-action,
    .footer,
    .cta-button,
    .btn-primary,
    .btn-secondary {
        display: none !important;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.5;
        color: #000;
        background: #fff;
    }
    
    .container {
        max-width: 100%;
        padding: 0;
    }
    
    section {
        padding: 20pt 0;
        page-break-inside: avoid;
    }
    
    h1, h2, h3, h4, h5, h6 {
        page-break-after: avoid;
    }
    
    img, video {
        max-width: 100% !important;
        page-break-inside: avoid;
    }
    
    a {
        color: #000;
        text-decoration: underline;
    }
    
    .hero {
        height: auto;
        min-height: 0;
        margin-top: 0;
    }
    
    .hero-content {
        color: #000;
    }
    
    .hero-title {
        color: #000;
        font-size: 24pt;
    }
    
    .hero-subtitle {
        color: #000;
        font-size: 14pt;
    }
}

/* ===== High DPI Screens ===== */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    /* Higher resolution assets can be served here */
    .logo-icon,
    .service-icon,
    .feature-icon,
    .value-icon,
    .contact-icon {
        background: var(--gradient-primary);
    }
}

/* ===== Dark Mode Support (Future Enhancement) ===== */
@media (prefers-color-scheme: dark) {
    /* This can be expanded for full dark mode support */
    body {
        background-color: #121212;
        color: #e0e0e0;
    }
    
    .header {
        background: rgba(30, 30, 30, 0.95);
    }
    
    .logo-title,
    .nav-link {
        color: #e0e0e0;
    }
}