/* Index.html Hero Centering Fix - Specific for condong ke kanan issue */

@media (max-width: 992px) {
    /* Override any layout issues specific to index.html */
    body {
        overflow-x: hidden !important;
    }
    
    /* Reset app container to prevent layout issues */
    #app {
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 !important;
        padding: 0 !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
    }
    
    /* Force full width and center alignment */
    .full-width-hero {
        width: 100vw !important;
        margin-left: calc(-50vw + 50%) !important;
        margin-right: calc(-50vw + 50%) !important;
        position: relative !important;
    }
    
    /* CSS Grid for perfect centering */
    .hero {
        display: grid !important;
        place-items: center !important;
        width: 100% !important;
        min-height: 70vh !important;
    }
    
    /* Simple centering for hero container */
    .hero-container {
        width: 100% !important;
        max-width: 400px !important;
        margin: 0 auto !important;
        padding: 0 20px !important;
        display: grid !important;
        place-items: center !important;
        justify-content: center !important;
        align-items: center !important;
    }
    
    /* Force content to center */
    .hero-content {
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 auto !important;
        text-align: center !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
    }
    
    /* Center mascot image */
    .hero-image {
        width: 100% !important;
        max-width: 180px !important;
        margin: 0 auto !important;
        display: block !important;
        text-align: center !important;
    }
    
    .hero-image img,
    .hero-image .mascot {
        width: 100% !important;
        max-width: 180px !important;
        height: auto !important;
        margin: 0 auto !important;
        display: block !important;
    }
    
    /* Center text content */
    .hero-text {
        width: 100% !important;
        margin: 0 auto !important;
        text-align: center !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
    }
    
    /* Center buttons */
    .hero-buttons {
        width: 100% !important;
        margin: 0 auto !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        gap: 15px !important;
    }
    
    .hero-buttons .btn {
        width: 100% !important;
        max-width: 300px !important;
        margin: 0 auto !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        text-align: center !important;
    }
}
