/* assets/css/responsive.css */

/* Tablet Styles (768px - 1024px) */
@media screen and (max-width: 1024px) {
    .container {
        padding: 0 2rem;
    }

    h1 {
        font-size: 3rem;
    }

    h2 {
        font-size: 2.2rem;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--spacing-lg);
    }

    .grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-content h1 {
        font-size: 3rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
}

/* Mobile Styles (max-width: 768px) */
@media screen and (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }

    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

    h3 {
        font-size: 1.5rem;
    }

    /* Hide desktop nav, show mobile toggle */
    .nav-list {
        display: none;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .dropdown-menu {
        display: none;
        /* Hide desktop dropdown on mobile */
    }

    .header-cta {
        display: none;
    }

    .main-header .container {
        padding: 0.75rem 1rem;
    }

    .logo-text h1 {
        font-size: 1.5rem;
    }

    .logo-icon {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }

    /* Top bar adjustments */
    .top-bar .container {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }

    .top-bar {
        display: none;
    }

    .contact-info span {
        display: block;
        margin-right: 0;
        margin-bottom: 0.25rem;
    }

    /* Hero section */
    .hero-section {
        min-height: 600px;
        background-attachment: scroll;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-tagline {
        font-size: 1.2rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-buttons .btn {
        width: 100%;
        margin-bottom: 1rem;
    }

    /* Grid adjustments */
    .grid-3,
    .grid-4 {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }

    /* CTA section */
    .cta-content h2 {
        font-size: 2rem;
    }

    .cta-content p {
        font-size: 1.1rem;
    }

    .cta-features {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    /* Footer */
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .footer-bottom-links {
        flex-direction: column;
        gap: 0.5rem;
    }

    /* Section padding */
    .section {
        padding: var(--spacing-lg) 0;
    }

    .cta-section {
        padding: var(--spacing-lg) 0;
    }
}

/* Small Mobile (max-width: 480px) */
@media screen and (max-width: 480px) {
    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.75rem;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-tagline {
        font-size: 1.1rem;
    }

    .btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.95rem;
    }

    .btn-large {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }

    .mobile-nav {
        width: 100%;
    }

    .cta-content h2 {
        font-size: 1.75rem;
    }

    .section-title h2 {
        font-size: 1.75rem;
    }
}

/* Large Desktop (min-width: 1440px) */
@media screen and (min-width: 1440px) {
    .container {
        max-width: 1400px;
    }

    h1 {
        font-size: 4rem;
    }

    h2 {
        font-size: 3rem;
    }

    .hero-content h1 {
        font-size: 5rem;
    }
}

/* Print Styles */
@media print {

    .main-header,
    .top-bar,
    .footer,
    .back-to-top,
    .cta-section,
    .btn {
        display: none !important;
    }

    body {
        background: white !important;
        color: black !important;
        font-size: 12pt !important;
    }

    .container {
        max-width: 100% !important;
        padding: 0 !important;
    }

    a {
        color: black !important;
        text-decoration: underline !important;
    }
}