/* Official App Store Badges Styling */
.app-store-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin-top: 25px;
}

.store-badge-container {
    position: relative;
    width: 160px;
    height: 50px;
    display: inline-block;
}

.google-play-badge {
    background-image: url('../images/store-buttons.avif');
    background-position: 0px 0px;
    background-size: 320px 100px;
    width: 160px; 
    height: 50px;
    display: block;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.app-store-badge {
    background-image: url('../images/store-buttons.avif');
    background-position: -160px 0px;
    background-size: 320px 100px;
    width: 160px;
    height: 50px;
    display: block;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.badge-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 8px;
}

.badge-overlay span {
    color: white;
    font-weight: bold;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.store-badge-container:hover .google-play-badge,
.store-badge-container:hover .app-store-badge {
    transform: translateY(-3px);
}

@media (max-width: 576px) {
    .app-store-badges {
        gap: 10px;
    }
    
    .store-badge-container {
        width: 140px;
        height: 44px;
    }
    
    .google-play-badge, .app-store-badge {
        background-size: 280px 88px;
        width: 140px;
        height: 44px;
    }
    
    .app-store-badge {
        background-position: -140px 0px;
    }
    
    .badge-overlay span {
        font-size: 12px;
    }
}
