/* ========================================
   GENITUS INC. - MOBILE-FIRST STYLES
   ======================================== */

/* Mobile Menu Enhancements */
@media (max-width: 767px) {
    /* Burger Menu Icon */
    #menuBtn {
        font-size: 24px;
        padding: 0.5rem 1rem;
        min-height: 44px;
        min-width: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    /* Mobile Menu Container */
    #mobileMenu {
        box-shadow: 0 4px 12px rgba(15, 43, 69, 0.15);
        max-height: 0;
        opacity: 0;
        overflow: hidden;
        transition: all 0.3s ease-in-out;
    }

    #mobileMenu.open {
        max-height: 100vh;
        opacity: 1;
        transform: translateY(0);
    }

    /* Mobile Menu Links - Touch-Friendly */
    #mobileMenu a {
        min-height: 48px;
        display: flex;
        align-items: center;
        font-size: 16px;
        padding: 12px 0;
    }

    /* CTA Buttons Mobile Optimization */
    .btn {
        font-size: 15px;
        padding: 12px 16px;
        min-height: 48px;
        text-align: center;
        white-space: normal;
        line-height: 1.4;
    }

    .btn-primary,
    .btn-ghost {
        width: 100%;
        justify-content: center;
    }

    /* Hero Section Mobile - TIGHT & OPTIMIZED */
    section:first-of-type {
        padding-top: 24px !important;
        padding-bottom: 24px !important;
    }

    .hero-title {
        font-size: 28px !important;
        line-height: 1.15 !important;
        margin-top: 8px !important;
    }

    .eyebrow {
        font-size: 11px !important;
        margin-bottom: 0 !important;
    }

    /* Hero Content Reorder - Bild OBEN */
    .container.grid.md\\:grid-cols-2 {
        display: flex;
        flex-direction: column-reverse;
        gap: 16px;
    }

    /* Hero Image - Kompakter (German + English) */
    .img-zoom-container.shadow-card,
    .img-zoom-container.shadow-glow {
        height: 200px !important;
        margin-bottom: 12px;
    }

    /* Hero Text - Verstecken auf Mobile für Conversion-Focus (German + English) */
    section:first-of-type p.text-slate,
    section:first-of-type p.text-ink {
        display: none;
    }

    /* CTA Buttons - Näher an Bild */
    section:first-of-type .mt-6 {
        margin-top: 12px !important;
    }

    /* Card Padding für andere Sections */
    .card {
        padding: 12px 8px;
    }

    /* Images Mobile Optimization */
    .img-zoom-container {
        border-radius: 12px;
    }

    /* Testimonial Cards Mobile */
    .testimonial-card img {
        width: 48px;
        height: 48px;
    }

    /* Pricing Cards Mobile */
    .pricing-card {
        margin-bottom: 16px;
    }

    /* Container Mobile Padding */
    .container {
        padding-left: 16px;
        padding-right: 16px;
    }

    /* Section Spacing Mobile */
    section {
        padding-top: 48px;
        padding-bottom: 48px;
    }

    /* Typography Mobile */
    h2 {
        font-size: 28px;
        line-height: 1.3;
    }

    h3 {
        font-size: 20px;
        line-height: 1.4;
    }

    p {
        font-size: 15px;
        line-height: 1.6;
    }

    /* Touch-Friendly Spacing */
    .gap-3 {
        gap: 12px;
    }

    .gap-4 {
        gap: 16px;
    }

    /* Accordion Mobile */
    details summary {
        font-size: 16px;
        padding: 16px;
    }

    /* Footer Mobile */
    footer {
        padding: 32px 0;
    }

    footer .grid {
        gap: 24px;
    }
}

/* Small Mobile (< 360px) */
@media (max-width: 359px) {
    .btn {
        font-size: 14px;
        padding: 10px 12px;
    }

    .hero-title {
        font-size: 28px !important;
    }

    h2 {
        font-size: 24px;
    }
}

/* Landscape Mobile */
@media (max-width: 767px) and (orientation: landscape) {
    section {
        padding-top: 32px;
        padding-bottom: 32px;
    }

    #mobileMenu {
        max-height: 80vh;
        overflow-y: auto;
    }
}
