/* assets/css/mobile.css - Mobile Optimizations */

@media (max-width: 768px) {

    /* Container */
    .container {
        padding: 0 15px;
    }

    /* Header */
    #main-header {
        padding: 12px 0;
        background: rgba(0, 0, 0, 0.95) !important;
    }

    .header-container {
        flex-direction: column;
        gap: 12px;
    }

    .logo {
        font-size: 1.5rem;
    }

    .desktop-nav {
        width: 100%;
        flex-wrap: wrap;
        justify-content: center;
        gap: 12px;
    }

    .desktop-nav a:not(.btn-nav) {
        font-size: 0.85rem;
        padding: 8px 15px;
        background: rgba(255, 255, 255, 0.05);
        border-radius: 4px;
    }

    /* Hero */
    .hero {
        min-height: 100vh;
        padding: 100px 0 60px;
        background-attachment: scroll;
    }

    .hero-content {
        padding: 0 15px;
    }

    .eyebrow {
        font-size: 0.85rem;
        letter-spacing: 2px;
    }

    .hero-content h1 {
        font-size: 2rem !important;
        line-height: 1.2;
        margin-bottom: 15px;
        word-wrap: break-word;
    }

    .hero-content p {
        font-size: 0.95rem !important;
        line-height: 1.5;
        margin-bottom: 30px;
    }

    .hero-actions {
        flex-direction: column;
        width: 100%;
        gap: 12px;
    }

    .btn-large {
        width: 100%;
        padding: 14px 20px;
        font-size: 0.9rem;
    }

    /* Sections */
    .section-story,
    .section-characters,
    .section-why {
        padding: 60px 0;
    }

    .section-header {
        margin-bottom: 40px;
    }

    .section-header h2 {
        font-size: 2rem !important;
    }

    .section-header p {
        font-size: 1rem;
    }

    /* Story Section */
    .story-grid {
        display: block !important;
        text-align: center;
    }

    .story-text h2 {
        font-size: 2rem !important;
        margin-bottom: 20px;
    }

    .story-text p {
        font-size: 1rem;
        margin-bottom: 20px;
    }

    .story-decoration {
        margin-top: 30px;
    }

    .ornamentbox {
        padding: 30px;
        margin: 0 auto;
        max-width: 200px;
    }

    .ornamentbox h3 {
        font-size: 3rem !important;
    }

    .ornamentbox span {
        font-size: 0.9rem;
    }

    /* Characters */
    .characters-grid {
        display: block !important;
    }

    .char-card {
        margin-bottom: 30px;
    }

    .char-card h3 {
        font-size: 1.3rem;
    }

    .char-card p {
        font-size: 0.9rem;
    }

    /* Features */
    .why-grid {
        display: block !important;
    }

    .feature-box {
        margin-bottom: 30px;
    }

    .feature-box h3 {
        font-size: 1.2rem;
    }

    /* CTA */
    .cta-banner {
        padding: 60px 0;
        background-attachment: scroll;
    }

    .cta-banner h2 {
        font-size: 2rem !important;
    }

    .cta-banner p {
        font-size: 1rem;
    }

    /* Footer */
    .footer-links {
        flex-direction: column;
        gap: 15px;
    }

    .footer-logo {
        font-size: 1.5rem;
    }
}