/* Hero Buttons Mobile Optimization */

/* Mobile responsive button styling for hero section */
@media (max-width: 768px) {
    .hero-buttons {
        display: flex;
        flex-direction: row !important;
        flex-wrap: wrap;
        gap: 8px !important;
        justify-content: center;
        align-items: center;
        margin-top: 20px;
    }
    
    .hero-buttons .btn {
        flex: 1;
        min-width: auto;
        padding: 10px 8px !important;
        font-size: 0.8rem !important;
        border-radius: 6px;
        text-align: center;
        white-space: nowrap;
        max-width: calc(33.333% - 5px);
    }
    
    .hero-buttons .btn span {
        font-size: 0.75rem !important;
        font-weight: 500;
    }
}

/* Extra small screens (phones in portrait) */
@media (max-width: 480px) {
    .hero-buttons {
        gap: 6px !important;
    }
    
    .hero-buttons .btn {
        padding: 8px 6px !important;
        font-size: 0.7rem !important;
        border-radius: 5px;
    }
    
    .hero-buttons .btn span {
        font-size: 0.7rem !important;
    }
}

/* Very small screens */
@media (max-width: 360px) {
    .hero-buttons .btn {
        padding: 8px 4px !important;
        font-size: 0.65rem !important;
    }
    
    .hero-buttons .btn span {
        font-size: 0.65rem !important;
    }
}
