/* Responsive Breakpoints */

/* Large tablets and small laptops */
@media (max-width: 992px) {
    :root {
        --section-padding: 80px 0;
    }

    .container {
        padding: 0 25px;
    }
}

/* Tablets */
@media (max-width: 768px) {
    :root {
        --section-padding: var(--section-padding-mobile);
    }

    .section-title {
        font-size: 1.8rem;
    }

    .section-subtitle {
        font-size: 1rem;
    }

    .btn {
        padding: 12px 24px;
        font-size: 0.9rem;
    }

    .btn-large {
        padding: 14px 32px;
    }
}

/* Small phones */
@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .section-label {
        font-size: 0.75rem;
        letter-spacing: 2px;
    }

    .section-title {
        font-size: 1.6rem;
    }

    .btn {
        padding: 12px 20px;
        font-size: 0.85rem;
    }

    .hero-cta {
        flex-direction: column;
        gap: 15px;
    }

    .hero-cta .btn {
        width: 100%;
    }
}

/* Extra large screens (TV, ultrawide) */
@media (min-width: 1600px) {
    :root {
        --container-max: 1400px;
    }

    .section-title {
        font-size: 3.5rem;
    }

    .hero-title {
        font-size: 6rem;
    }
}

@media (min-width: 2000px) {
    :root {
        --container-max: 1600px;
        --section-padding: 120px 0;
    }

    body {
        font-size: 1.1rem;
    }

    .section-title {
        font-size: 4rem;
    }
}

/* Print styles */
@media print {

    .navbar,
    .scroll-indicator,
    .footer-social,
    .btn {
        display: none;
    }

    body {
        background: white;
        color: black;
    }

    section {
        page-break-inside: avoid;
    }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .reveal,
    .reveal-left,
    .reveal-right,
    .reveal-scale {
        opacity: 1;
        transform: none;
    }
}

/* Dark mode preference (already dark, but explicit) */
@media (prefers-color-scheme: dark) {
    /* Already using dark theme */
}

/* High contrast mode */
@media (prefers-contrast: high) {
    :root {
        --text-secondary: rgba(255, 255, 255, 0.9);
        --text-muted: rgba(255, 255, 255, 0.7);
    }

    .glass-card {
        border-width: 2px;
    }
}