/* Responsive Design Rules */

/* Large Desktop: 1200px+ (default) */

/* Desktop: 1024px - 1199px */
@media (max-width: 1200px) {
    .section-title {
        font-size: 2.25rem;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .columns-container {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

/* Tablet: 768px - 1023px */
@media (max-width: 1024px) {
    .section {
        padding: 3rem 0;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-section {
        padding: 4rem 0;
    }
    
    .columns-container {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1.5rem;
    }
    
    .column {
        padding: 1.5rem;
    }
    
    .section-text {
        font-size: 1rem;
    }
}

/* Mobile: 640px - 767px */
@media (max-width: 768px) {
    .section {
        padding: 2.5rem 0;
    }
    
    .section-title {
        font-size: 1.75rem;
        margin-bottom: 1rem;
    }
    
    .section-subtitle {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }
    
    .section-text {
        text-align: left;
        padding: 0;
    }
    
    .hero-title {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }
    
    .hero-section {
        padding: 3rem 0;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
    }
    
    .hero-buttons .btn {
        min-width: 200px;
    }
    
    .columns-container {
        grid-template-columns: 1fr;
        gap: 1.25rem;
        margin-top: 2rem;
    }
    
    .column {
        padding: 1.25rem;
    }
    
    .column-title {
        font-size: 1.25rem;
    }
    
    .cta-container {
        margin-top: 2rem;
    }
    
    .btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.95rem;
    }
}

/* Small Mobile: 480px and below */
@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .section {
        padding: 2rem 0;
    }
    
    .section-title {
        font-size: 1.5rem;
        padding: 0 10px;
    }
    
    .section-subtitle {
        font-size: 1rem;
        padding: 0 10px;
    }
    
    .section-text {
        font-size: 0.9rem;
        padding: 0 10px;
    }
    
    .hero-title {
        font-size: 1.75rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-section {
        padding: 2.5rem 0;
    }
    
    .columns-container {
        margin-top: 1.5rem;
    }
    
    .column {
        padding: 1rem;
        border-radius: 8px;
    }
    
    .column-title {
        font-size: 1.1rem;
        margin-bottom: 0.75rem;
    }
    
    .column-text {
        font-size: 0.95rem;
        line-height: 1.6;
    }
    
    .cta-container {
        margin-top: 1.5rem;
    }
    
    .btn {
        padding: 0.625rem 1.25rem;
        font-size: 0.9rem;
        width: 100%;
        max-width: 280px;
    }
    
    .hero-buttons .btn {
        min-width: auto;
        width: 100%;
        max-width: 250px;
    }
}

/* Extra Small Mobile: 360px and below */
@media (max-width: 360px) {
    .container {
        padding: 0 10px;
    }
    
    .section-title {
        font-size: 1.35rem;
        line-height: 1.3;
    }
    
    .hero-title {
        font-size: 1.5rem;
        line-height: 1.2;
    }
    
    .section-text {
        font-size: 0.95rem;
    }
    
    .column {
        padding: 0.875rem;
    }
    
    .btn {
        padding: 0.625rem 1rem;
        font-size: 0.875rem;
    }
}

/* Landscape orientation adjustments for mobile */
@media (max-height: 600px) and (orientation: landscape) {
    .hero-section {
        padding: 2rem 0;
    }
    
    .hero-title {
        font-size: 1.75rem;
        margin-bottom: 0.75rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .section {
        padding: 1.5rem 0;
    }
}

/* High DPI displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .logo-img,
    .footer-logo-img {
        image-rendering: -webkit-optimize-contrast;
        image-rendering: crisp-edges;
    }
}

/* Print styles */
@media print {
    .header-secondary,
    .mobile-menu-toggle,
    .mobile-nav,
    .footer-social,
    .btn {
        display: none !important;
    }
    
    .main-header {
        position: static;
        box-shadow: none;
        border-bottom: 1px solid #000;
    }
    
    .footer {
        background: white !important;
        color: black !important;
    }
    
    .section {
        padding: 1rem 0;
    }
    
    .hero-section {
        background: white !important;
        padding: 1rem 0;
    }
}