/* Responsive styles for Home */
/* Extracted from Home.css */

/* ============================================
   Responsive Design - 7 Breakpoint System
   ============================================ */

/* Breakpoint 6: Desktop (< 1536px) */
@media (max-width: 1535px) {
    .hero-container {
        max-width: 1280px;
    }
}

/* Breakpoint 5: Small Laptop (< 1280px) */
@media (max-width: 1279px) {
    .hero-container {
        max-width: 1024px;
        gap: var(--space-10);
    }

    .hero-visual {
        height: 450px;
    }

    .floating-card {
        max-width: 200px;
    }
}

/* Breakpoint 4: Tablet Landscape (< 1024px) - VISUAL HIDDEN */
@media (max-width: 1023px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: var(--space-8);
        text-align: center;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero-features {
        justify-content: center;
    }

    .hero-actions {
        align-items: center;
    }

    /* HIDE HERO VISUAL ON TABLET AND BELOW */
    .hero-visual {
        display: none;
    }
}

/* Breakpoint 3: Tablet Portrait (< 768px) */
@media (max-width: 767px) {
    .hero {
        min-height: auto;
        padding-top: 70px;
        padding-bottom: var(--space-8);
    }

    .hero-container {
        padding: var(--space-6) var(--space-4);
    }

    .hero-title {
        font-size: 2rem;
    }
}

/* Breakpoint 2: Large Mobile / Phablet (< 640px) */
@media (max-width: 639px) {
    .hero-badge {
        font-size: 11px;
        padding: var(--space-1) var(--space-3);
    }

    .hero-title {
        font-size: 1.875rem;
    }

    .hero-subtitle {
        font-size: var(--text-base);
    }

    .btn-microsoft {
        padding: var(--space-3) var(--space-5);
    }
}

/* Breakpoint 1: Mobile (< 480px) */
@media (max-width: 479px) {
    .hero {
        padding-top: 60px;
    }

    .hero-container {
        padding: var(--space-4) var(--space-3);
    }

    .hero-badge {
        font-size: 10px;
        gap: var(--space-1);
    }

    .hero-title {
        font-size: 1.75rem;
    }

    .hero-subtitle {
        font-size: var(--text-sm);
    }

    .hero-features {
        flex-direction: column;
        align-items: stretch;
        gap: var(--space-2);
    }

    .feature-pill {
        justify-content: center;
    }

    .btn-microsoft {
        width: 100%;
        padding: var(--space-3) var(--space-4);
        font-size: var(--text-sm);
    }

    .sign-in-hint {
        font-size: var(--text-xs);
        text-align: center;
    }
}

/* Breakpoint 0: Tiny Mobile (< 375px) */
@media (max-width: 374px) {
    .hero-badge {
        display: none;
    }

    .hero-title {
        font-size: 1.5rem;
        margin-bottom: var(--space-3);
    }

    .hero-subtitle {
        margin-bottom: var(--space-4);
    }

    .hero-features {
        margin-bottom: var(--space-6);
    }

    .feature-pill {
        font-size: var(--text-xs);
        padding: var(--space-1) var(--space-2);
    }

    .btn-microsoft {
        font-size: var(--text-xs);
    }
}
