/* Responsive CSS for Corporate Pension Compliance Audits Template */

/* Mobile First Approach */

/* Extra Large devices (1200px and up) */
@media (min-width: 1200px) {
    h1 {
        font-size: 3rem;
    }
}

/* Large devices (992px and up) */
@media (min-width: 992px) {
    .hero-content {
        padding-right: 3rem;
    }
}

/* Medium devices (768px and up) */
@media (min-width: 768px) {
    .section {
        padding: 4rem 0;
    }
    
    .hero-section {
        padding: 0 1rem;
    }
    
    .contact-form {
        padding: 2.5rem;
    }
}

/* Small devices (576px and up) */
@media (min-width: 576px) {
    .hero-title {
        font-size: 2.25rem;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
}

/* Mobile devices (below 768px) */
@media (max-width: 767.98px) {
    /* Typography adjustments */
    h1, .hero-title {
        font-size: 2rem;
        line-height: 1.3;
    }
    
    h2, .section-title {
        font-size: 1.75rem;
    }
    
    h3 {
        font-size: 1.25rem;
    }
    
    /* Layout adjustments */
    .section {
        padding: 3rem 0;
    }
    
    .hero-section {
        padding: 1rem;
    }
    
    .hero-content {
        padding: 0;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 1.5rem;
    }
    
    /* Cards and forms */
    .custom-card .card-body {
        padding: 1.5rem;
    }
    
    .contact-form {
        padding: 2rem 1.5rem;
    }
}

/* Extra small devices (below 576px) */
@media (max-width: 575.98px) {
    h1, .hero-title {
        font-size: 1.75rem;
    }
    
    h2, .section-title {
        font-size: 1.5rem;
    }
    
    .section {
        padding: 2.5rem 0;
    }
}

/* Print styles */
@media print {
    .header,
    .footer,
    .btn,
    .swiper-pagination,
    .swiper-button-next,
    .swiper-button-prev {
        display: none !important;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.4;
        color: #000;
    }
    
    .section {
        padding: 1rem 0;
        break-inside: avoid;
    }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    :root {
        --primary-blue: #000080;
        --primary-gold: #b8860b;
        --primary-green: #006400;
        --text-primary: #000000;
        --text-secondary: #333333;
    }
}

/* Dark mode support */
@media (prefers-color-scheme: dark) {
    :root {
        --text-primary: #e2e8f0;
        --text-secondary: #a0aec0;
        --text-light: #718096;
        --light-gray: #2d3748;
        --text-white: #1a202c;
    }
} 